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/gcc/gcc-initial/gcc-initial.mk | |
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/gcc/gcc-initial/gcc-initial.mk')
-rw-r--r-- | package/gcc/gcc-initial/gcc-initial.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/package/gcc/gcc-initial/gcc-initial.mk b/package/gcc/gcc-initial/gcc-initial.mk index 83767ea509..0eb492fa4d 100644 --- a/package/gcc/gcc-initial/gcc-initial.mk +++ b/package/gcc/gcc-initial/gcc-initial.mk @@ -29,7 +29,6 @@ HOST_GCC_INITIAL_CONF_OPT = \ --enable-languages=c \ --disable-shared \ --without-headers \ - --disable-threads \ --with-newlib \ --disable-largefile \ --disable-nls \ @@ -41,11 +40,4 @@ HOST_GCC_INITIAL_CONF_ENV = \ HOST_GCC_INITIAL_MAKE_OPT = all-gcc HOST_GCC_INITIAL_INSTALL_OPT = install-gcc -ifeq ($(BR2_TOOLCHAIN_NEEDS_THREE_STAGE_BUILD),) -ifeq ($(BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE),y) -HOST_GCC_INITIAL_MAKE_OPT += all-target-libgcc -HOST_GCC_INITIAL_INSTALL_OPT += install-target-libgcc -endif -endif - $(eval $(host-autotools-package)) |