diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-10-03 20:35:01 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-04 08:58:08 +0200 |
commit | ebc8193363b5200cf6139515779dff2c552ada70 (patch) | |
tree | fd8617c44a4c293e403694a2335be0d5c800f8c6 /package/glibc | |
parent | 47c463fe50aa48985bf2b2438637e373ddc4622d (diff) | |
download | buildroot-ebc8193363b5200cf6139515779dff2c552ada70.tar.gz buildroot-ebc8193363b5200cf6139515779dff2c552ada70.zip |
Revert "toolchain-internal: skip gcc-intermediate when possible"
While the idea of skipping the intermediate gcc step seems to work
fine in most situations, it causes problems with the SSP
support. Until we can figure out a proper solution for this problem,
we need to revert back to the previous solution of a three stages
build.
This reverts commit 2babed4a50fcd050abc4686e05e24d0e374d10a8.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/glibc')
-rw-r--r-- | package/glibc/glibc.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk index 68c4636c86..998bd0f3b8 100644 --- a/package/glibc/glibc.mk +++ b/package/glibc/glibc.mk @@ -28,9 +28,8 @@ ifeq ($(BR2_TOOLCHAIN_BUILDROOT_EGLIBC),y) GLIBC_DEPENDENCIES += host-gawk endif -# Before (e)glibc is built, we must have the second stage -# cross-compiler, for some gcc versions -glibc-build: $(if $(BR2_TOOLCHAIN_NEEDS_THREE_STAGE_BUILD),host-gcc-intermediate) +# Before (e)glibc is built, we must have the second stage cross-compiler +eglibc-build: host-gcc-intermediate GLIBC_SUBDIR = build |