svn commit: trunk/uClibc/extra/Configs

vapier at uclibc.org vapier at uclibc.org
Sun Dec 3 20:10:28 UTC 2006


Author: vapier
Date: 2006-12-03 12:10:28 -0800 (Sun, 03 Dec 2006)
New Revision: 16775

Log:
list ABI first and tweak ISA defaults with suggestions from Jim Gifford

Modified:
   trunk/uClibc/extra/Configs/Config.mips


Changeset:
Modified: trunk/uClibc/extra/Configs/Config.mips
===================================================================
--- trunk/uClibc/extra/Configs/Config.mips	2006-12-03 19:52:48 UTC (rev 16774)
+++ trunk/uClibc/extra/Configs/Config.mips	2006-12-03 20:10:28 UTC (rev 16775)
@@ -19,8 +19,28 @@
 	string
 
 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_N32_ABI
+	bool "N32 ABI"
+
+config CONFIG_MIPS_N64_ABI
+	bool "N64 ABI"
+
+endchoice
+
+choice
 	prompt "Target Processor Architecture"
-	default CONFIG_MIPS_ISA_1
+	default CONFIG_MIPS_ISA_1 if CONFIG_MIPS_O32_ABI
+	default CONFIG_MIPS_ISA_3 if CONFIG_MIPS_N32_ABI
+	default CONFIG_MIPS_ISA_3 if CONFIG_MIPS_N64_ABI
 	help
 	  This selects the instruction set architecture of your MIPS CPU. This
 	  information is used for optimizing purposes. To build a library that
@@ -54,21 +74,3 @@
 	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




More information about the uClibc-cvs mailing list