diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-09-16 10:00:56 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-09-16 10:00:56 +0200 |
commit | 554b79bfb7f056636b65bca27c01d0ef669977f3 (patch) | |
tree | 35a3c3efb1537bd8ee5d153f9e289c1b8ec76790 /extra/Configs | |
parent | 854c3194a23d43c8e45ad97e3b218bf85dfadc6b (diff) |
handle make ARCH= config
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/Configs')
-rw-r--r-- | extra/Configs/Config.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index a3f191059..0108cb0eb 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -5,8 +5,37 @@ mainmenu "uClibc C Library Configuration" +config DESIRED_TARGET_ARCH + string + option env="ARCH" + choice prompt "Target Architecture" + default TARGET_alpha if DESIRED_TARGET_ARCH = "alpha" + default TARGET_arm if DESIRED_TARGET_ARCH = "arm" + default TARGET_avr32 if DESIRED_TARGET_ARCH = "avr32" + default TARGET_bfin if DESIRED_TARGET_ARCH = "bfin" + default TARGET_cris if DESIRED_TARGET_ARCH = "cris" + default TARGET_e1 if DESIRED_TARGET_ARCH = "e1" + default TARGET_frv if DESIRED_TARGET_ARCH = "frv" + default TARGET_h8300 if DESIRED_TARGET_ARCH = "h8300" + default TARGET_hppa if DESIRED_TARGET_ARCH = "hppa" + default TARGET_i386 if DESIRED_TARGET_ARCH = "i386" + default TARGET_i960 if DESIRED_TARGET_ARCH = "i960" + default TARGET_ia64 if DESIRED_TARGET_ARCH = "ia64" + default TARGET_m68k if DESIRED_TARGET_ARCH = "m68k" + default TARGET_microblaze if DESIRED_TARGET_ARCH = "microblaze" + default TARGET_mips if DESIRED_TARGET_ARCH = "mips" + default TARGET_nios if DESIRED_TARGET_ARCH = "nios" + default TARGET_nios2 if DESIRED_TARGET_ARCH = "nios2" + default TARGET_powerpc if DESIRED_TARGET_ARCH = "powerpc" + default TARGET_sh if DESIRED_TARGET_ARCH = "sh" + default TARGET_sh64 if DESIRED_TARGET_ARCH = "sh64" + default TARGET_sparc if DESIRED_TARGET_ARCH = "sparc" + default TARGET_v850 if DESIRED_TARGET_ARCH = "v850" + default TARGET_vax if DESIRED_TARGET_ARCH = "vax" + default TARGET_x86_64 if DESIRED_TARGET_ARCH = "x86_64" + default TARGET_xtensa if DESIRED_TARGET_ARCH = "xtensa" help The architecture of your target. |