config/arch: also export bitness as a string
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 09 15:40:08 2010 +0100 (2010-01-09)
changeset 171518eb650d191a
parent 1714 5d693a13c84a
child 1716 6bbf206a5b57
config/arch: also export bitness as a string
config/target.in
     1.1 --- a/config/target.in	Fri Jan 08 18:48:21 2010 +0000
     1.2 +++ b/config/target.in	Sat Jan 09 15:40:08 2010 +0100
     1.3 @@ -31,6 +31,7 @@
     1.4  config ARCH_LE
     1.5  config ARCH_32
     1.6  config ARCH_64
     1.7 +config ARCH_BITNESS
     1.8  config ARCH_FLOAT_HW
     1.9  config ARCH_FLOAT_SW
    1.10  config TARGET_CFLAGS
    1.11 @@ -112,6 +113,11 @@
    1.12      bool
    1.13      default n
    1.14  
    1.15 +config ARCH_BITNESS
    1.16 +    int
    1.17 +    default "32"    if ARCH_32
    1.18 +    default "64"    if ARCH_64
    1.19 +
    1.20  choice
    1.21      bool
    1.22      prompt "Bitness:"