From: jacmet at uclibc.org <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/target
Date: Mon, 12 May 2008 05:43:57 -0700 (PDT) [thread overview]
Message-ID: <20080512124357.F1E4A3C5FA@busybox.net> (raw)
Author: jacmet
Date: 2008-05-12 05:43:57 -0700 (Mon, 12 May 2008)
New Revision: 21972
Log:
toolchain: fix mips abi selection
Based on commit 0e2ab in aldot's tree.
Modified:
trunk/buildroot/target/Config.in.arch
Changeset:
Modified: trunk/buildroot/target/Config.in.arch
===================================================================
--- trunk/buildroot/target/Config.in.arch 2008-05-11 06:55:04 UTC (rev 21971)
+++ trunk/buildroot/target/Config.in.arch 2008-05-12 12:43:57 UTC (rev 21972)
@@ -148,6 +148,8 @@
bool "mips 32r2"
config BR2_mips_64
bool "mips 64"
+config BR2_mips_64r2
+ bool "mips 64r2"
config BR2_mips_16
bool "mips 16"
endchoice
@@ -156,16 +158,30 @@
choice
prompt "Target ABI"
depends BR2_mips || BR2_mipsel
- default BR2_MIPS_EABI
+ default BR2_MIPS_OABI32 if BR_mips_32 || BR_mips_32r2
+ default BR2_MIPS_ABI32 if BR_mips_64 || BR_mips_64r2
help
Application Binary Interface to use
-config BR2_MIPS_OABI
- bool "OABI"
+config BR2_MIPS_OABI32
+ bool "o32"
+config BR2_MIPS_ABI32
+ bool "n32"
+ depends BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
config BR2_MIPS_EABI
- bool "EABI"
+ bool "eabi"
+ depends BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
config BR2_MIPS_ABI64
- bool "N64"
+ bool "n64"
+ depends BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
+config BR2_MIPS_OABI64
+ bool "o64"
+ depends BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
+config BR2_MIPS_ABI_none
+ bool "unspecified"
+ depends BR2_mips_16
+ help
+ Unspecified ABI leaves ABI selection blank.
endchoice
choice
@@ -594,6 +610,7 @@
default mips32 if BR2_mips_32
default mips32r2 if BR2_mips_32r2
default mips64 if BR2_mips_64
+ default mips64r2 if BR2_mips_64r2
default mips16 if BR2_mips_16
default 401 if BR2_powerpc_401
default 403 if BR2_powerpc_403
@@ -694,11 +711,11 @@
default aapcs if BR2_arm_dunno
default aapcs-linux if BR2_arm_dunno
default iwmmxt if BR2_iwmmxt
- default 32 if BR2_mipsel && BR2_MIPS_OABI
- default n32 if BR2_mipsel && BR2_MIPS_EABI
- default o64 if BR2_mips && BR2_MIPS_OABI
- default eabi if BR2_mips && BR2_MIPS_EABI
- default 64 if BR2_mips && BR2_MIPS_ABI64
+ default 32 if BR2_MIPS_OABI32
+ 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 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
next reply other threads:[~2008-05-12 12:43 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-12 12:43 jacmet at uclibc.org [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-01-30 11:35 [Buildroot] svn commit: trunk/buildroot/target jacmet at uclibc.org
2009-01-13 15:14 jacmet at uclibc.org
2009-01-12 20:58 jacmet at uclibc.org
2009-01-01 17:48 nkukard at uclibc.org
2008-12-17 9:28 ulf at uclibc.org
2008-11-04 19:58 jacmet at uclibc.org
2008-04-04 7:24 jacmet at uclibc.org
2008-03-11 19:28 ninevoltz at uclibc.org
2008-03-11 8:49 jacmet at uclibc.org
2008-03-06 19:00 ninevoltz at uclibc.org
2007-10-05 11:03 aldot at uclibc.org
2007-09-30 12:42 aldot at uclibc.org
2007-09-29 19:47 aldot at uclibc.org
2007-09-23 22:08 ulf at uclibc.org
2007-07-20 12:03 ulf at uclibc.org
2007-07-08 19:23 aldot at uclibc.org
2007-06-26 16:36 aldot at uclibc.org
2007-06-06 19:59 aldot at uclibc.org
2007-04-17 17:30 aldot at uclibc.org
2007-03-22 18:14 aldot at uclibc.org
2007-03-19 10:49 aldot at uclibc.org
2007-02-04 16:30 aldot at uclibc.org
2007-01-30 17:38 aldot at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080512124357.F1E4A3C5FA@busybox.net \
--to=jacmet@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox