diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-11-30 00:25:22 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-11-30 00:25:22 +0100 |
commit | 88d01dd8618b37c66827b7ff07b6e3e88199c089 (patch) | |
tree | 5bd774b4eb7a456de3daf078029338c090be7452 /config/target.in | |
parent | 381366c8b6ea88bbc32716a16581ee6865fd0888 (diff) | |
download | crosstool-ng-88d01dd8618b37c66827b7ff07b6e3e88199c089.tar.gz crosstool-ng-88d01dd8618b37c66827b7ff07b6e3e88199c089.tar.bz2 crosstool-ng-88d01dd8618b37c66827b7ff07b6e3e88199c089.zip |
arch: rename the SUPPORT_XXX options
First, 'SUPPORT' should be spelled 'SUPPORTS'.
Second, 'SUPPORT_XXX' really means 'supports --with-xxx', so rename the
affected options accordingly. Update the affected archs to match the new
namings.
Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/config/target.in b/config/target.in index aa798960..f9b152bc 100644 --- a/config/target.in +++ b/config/target.in @@ -10,12 +10,12 @@ config ARCH_SUPPORTS_BOTH_MMU config ARCH_SUPPORTS_BOTH_ENDIAN config ARCH_SUPPORTS_32 config ARCH_SUPPORTS_64 -config ARCH_SUPPORT_ARCH -config ARCH_SUPPORT_ABI -config ARCH_SUPPORT_CPU -config ARCH_SUPPORT_TUNE -config ARCH_SUPPORT_FPU -config ARCH_SUPPORT_SOFTFP +config ARCH_SUPPORTS_WITH_ARCH +config ARCH_SUPPORTS_WITH_ABI +config ARCH_SUPPORTS_WITH_CPU +config ARCH_SUPPORTS_WITH_TUNE +config ARCH_SUPPORTS_WITH_FPU +config ARCH_SUPPORTS_SOFTFP config ARCH_DEFAULT_HAS_MMU config ARCH_DEFAULT_BE @@ -136,28 +136,28 @@ endchoice #-------------------------------------- comment "Target optimisations" -config ARCH_SUPPORT_ARCH +config ARCH_SUPPORTS_WITH_ARCH bool -config ARCH_SUPPORT_ABI +config ARCH_SUPPORTS_WITH_ABI bool -config ARCH_SUPPORT_CPU +config ARCH_SUPPORTS_WITH_CPU bool -config ARCH_SUPPORT_TUNE +config ARCH_SUPPORTS_WITH_TUNE bool -config ARCH_SUPPORT_FPU +config ARCH_SUPPORTS_WITH_FPU bool -config ARCH_SUPPORT_SOFTFP +config ARCH_SUPPORTS_SOFTFP bool config ARCH_ARCH string prompt "Architecture level" - depends on ARCH_SUPPORT_ARCH + depends on ARCH_SUPPORTS_WITH_ARCH default "" help GCC uses this name to determine what kind of instructions it can emit @@ -177,7 +177,7 @@ config ARCH_ARCH config ARCH_ABI string prompt "Generate code for the specific ABI" - depends on ARCH_SUPPORT_ABI + depends on ARCH_SUPPORTS_WITH_ABI default "" help Generate code for the given ABI. @@ -194,7 +194,7 @@ config ARCH_ABI config ARCH_CPU string prompt "Emit assembly for CPU" - depends on ARCH_SUPPORT_CPU + depends on ARCH_SUPPORTS_WITH_CPU default "" help This specifies the name of the target processor. GCC uses this name @@ -213,7 +213,7 @@ config ARCH_CPU config ARCH_TUNE string prompt "Tune for CPU" - depends on ARCH_SUPPORT_TUNE + depends on ARCH_SUPPORTS_WITH_TUNE default "" help This option is very similar to the ARCH_CPU option (above), except @@ -236,7 +236,7 @@ config ARCH_TUNE config ARCH_FPU string prompt "Use specific FPU" - depends on ARCH_SUPPORT_FPU + depends on ARCH_SUPPORTS_WITH_FPU default "" help On some targets (eg. ARM), you can specify the kind of FPU to emit @@ -284,7 +284,7 @@ config ARCH_FLOAT_SW config ARCH_FLOAT_SOFTFP bool prompt "softfp" - depends on ARCH_SUPPORT_SOFTFP + depends on ARCH_SUPPORTS_SOFTFP help Emit hardware floating point opcodes but use the software floating point calling convention. |