OSDN Git Service

Miles Bader implemented a new mmap based malloc which is much
[uclinux-h8/uClibc.git] / extra / Configs / Config.arm
1 # Library Configuration rules for uClibc
2 #
3 # This file contains rules which are shared between multiple Makefiles.  All
4 # normal configuration options live in the file named "Config".  You probably
5 # should not mess with this file unless you know what you are doing...  
6
7 # Copyright (C) 2000 by Lineo, inc.
8 # Copyright (C) 2000,2001 Erik Andersen <andersee@debian.org>
9 #
10 # This program is free software; you can redistribute it and/or modify it under
11 # the terms of the GNU Library General Public License as published by the Free
12 # Software Foundation; either version 2 of the License, or (at your option) any
13 # later version.
14 #
15 # This program is distributed in the hope that it will be useful, but WITHOUT
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
18 # details.
19 #
20 # You should have received a copy of the GNU Library General Public License
21 # along with this program; if not, write to the Free Software Foundation, Inc.,
22 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #
24 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
25 # other sundry sources.  Files within this library are copyright by their
26 # respective copyright holders.
27
28 NATIVE_CC = gcc
29
30 # If you are running a cross compiler, you may want to set this
31 # to something more interesting...  Target architecture is determined
32 # by asking this compiler what arch it compiles stuff for.
33 CROSS = #arm-linux-
34 CC = $(CROSS)gcc
35 AR = $(CROSS)ar
36 LD = $(CROSS)ld
37 NM = $(CROSS)nm
38 STRIPTOOL = $(CROSS)strip
39 #STRIPTOOL = /bin/true
40
41 #
42 # just in case someone wants to use it
43 ARCH_CFLAGS=
44
45 # Set the following to `true' to make a debuggable build, and `false' for
46 # production builds.
47 DODEBUG = false
48
49 # Compiler warnings you want to see 
50 WARNINGS=-Wall
51
52 # Note that the kernel source you use to compile with should be the same as the
53 # Linux kernel you run your apps on.  uClibc doesn't even try to achieve binary
54 # compatibility across kernel versions.  So don't expect, for example, uClibc
55 # compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
56 # can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
57 # but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
58 # work at all.  You have been warned.
59 KERNEL_SOURCE=/usr/src/linux
60
61 # Set this to `false' if your CPU doesn't have a memory management unit (MMU).
62 # Set it to `true' otherwise.
63 HAS_MMU = true
64
65 # Set this to `false' if you don't have/need basic floating point support
66 # support in libc (strtod, printf, scanf).  Set it to `true' otherwise.
67 # If this is not true, then libm will not be built.
68 HAS_FLOATING_POINT = true
69
70 # Set to `true' if you want the math library to contain the full set
71 # of C99 math library features.  Costs an extra 35k or so on x86. 
72 DO_C99_MATH = false
73
74 # Set this to `false' if you don't have/need "(unsigned) long long int" support.
75 # Set it to `true' otherwise.
76 # Affects *printf and *scanf functions.
77 # Also omits strto(u)ll, and (u)lltostr from the library if `false'.
78 HAS_LONG_LONG = false
79
80 # Set this to 'false if you don't need shadow password support.
81 HAS_SHADOW = false
82
83 # Set this to `false' if you don't have/need locale support; `true' otherwise.
84 # NOTE: Currently does not affect collation.
85 # You must also generate the locale data and associated .h file.
86 # See the README in directory extra/locale for details.
87 HAS_LOCALE = false
88
89 # Set this to `false' if you don't have/need wide char support.
90 HAS_WCHAR = false
91
92 # This specifies which malloc implementation is used.
93 #
94 # "malloc" use mmap for all allocations and so works very well on MMU-less
95 # systems that do not support the brk() system call.   It is pretty smart 
96 # about reusing already allocated memory, and minimizing memory wastage.
97 #
98 # "malloc-930716" is derived from libc-5.3.12 and uses the brk() system call
99 # for all memory allocations.  This makes it very fast.  It is also pretty
100 # smart about reusing already allocated memory, and minimizing memory wastage.
101 # Because this uses brk() it will not work on uClinux MMU-less systems.
102 #MALLOC = malloc 
103 MALLOC = malloc-930716
104
105 # If you want to collect common syscall code into one function, set to this to
106 # `true'.  Set it to false otherwise.
107 # On i386 this saves about than 2.8k over all syscalls.
108 # The idea came from the implementation in dietlibc.
109 # At present, only affects i386.
110 UNIFIED_SYSCALL = false
111
112 # If you want large file support (greater then 2 GiB) turn this on.
113 # Do not enable this unless your kernel provides large file support.
114 DOLFS = false
115
116 # Posix regular expression code is really big -- 27k all by itself.
117 # If you don't use regular expressions, turn this off and save space.
118 # Of course, if you only staticly link, leave this on, since it will
119 # only be included in your apps if you use regular expressions. 
120 INCLUDE_REGEX=true
121
122 # If you want to include RPC support, enable this.  RPC is almost never used 
123 # for anything except NFS support, so unless you plan to use NFS, leave this
124 # disabled.  This is off by default.
125 INCLUDE_RPC = false
126
127 # If you want to include support for the next version of the Internet
128 # Protocol: IP version 6, enable this.  This is off by default.
129 INCLUDE_IPV6 = false
130
131 # If you want to include threads support, enable this.  The C library will
132 # be compiled thread-safe, and the libpthread library will be built.
133 INCLUDE_THREADS = true
134
135 # If you want to support only Unix 98 PTYs enable this.  Some older
136 # applications may need this disabled.  For most current programs, 
137 # you can generally leave this true.
138 UNIX98PTY_ONLY = true
139
140 # Enable this if /dev/pts is on a devpts or devfs file system.  Both
141 # these filesystems automatically manage permissions on the /dev/pts 
142 # devices.  You may need to mount this fs on /dev/pts for this to work. 
143 # This is true by default.
144 ASSUME_DEVPTS = true
145
146
147 # If you want to compile the library as PIC code, turn this on.
148 # This is automagically enabled when HAVE_SHARED is true
149 DOPIC = false
150
151 # Enable support for shared libraries?  If this is false, you can
152 # ignore all the rest of the options in this file...
153 HAVE_SHARED = true
154
155 # uClibc has a native shared library loader for some architectures.
156 BUILD_UCLIBC_LDSO=true
157
158 # If you are using shared libraries, but do not want/have a native
159 # uClibc shared library loader, please specify the name of your
160 # system's shared library loader here...
161 #SYSTEM_LDSO=/lib/ld-linux.so.2
162
163 # When using shared libraries, this path is the location where the
164 # shared library will be invoked.  This value will be compiled into
165 # every binary compiled with uClibc.  
166 #
167 # BIG FAT WARNING:  
168 # If you do not have a shared library loader with the correct name
169 # sitting in the directory this points to, your binaries will not run.
170 SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
171
172 # DEVEL_PREFIX is the directory into which the uClibc development
173 # environment will be installed.   The result will look something 
174 # like the following:
175 #   DEVEL_PREFIX/
176 #       lib/            <contains all runtime and static libs>
177 #       include/        <Where all the header files go>
178 # This value is used by the 'make install' Makefile target.  Since this
179 # directory is compiled into the uclibc cross compiler spoofer, you
180 # have to recompile if you change this value...
181 DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
182
183 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
184 # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
185 # the 'make install' target, and is not compiled into anything.  This
186 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
187 # want to set this to "/usr" instead.
188 SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
189
190 # DEVEL_TOOL_PREFIX is the directory prefix used when installing
191 # bin/gcc, bin/ld, etc.   This is only used by the 'make install'
192 # target, and is not compiled into anything.  This defaults to
193 # $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
194 # set this to something else.
195 DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
196
197 # If you want 'make install' to install everything under a temporary
198 # directory, the define PREFIX during the install step,
199 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
200 #PREFIX = $(TOPDIR)/_install
201