mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-18 02:39:46 +00:00
Only prompt for libfloat for those target that support it.
This commit is contained in:
parent
fee99394cd
commit
a7ccd113ff
@ -21,6 +21,7 @@ config ARCH_ARM
|
||||
prompt "arm"
|
||||
select ARCH_SUPPORTS_BE
|
||||
select ARCH_SUPPORTS_LE
|
||||
select ARCH_SUPPORTS_LIBFLOAT
|
||||
|
||||
config ARCH_MIPS
|
||||
bool
|
||||
@ -32,6 +33,7 @@ config ARCH_x86
|
||||
bool
|
||||
prompt "x86"
|
||||
select ARCH_SUPPORTS_LE
|
||||
select ARCH_SUPPORTS_LIBFLOAT
|
||||
|
||||
config ARCH_x86_64
|
||||
bool
|
||||
@ -190,11 +192,15 @@ config ARCH_FLOAT_SW
|
||||
|
||||
endchoice
|
||||
|
||||
config ARCH_SUPPORTS_LIBFLOAT
|
||||
bool
|
||||
default n
|
||||
|
||||
config ARCH_FLOAT_SW_LIBFLOAT
|
||||
bool
|
||||
prompt "Use libfloat"
|
||||
default n
|
||||
depends on ARCH_FLOAT_SW
|
||||
depends on ARCH_FLOAT_SW && ARCH_SUPPORTS_LIBFLOAT
|
||||
help
|
||||
For those targets upporting it, you can use libfloat for the software
|
||||
floating point emulation.
|
||||
|
Loading…
Reference in New Issue
Block a user