diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-30 20:02:13 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-30 20:02:13 +0000 |
commit | 7131764f9c93494f6b960b1d33d48508cc2f0512 (patch) | |
tree | 27bdca72d92e247883e56e08f830a7d675ccb91f /config/target.in | |
parent | 20e08ffa90f139fb977bf2d65e989853626210e8 (diff) | |
download | crosstool-ng-7131764f9c93494f6b960b1d33d48508cc2f0512.tar.gz crosstool-ng-7131764f9c93494f6b960b1d33d48508cc2f0512.tar.bz2 crosstool-ng-7131764f9c93494f6b960b1d33d48508cc2f0512.zip |
Remove any reference to libfloat. That has gone once and for all.
Rationale:
Most of the time, soft-float problems are caused by this sucker of gcc:
it has support for soft float for all of the targets I've tried so far,
but does not activate this code until you dwelve into half a dozen of
files to make it accept to build and link the support code...
So, yes: gcc has soft-float support. And again, yes: gcc is a sucker.
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/config/target.in b/config/target.in index 9c72e4b1..38d33600 100644 --- a/config/target.in +++ b/config/target.in @@ -20,7 +20,6 @@ config ARCH_ARM bool prompt "arm" select ARCH_SUPPORTS_BOTH_ENDIAN - select ARCH_SUPPORTS_LIBFLOAT config ARCH_MIPS bool @@ -30,7 +29,6 @@ config ARCH_MIPS config ARCH_x86 bool prompt "x86" - select ARCH_SUPPORTS_LIBFLOAT config ARCH_x86_64 bool @@ -183,30 +181,6 @@ 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 && ARCH_SUPPORTS_LIBFLOAT - help - For those targets upporting it, you can use libfloat for the software - floating point emulation. - - Note that some versions of gcc have support code that supersedes libfloat, - while others don't. Known version of gcc that don't have support code are - versions prior to 3.0, and version above 4.0. - - You should check gcc before deciding to use libfloat. - -config LIBFLOAT_VERSION - string - default "990616.orig" - depends on ARCH_FLOAT_SW_LIBFLOAT - config TARGET_CFLAGS string prompt "Target CFLAGS" |