OSDN Git Service

- wrap superlong lines
[uclinux-h8/uClibc.git] / extra / Configs / Config.in.arch
index a981f7e..35c6323 100644 (file)
@@ -7,6 +7,7 @@
 #
 # Binary format
 #
+if !ARCH_USE_MMU
 choice
        prompt "Target File Format"
 config UCLIBC_FORMAT_ELF
@@ -31,6 +32,10 @@ config UCLIBC_FORMAT_SHARED_FLAT
          Pick this one if you are using uClinux and wish to build
          uClibc as a flat-format shared library.
 endchoice
+endif
+if ARCH_USE_MMU
+comment "Using ELF file format"
+endif
 
 config UCLIBC_SHARED_FLAT_ID
        int "Shared library ID"
@@ -118,8 +123,8 @@ config UCLIBC_HAS_FLOATS
          such as printf() and scanf() will still be included in the library, 
          but will not contain support for floating point numbers.
 
-         Answering N to this option can reduce the size of uClibc.  Most people
-         will answer Y.
+         Answering N to this option can reduce the size of uClibc.
+         Most people will answer Y.
 
 config UCLIBC_HAS_FPU
        bool "Target CPU has a floating point unit (FPU)"
@@ -154,17 +159,27 @@ config DO_C99_MATH
          If your applications require the newer C99 math library functions, 
          then answer Y.
 
+config UCLIBC_HAS_FENV
+       bool "Enable C99 Floating-point environment"
+       depends on UCLIBC_HAS_FLOATS
+       default n
+       help
+         If you want the uClibc math library to contain the C99 floating
+         point environment, rounding and exception handling functions then
+         say Y here.
+
 config KERNEL_HEADERS
        string "Linux kernel header location"
-       default "/usr/src/linux/include"
+       default "/usr/include"
        help
-         The kernel source you use to compile with should be the same as the
-         Linux kernel you run your apps on.  uClibc doesn't even try to achieve binary
-         compatibility across kernel versions.  So don't expect, for example, uClibc
-         compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
-         can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
-         but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
-         work at all.  You have been warned.
+         The kernel source you use to compile with should be the same
+         as the Linux kernel you run your apps on.  uClibc doesn't even
+         try to achieve binary compatibility across kernel versions.
+         So don't expect, for example, uClibc compiled with Linux kernel
+         2.0.x to implement lchown properly, since 2.0.x can't do that.
+         Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
+         but then run on Linux 2.0.x, lchown will be compiled into uClibc,
+         but won't work at all.  You have been warned.
 
 config UCLIBC_UCLINUX_BROKEN_MUNMAP
        bool