From: Masahiro Yamada Date: Thu, 23 Oct 2014 16:30:46 +0000 (+0900) Subject: mips: enable CONFIG_USE_PRIVATE_LIBGCC by default X-Git-Tag: v2015.01-rc1~179 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7bfd5ee1170eca10d26858b6b2ed36317cc686fd;p=oweals%2Fu-boot.git mips: enable CONFIG_USE_PRIVATE_LIBGCC by default Without the private libgcc, we need a full multilib toolchain with different libgcc or multiple toolchains to build all BE/LE and hard-float/soft-float variants of MIPS boards. That is not feasible. This commit allows us to build all the MIPS boards with a single kernel.org toolchain: https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/4.9.0/ x86_64-gcc-4.9.0-nolibc_mips-linux.tar.xz This change sounds reasonable for most users. If necessary, you can disable this option via "make menuconfig" or friends. Signed-off-by: Masahiro Yamada Acked-by: Daniel Schwierzeck --- diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 7686b779bf..9b72bab56b 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -4,6 +4,9 @@ menu "MIPS architecture" config SYS_ARCH default "mips" +config USE_PRIVATE_LIBGCC + default y + choice prompt "Target select"