mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-21 17:26:41 +00:00
Make ARM32 option appear only if 32-bit is selected
Fixes #745 Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
a9f8a8e675
commit
c0162ff475
@ -1,5 +1,6 @@
|
|||||||
# ARM specific configuration file
|
# ARM specific configuration file
|
||||||
|
|
||||||
|
if ARCH_32
|
||||||
config ARCH_ARM_MODE
|
config ARCH_ARM_MODE
|
||||||
string
|
string
|
||||||
default "arm" if ARCH_ARM_MODE_ARM
|
default "arm" if ARCH_ARM_MODE_ARM
|
||||||
@ -91,3 +92,5 @@ config ARCH_ARM_TUPLE_USE_EABIHF
|
|||||||
|
|
||||||
Say 'n', unless you are trying to fix gcc to properly recognise
|
Say 'n', unless you are trying to fix gcc to properly recognise
|
||||||
the *eabihf tuples.
|
the *eabihf tuples.
|
||||||
|
|
||||||
|
endif
|
||||||
|
@ -144,6 +144,9 @@ config ARCH_SUPPORTS_64
|
|||||||
config ARCH_DEFAULT_8
|
config ARCH_DEFAULT_8
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config ARCH_DEFAULT_16
|
||||||
|
bool
|
||||||
|
|
||||||
config ARCH_DEFAULT_32
|
config ARCH_DEFAULT_32
|
||||||
bool
|
bool
|
||||||
|
|
||||||
@ -153,6 +156,7 @@ config ARCH_DEFAULT_64
|
|||||||
config ARCH_BITNESS
|
config ARCH_BITNESS
|
||||||
int
|
int
|
||||||
default "8" if ARCH_8
|
default "8" if ARCH_8
|
||||||
|
default "16" if ARCH_16
|
||||||
default "32" if ARCH_32
|
default "32" if ARCH_32
|
||||||
default "64" if ARCH_64
|
default "64" if ARCH_64
|
||||||
|
|
||||||
@ -160,6 +164,7 @@ choice
|
|||||||
bool
|
bool
|
||||||
prompt "Bitness:"
|
prompt "Bitness:"
|
||||||
default ARCH_8 if ARCH_DEFAULT_8
|
default ARCH_8 if ARCH_DEFAULT_8
|
||||||
|
default ARCH_16 if ARCH_DEFAULT_16
|
||||||
default ARCH_32 if ARCH_DEFAULT_32
|
default ARCH_32 if ARCH_DEFAULT_32
|
||||||
default ARCH_64 if ARCH_DEFAULT_64
|
default ARCH_64 if ARCH_DEFAULT_64
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user