diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-09 15:40:08 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-09 15:40:08 +0100 |
commit | 4d4fbdcc6118a484c525ec2d066032bd87c34f8a (patch) | |
tree | cbef04f4ce1b1a15ffaf0aab0735844ec651b429 /config/target.in | |
parent | 652d8eebd9e3b333954d67f8036df032c902493d (diff) | |
download | crosstool-ng-4d4fbdcc6118a484c525ec2d066032bd87c34f8a.tar.gz crosstool-ng-4d4fbdcc6118a484c525ec2d066032bd87c34f8a.tar.bz2 crosstool-ng-4d4fbdcc6118a484c525ec2d066032bd87c34f8a.zip |
config/arch: also export bitness as a string
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in index 64ce2d28..3db2609e 100644 --- a/config/target.in +++ b/config/target.in @@ -31,6 +31,7 @@ config ARCH_BE config ARCH_LE config ARCH_32 config ARCH_64 +config ARCH_BITNESS config ARCH_FLOAT_HW config ARCH_FLOAT_SW config TARGET_CFLAGS @@ -112,6 +113,11 @@ config ARCH_DEFAULT_64 bool default n +config ARCH_BITNESS + int + default "32" if ARCH_32 + default "64" if ARCH_64 + choice bool prompt "Bitness:" |