diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-12-23 14:32:20 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-12-23 14:32:20 +0100 |
commit | 114e6eb14756bb31310349976e74660b45033a0b (patch) | |
tree | b11b6beaa9a8978a41d3a234cabc8da9d2e41b8b | |
parent | 7c9671092ee9d710cd977298582f676be0c3bc57 (diff) | |
download | crosstool-ng-114e6eb14756bb31310349976e74660b45033a0b.tar.gz crosstool-ng-114e6eb14756bb31310349976e74660b45033a0b.tar.bz2 crosstool-ng-114e6eb14756bb31310349976e74660b45033a0b.zip |
arch: re-order the entries in the float choice
Re-order the three entries in the float choice, in a more sensible
order, ie:
- all hard-float options come first, then soft-float
- options that use the FPU are marked so: hard and softfp
- options that do not use the FPU are marked so: software
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | config/target.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/config/target.in b/config/target.in index 2e8cf91d..1df57947 100644 --- a/config/target.in +++ b/config/target.in @@ -294,18 +294,9 @@ config ARCH_FLOAT_HW binary blobs from different vendors that are compiling this way and can't (don't wan't to) change. -config ARCH_FLOAT_SW - bool - prompt "software" - help - Do not emit any hardware floating point opcode. - - If your processor has no FPU, then you most probably want this, as it - is faster than emulating the FPU in the kernel. - config ARCH_FLOAT_SOFTFP bool - prompt "softfp" + prompt "softfp (FPU)" depends on ARCH_SUPPORTS_SOFTFP help Emit hardware floating point opcodes but use the software @@ -319,6 +310,15 @@ config ARCH_FLOAT_SOFTFP If in doubt, use 'software' or 'hardware' mode instead. +config ARCH_FLOAT_SW + bool + prompt "software (no FPU)" + help + Do not emit any hardware floating point opcode. + + If your processor has no FPU, then you most probably want this, as it + is faster than emulating the FPU in the kernel. + endchoice config TARGET_CFLAGS |