summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2006-11-04 20:17:03 +0000
committerEric Andersen <andersen@codepoet.org>2006-11-04 20:17:03 +0000
commit1da8fd9223c5a06236d4053582184790424592c2 (patch)
tree550f0417201e205319a36e96bfae37e3442007a9 /extra
parentbcd949c7f80ccf66c8ef869367a9b33dbb51a261 (diff)
mips64 patch from Atsushi Nemoto:
Add selection of 3 ABI. CPU_CFLAGS is needed to generate correct sysnum.h. Fix test/Rules.mak.
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.mips18
1 files changed, 18 insertions, 0 deletions
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips
index 43e0bbb46..0794c5f45 100644
--- a/extra/Configs/Config.mips
+++ b/extra/Configs/Config.mips
@@ -54,3 +54,21 @@ config CONFIG_MIPS_ISA_MIPS64
bool "MIPS64"
endchoice
+
+choice
+ prompt "Target ABI"
+ default CONFIG_MIPS_O32_ABI
+ help
+ This is the ABI you wish to build use. Choose either O32, N32
+ or N64.
+
+config CONFIG_MIPS_O32_ABI
+ bool "O32 ABI"
+
+config CONFIG_MIPS_N64_ABI
+ bool "N64 ABI"
+
+config CONFIG_MIPS_N32_ABI
+ bool "N32 ABI"
+
+endchoice