diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-22 20:36:44 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-22 20:36:44 +0000 |
commit | a7ccd113ff50901caf13ecba111e4ff023230249 (patch) | |
tree | 23ef155c6732f383fe6a27adf7a87b748abeecf1 /config/target.in | |
parent | fee99394cd3c841559c69a1ab4af57e5f1fa542d (diff) | |
download | crosstool-ng-a7ccd113ff50901caf13ecba111e4ff023230249.tar.gz crosstool-ng-a7ccd113ff50901caf13ecba111e4ff023230249.tar.bz2 crosstool-ng-a7ccd113ff50901caf13ecba111e4ff023230249.zip |
Only prompt for libfloat for those target that support it.
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/target.in b/config/target.in index b192d853..5cad7827 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. |