toolchain: use different defaults for octeon
authorJohn Crispin <john@openwrt.org>
Wed, 18 Jun 2014 10:07:53 +0000 (10:07 +0000)
committerJohn Crispin <john@openwrt.org>
Wed, 18 Jun 2014 10:07:53 +0000 (10:07 +0000)
force eglibc and gcc4.6+linaro for octeon

Signed-off-by: Martin Fäcknitz <faecknitz@hotsplots.de>
SVN-Revision: 41251

toolchain/Config.in
toolchain/gcc/Config.in
toolchain/gcc/Config.version

index 7c0e3ce086ea6e30c0956472a8a7b9a95a71bf6f..7deda1e2c30914992f87e74c5e79604b8013c03d 100644 (file)
@@ -203,6 +203,7 @@ comment "C Library"
 
 choice
        prompt "C Library implementation" if TOOLCHAINOPTS
+       default LIBC_USE_EGLIBC if mips64
        default LIBC_USE_UCLIBC
        help
          Select the C library implementation.
@@ -249,10 +250,11 @@ config INSIGHT
 
 config USE_EGLIBC
        bool
+       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && mips64
 
 config USE_UCLIBC
        bool
-       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
+       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && !mips64
 
 config USE_MUSL
        bool
index e279bf2cf445cf79d16def5752e68d65aa532462..0c07796c532f318050c8c3cfe1e16d0e5a1168ae 100644 (file)
@@ -3,6 +3,7 @@
 choice
        prompt "GCC compiler Version" if TOOLCHAINOPTS
        default GCC_USE_VERSION_4_4_7 if avr32
+       default GCC_USE_VERSION_4_6_LINARO if mips64
        default GCC_USE_VERSION_4_8_LINARO
        help
          Select the version of gcc you wish to use.
index e9aafcd7f3a0bcee9516b1d5c4bc5023870752bd..05b4f1a7a13f6c0a601d7b4aea3c38ffd7c42412 100644 (file)
@@ -3,10 +3,11 @@ config GCC_VERSION_4_4_7
        bool
 
 config GCC_VERSION_4_6_LINARO
+       default y if (!TOOLCHAINOPTS && mips64)
        bool
 
 config GCC_VERSION_4_8_LINARO
-       default y if (!TOOLCHAINOPTS && !avr32)
+       default y if (!TOOLCHAINOPTS && !avr32 && !mips64)
        bool
 
 config GCC_VERSION_4_8_0