config/target.in
changeset 2788 b6faa28e76e0
parent 2772 d4ac8609878e
child 2789 e6b5bd481942
     1.1 --- a/config/target.in	Mon Nov 14 19:13:00 2011 +0100
     1.2 +++ b/config/target.in	Wed Nov 30 00:25:22 2011 +0100
     1.3 @@ -10,12 +10,12 @@
     1.4  config ARCH_SUPPORTS_BOTH_ENDIAN
     1.5  config ARCH_SUPPORTS_32
     1.6  config ARCH_SUPPORTS_64
     1.7 -config ARCH_SUPPORT_ARCH
     1.8 -config ARCH_SUPPORT_ABI
     1.9 -config ARCH_SUPPORT_CPU
    1.10 -config ARCH_SUPPORT_TUNE
    1.11 -config ARCH_SUPPORT_FPU
    1.12 -config ARCH_SUPPORT_SOFTFP
    1.13 +config ARCH_SUPPORTS_WITH_ARCH
    1.14 +config ARCH_SUPPORTS_WITH_ABI
    1.15 +config ARCH_SUPPORTS_WITH_CPU
    1.16 +config ARCH_SUPPORTS_WITH_TUNE
    1.17 +config ARCH_SUPPORTS_WITH_FPU
    1.18 +config ARCH_SUPPORTS_SOFTFP
    1.19  
    1.20  config ARCH_DEFAULT_HAS_MMU
    1.21  config ARCH_DEFAULT_BE
    1.22 @@ -136,28 +136,28 @@
    1.23  #--------------------------------------
    1.24  comment "Target optimisations"
    1.25  
    1.26 -config ARCH_SUPPORT_ARCH
    1.27 +config ARCH_SUPPORTS_WITH_ARCH
    1.28      bool
    1.29  
    1.30 -config ARCH_SUPPORT_ABI
    1.31 +config ARCH_SUPPORTS_WITH_ABI
    1.32      bool
    1.33  
    1.34 -config ARCH_SUPPORT_CPU
    1.35 +config ARCH_SUPPORTS_WITH_CPU
    1.36      bool
    1.37  
    1.38 -config ARCH_SUPPORT_TUNE
    1.39 +config ARCH_SUPPORTS_WITH_TUNE
    1.40      bool
    1.41  
    1.42 -config ARCH_SUPPORT_FPU
    1.43 +config ARCH_SUPPORTS_WITH_FPU
    1.44      bool
    1.45  
    1.46 -config ARCH_SUPPORT_SOFTFP
    1.47 +config ARCH_SUPPORTS_SOFTFP
    1.48      bool
    1.49  
    1.50  config ARCH_ARCH
    1.51      string
    1.52      prompt "Architecture level"
    1.53 -    depends on ARCH_SUPPORT_ARCH
    1.54 +    depends on ARCH_SUPPORTS_WITH_ARCH
    1.55      default ""
    1.56      help
    1.57        GCC uses this name to determine what kind of instructions it can emit
    1.58 @@ -177,7 +177,7 @@
    1.59  config ARCH_ABI
    1.60      string
    1.61      prompt "Generate code for the specific ABI"
    1.62 -    depends on ARCH_SUPPORT_ABI
    1.63 +    depends on ARCH_SUPPORTS_WITH_ABI
    1.64      default ""
    1.65      help
    1.66        Generate code for the given ABI.
    1.67 @@ -194,7 +194,7 @@
    1.68  config ARCH_CPU
    1.69      string
    1.70      prompt "Emit assembly for CPU"
    1.71 -    depends on ARCH_SUPPORT_CPU
    1.72 +    depends on ARCH_SUPPORTS_WITH_CPU
    1.73      default ""
    1.74      help
    1.75        This specifies the name of the target processor. GCC uses this name
    1.76 @@ -213,7 +213,7 @@
    1.77  config ARCH_TUNE
    1.78      string
    1.79      prompt "Tune for CPU"
    1.80 -    depends on ARCH_SUPPORT_TUNE
    1.81 +    depends on ARCH_SUPPORTS_WITH_TUNE
    1.82      default ""
    1.83      help
    1.84        This option is very similar to the ARCH_CPU option (above), except
    1.85 @@ -236,7 +236,7 @@
    1.86  config ARCH_FPU
    1.87      string
    1.88      prompt "Use specific FPU"
    1.89 -    depends on ARCH_SUPPORT_FPU
    1.90 +    depends on ARCH_SUPPORTS_WITH_FPU
    1.91      default ""
    1.92      help
    1.93        On some targets (eg. ARM), you can specify the kind of FPU to emit
    1.94 @@ -284,7 +284,7 @@
    1.95  config ARCH_FLOAT_SOFTFP
    1.96      bool
    1.97      prompt "softfp"
    1.98 -    depends on ARCH_SUPPORT_SOFTFP
    1.99 +    depends on ARCH_SUPPORTS_SOFTFP
   1.100      help
   1.101        Emit hardware floating point opcodes but use the software
   1.102        floating point calling convention.