diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-11-17 22:29:50 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-11-17 22:29:50 +0100 |
commit | d5eb1f0dcf96e4f0a3bd8eb203de513200d99514 (patch) | |
tree | 1ee8ffb59fd655b61e4ca6a86880be0aa2a87fea /config/target.in | |
parent | d219235f73ad0ec70f37d4699960a091bc4953ca (diff) | |
download | crosstool-ng-d5eb1f0dcf96e4f0a3bd8eb203de513200d99514.tar.gz crosstool-ng-d5eb1f0dcf96e4f0a3bd8eb203de513200d99514.tar.bz2 crosstool-ng-d5eb1f0dcf96e4f0a3bd8eb203de513200d99514.zip |
arch: cleanup the 32- and 64-bit selection
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/config/target.in b/config/target.in index e45bda20..64ce2d28 100644 --- a/config/target.in +++ b/config/target.in @@ -5,13 +5,6 @@ menu "Target options" config ARCH string -# Note: when all archs have migrated to the 32/64 bit selection, -# remove this option, and rename the config options in the bitness -# choice, below. -config ARCH_64 - bool - default n - # Pre-declare target optimisation variables config ARCH_SUPPORTS_BOTH_MMU config ARCH_SUPPORTS_BOTH_ENDIAN @@ -36,8 +29,8 @@ config ARCH_TUNE config ARCH_FPU config ARCH_BE config ARCH_LE -config ARCH_32b -config ARCH_64b +config ARCH_32 +config ARCH_64 config ARCH_FLOAT_HW config ARCH_FLOAT_SW config TARGET_CFLAGS @@ -122,19 +115,18 @@ config ARCH_DEFAULT_64 choice bool prompt "Bitness:" - default ARCH_32b if ARCH_DEFAULT_32 - default ARCH_64b if ARCH_DEFAULT_64 + default ARCH_32 if ARCH_DEFAULT_32 + default ARCH_64 if ARCH_DEFAULT_64 -config ARCH_32b +config ARCH_32 bool prompt "32-bit" depends on ARCH_SUPPORTS_32 -config ARCH_64b +config ARCH_64 bool prompt "64-bit" depends on ARCH_SUPPORTS_64 - select ARCH_64 endchoice |