diff options
author | Alexey Neyman <stilor@att.net> | 2017-06-13 00:19:30 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-06-13 00:19:30 -0700 |
commit | c0162ff475f74d1da78c167a479e2b010cb27df5 (patch) | |
tree | 11ae703eb1ef79d42aa39b332d2b0765255ba6e9 /config/target.in | |
parent | a9f8a8e67509547a53b9b4781734e2b482b75b4e (diff) | |
download | crosstool-ng-c0162ff475f74d1da78c167a479e2b010cb27df5.tar.gz crosstool-ng-c0162ff475f74d1da78c167a479e2b010cb27df5.tar.bz2 crosstool-ng-c0162ff475f74d1da78c167a479e2b010cb27df5.zip |
Make ARM32 option appear only if 32-bit is selected
Fixes #745
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in index 2ce8aa3f..50aaa615 100644 --- a/config/target.in +++ b/config/target.in @@ -144,6 +144,9 @@ config ARCH_SUPPORTS_64 config ARCH_DEFAULT_8 bool +config ARCH_DEFAULT_16 + bool + config ARCH_DEFAULT_32 bool @@ -153,6 +156,7 @@ config ARCH_DEFAULT_64 config ARCH_BITNESS int default "8" if ARCH_8 + default "16" if ARCH_16 default "32" if ARCH_32 default "64" if ARCH_64 @@ -160,6 +164,7 @@ choice bool prompt "Bitness:" default ARCH_8 if ARCH_DEFAULT_8 + default ARCH_16 if ARCH_DEFAULT_16 default ARCH_32 if ARCH_DEFAULT_32 default ARCH_64 if ARCH_DEFAULT_64 |