config/target.in
changeset 123 8de240c770dc
parent 108 69407950a2a2
child 136 22b5ef41df97
     1.1 --- a/config/target.in	Sat May 19 22:52:47 2007 +0000
     1.2 +++ b/config/target.in	Tue May 22 21:16:17 2007 +0000
     1.3 @@ -21,6 +21,7 @@
     1.4      prompt "arm"
     1.5      select ARCH_SUPPORTS_BE
     1.6      select ARCH_SUPPORTS_LE
     1.7 +    select ARCH_SUPPORTS_LIBFLOAT
     1.8  
     1.9  config ARCH_MIPS
    1.10      bool
    1.11 @@ -32,6 +33,7 @@
    1.12      bool
    1.13      prompt "x86"
    1.14      select ARCH_SUPPORTS_LE
    1.15 +    select ARCH_SUPPORTS_LIBFLOAT
    1.16  
    1.17  config ARCH_x86_64
    1.18      bool
    1.19 @@ -190,11 +192,15 @@
    1.20  
    1.21  endchoice
    1.22  
    1.23 +config ARCH_SUPPORTS_LIBFLOAT
    1.24 +    bool
    1.25 +    default n
    1.26 +
    1.27  config ARCH_FLOAT_SW_LIBFLOAT
    1.28      bool
    1.29      prompt "Use libfloat"
    1.30      default n
    1.31 -    depends on ARCH_FLOAT_SW
    1.32 +    depends on ARCH_FLOAT_SW && ARCH_SUPPORTS_LIBFLOAT
    1.33      help
    1.34        For those targets upporting it, you can use libfloat for the software
    1.35        floating point emulation.