diff options
-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:" |