diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-12-08 23:32:23 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-12-08 23:35:37 +0100 |
commit | 7d7873df78c3f6745a188baf5d41abab7cfe3f23 (patch) | |
tree | 62629ba844f835d2c1801cb857120860dee878b7 | |
parent | 11eb9e7fbec3f458fa2146558d9ad162615d63be (diff) | |
download | buildroot-novena-7d7873df78c3f6745a188baf5d41abab7cfe3f23.tar.gz buildroot-novena-7d7873df78c3f6745a188baf5d41abab7cfe3f23.zip |
binutils: don't default to 2.22
Lots of packages are failing with binutils 2.22 with undefined symbols,
as it defaults to --no-copy-dt-needed-entries. Long term, the packages
should get fixed, but let's keep it at 2.21.1 for now.
For more details, see:
- http://wiki.debian.org/ToolChain/DSOLinking
- https://wiki.ubuntu.com/NattyNarwhal/ToolchainTransition
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/binutils/Config.in.host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index f8295499c..aec51b3ce 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -3,7 +3,7 @@ comment "Binutils Options" choice prompt "Binutils Version" default BR2_BINUTILS_VERSION_2_21 if (BR2_mips || BR2_mipsel || BR2_sh) - default BR2_BINUTILS_VERSION_2_22 if (BR2_UCLIBC_VERSION_0_9_32 || BR2_UCLIBC_VERSION_SNAPSHOT) + default BR2_BINUTILS_VERSION_2_21_1 if (BR2_UCLIBC_VERSION_0_9_32 || BR2_UCLIBC_VERSION_SNAPSHOT) default BR2_BINUTILS_VERSION_2_21 help Select the version of binutils you wish to use. |