diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-08-24 14:45:46 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-08-24 14:45:46 +0200 |
commit | 60620a1d8195774a65b053268d07ab603caab192 (patch) | |
tree | c8eb8be2c740611cdd0fa3fd7b84881eeacef0e8 | |
parent | 83f1bf9e4553ab4ac01f17566b3f74df8058987d (diff) |
binutils: only use 2.21.1 for uClibc 0.9.32 / snapshot
Earlier versions don't build with it.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/binutils/Config.in.host | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 7de59f006..f87298a75 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -3,7 +3,8 @@ 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_21_1 + 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. @@ -39,7 +40,7 @@ choice bool "binutils 2.21" config BR2_BINUTILS_VERSION_2_21_1 - depends on !BR2_avr32 + depends on !(BR2_avr32 || BR2_UCLIBC_VERSION_0_9_30 || BR2_UCLIBC_VERSION_0_9_31) bool "binutils 2.21.1" endchoice |