OSDN Git Service

didnt mean to commit the FENV option just yet
[uclinux-h8/uClibc.git] / extra / Configs / Config.in.arch
1 #
2 # For a description of the syntax of this configuration file,
3 # see extra/config/Kconfig-language.txt
4 #
5
6 choice
7         prompt "Target Processor Endianness"
8         help
9           This is the endianness you wish to build use.  Choose either Big
10           Endian, or Little Endian.
11
12 config ARCH_LITTLE_ENDIAN
13         bool "Little Endian"
14         depends on ARCH_SUPPORTS_LITTLE_ENDIAN
15
16 config ARCH_BIG_ENDIAN
17         bool "Big Endian"
18         depends on ARCH_SUPPORTS_BIG_ENDIAN
19
20 endchoice
21
22 config ARCH_HAS_NO_MMU
23         bool "Target CPU does not have a memory management unit (MMU)"
24         select ARCH_HAS_NO_LDSO if !TARGET_frv
25         default n
26
27 config ARCH_HAS_MMU
28         bool "Target CPU has a memory management unit (MMU)"
29         default y
30         depends !ARCH_HAS_NO_MMU
31         help
32           If your target CPU does not have a memory management unit (MMU), 
33           then answer N here.  Normally, Linux runs on systems with an MMU.  
34           If you are building a uClinux system, answer N.
35
36           Most people will answer Y.
37
38 config UCLIBC_HAS_FLOATS
39         bool "Enable floating point number support"
40         default y
41         help
42           This option allows you to entirely omit all floating point number
43           support from uClibc.  This will cause floating point functions like
44           strtod() to be omitted from uClibc.  Other floating point functions, 
45           such as printf() and scanf() will still be included in the library, 
46           but will not contain support for floating point numbers.
47
48           Answering N to this option can reduce the size of uClibc.  Most people
49           will answer Y.
50
51 config UCLIBC_HAS_FPU
52         bool "Target CPU has a floating point unit (FPU)"
53         depends on UCLIBC_HAS_FLOATS
54         default y
55         help
56           If your target CPU does not have a Floating Point Unit (FPU) or a
57           kernel FPU emulator, but you still wish to support floating point
58           functions, then uClibc will need to be compiled with soft floating
59           point support (-msoft-float).  If your target CPU does not have an
60           FPU or an FPU emulator within the Linux kernel, then you should
61           answer N.
62
63           Most people will answer Y.
64
65 config UCLIBC_HAS_SOFT_FLOAT
66         bool
67         depends on UCLIBC_HAS_FLOATS && !UCLIBC_HAS_FPU
68         default y
69
70 config DO_C99_MATH
71         bool "Enable full C99 math library support"
72         depends on UCLIBC_HAS_FLOATS
73         default n
74         help
75           If you want the uClibc math library to contain the full set C99
76           math library features, then answer Y.  If you leave this set to
77           N the math library will contain only the math functions that were
78           listed as part of the traditional POSIX/IEEE 1003.1b-1993 standard.
79           Leaving this option set to N will save around 35k on an x86 system.
80
81           If your applications require the newer C99 math library functions, 
82           then answer Y.
83
84 config KERNEL_SOURCE
85         string "Linux kernel header location"
86         default "/usr/src/linux"
87         help
88           The kernel source you use to compile with should be the same as the
89           Linux kernel you run your apps on.  uClibc doesn't even try to achieve binary
90           compatibility across kernel versions.  So don't expect, for example, uClibc
91           compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
92           can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
93           but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
94           work at all.  You have been warned.
95
96 config UCLIBC_UCLINUX_BROKEN_MUNMAP
97         bool
98         depends on !ARCH_HAS_MMU
99         default y
100
101 config EXCLUDE_BRK
102         bool
103         depends on !ARCH_HAS_MMU
104         default y
105
106 config HAVE_DOT_CONFIG
107         bool
108         default y