summaryrefslogtreecommitdiff
path: root/config/target.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-22 20:36:44 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-22 20:36:44 (GMT)
commita7ccd113ff50901caf13ecba111e4ff023230249 (patch)
tree23ef155c6732f383fe6a27adf7a87b748abeecf1 /config/target.in
parentfee99394cd3c841559c69a1ab4af57e5f1fa542d (diff)
Only prompt for libfloat for those target that support it.
Diffstat (limited to 'config/target.in')
-rw-r--r--config/target.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/config/target.in b/config/target.in
index b192d85..5cad782 100644
--- a/config/target.in
+++ b/config/target.in
@@ -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.