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 /toolchain | |
parent | 47c463fe50aa48985bf2b2438637e373ddc4622d (diff) |
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 'toolchain')
-rw-r--r-- | toolchain/Config.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 17be32a52..6fd446ec4 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -1,13 +1,5 @@ menu "Toolchain" -config BR2_TOOLCHAIN_NEEDS_THREE_STAGE_BUILD - bool - default y if BR2_TOOLCHAIN_LIBC_NEEDS_THREE_STAGE_BUILD && \ - BR2_GCC_VERSION_NEEDS_THREE_STAGE_BUILD - -config BR2_TOOLCHAIN_LIBC_NEEDS_THREE_STAGE_BUILD - bool - # Should be selected for glibc or eglibc config BR2_TOOLCHAIN_USES_GLIBC bool @@ -19,7 +11,6 @@ config BR2_TOOLCHAIN_USES_GLIBC select BR2_TOOLCHAIN_HAS_THREADS_DEBUG select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS select BR2_TOOLCHAIN_HAS_SSP - select BR2_TOOLCHAIN_LIBC_NEEDS_THREE_STAGE_BUILD config BR2_TOOLCHAIN_USES_UCLIBC bool |