diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2011-05-17 14:29:26 -0700 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-05-03 21:00:27 +0200 |
commit | 2b66816c71a68b579a0138ef6418cb8a99a4e62d (patch) | |
tree | 8c50eec93fde20a04909e87f50c14a86ee5b3d5b /target | |
parent | 15744b7e15523506f52d36cac556626df9eaa204 (diff) |
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 <cernekee@gmail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in.arch | 2 |
1 files changed, 1 insertions, 1 deletions
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 |