OSDN Git Service

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