From 2b66816c71a68b579a0138ef6418cb8a99a4e62d Mon Sep 17 00:00:00 2001 From: Kevin Cernekee Date: Tue, 17 May 2011 14:29:26 -0700 Subject: buildroot: fix BR2_GCC_TARGET_ABI for MIPS n64 gcc 4.3/4.4/4.5 accept the following arguments for --with-abi= "" | 32 | o64 | n32 | 64 | eabi) So, the "n64" argument coming from buildroot should be changed to "64" so that gcc's ./configure step does not error out. Signed-off-by: Kevin Cernekee Acked-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- target/Config.in.arch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target') diff --git a/target/Config.in.arch b/target/Config.in.arch index e7a18f71e..941cd1bed 100644 --- a/target/Config.in.arch +++ b/target/Config.in.arch @@ -831,7 +831,7 @@ config BR2_GCC_TARGET_ABI default n32 if BR2_MIPS_ABI32 default eabi if BR2_MIPS_EABI default o64 if BR2_MIPS_OABI64 - default n64 if BR2_MIPS_ABI64 + default 64 if BR2_MIPS_ABI64 default mmixware if BR2_mmix && BR2_MMIX_ABI_native default gnu if BR2_mmix && !BR2_MMIX_ABI_native default altivec if BR2_powerpc && BR2_PPC_ABI_altivec -- cgit v1.2.3-55-g7522