OSDN Git Service

Patch from Brian Stafford <brian@stafford.uklinux.net> to fixup
[uclinux-h8/uClibc.git] / extra / Configs / Config.cross.arm.uclinux
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-elf-
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 # Set the following to `true' to make a debuggable build, and `false' for
42 # production builds.
43 DODEBUG = false
44
45 # Compiler warnings you want to see 
46 WARNINGS=-Wall
47
48 # Note that the kernel source you use to compile with should be the same as the
49 # Linux kernel you run your apps on.  uClibc doesn't even try to achieve binary
50 # compatibility across kernel versions.  So don't expect, for example, uClibc
51 # compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
52 # can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
53 # but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
54 # work at all.  You have been warned.
55 KERNEL_SOURCE=/home/andersen/CVS/uClinux-2.0.x
56
57 # Set this to `false' if your CPU doesn't have a memory management unit (MMU).
58 # Set it to `true' otherwise.
59 HAS_MMU = false
60
61 # Set this to `false' if you don't have/need basic floating point support
62 # support in libc (strtod, printf, scanf).  Set it to `true' otherwise.
63 # If this is not true, then libm will not be built.
64 HAS_FLOATING_POINT = true
65
66 # Set to `true' if you want the math library to contain the full set
67 # of C99 math library features.  Costs an extra 35k or so on x86. 
68 DO_C99_MATH = false
69
70 # Set this to `false' if you don't have/need "(unsigned) long long int" support.
71 # Set it to `true' otherwise.
72 # Affects *printf and *scanf functions.
73 # Also omits strto(u)ll, and (u)lltostr from the library if `false'.
74 HAS_LONG_LONG = true
75
76 # Set this to `false' if you don't have/need locale support; `true' otherwise.
77 # Note: Currently only affects the ctype functions.  You must also generate
78 # a locale file for anything but the C locale.  See directory extra/locale for
79 # a utility to do so.  Also see the following option.
80 HAS_LOCALE = false
81
82 # Set this to the path of your uClibc locale file directory.
83 # Warning!  This must be different than the glibc locale directory to avoid
84 # name conflicts, as the locale files are entirely different in format!
85 LOCALE_DIR = "/usr/share/uClibc-locale/"
86
87 # This specifies which malloc implementation is used.
88 # "malloc-simple" is very, very small, but is also very, very dumb 
89 # and does not try to make good use of memory or clean up after itself.
90 #
91 # "malloc" on the other hand is a bit bigger, but is pretty smart thereby
92 # minimizing memory wastage and reusing already allocated memory.  This 
93 # can be lots faster and safer IMHO.
94 #
95 # "malloc-930716" is from libc-5.3.12 and was/is the standard gnu malloc.
96 # It is actually smaller than "malloc", at least on i386.  Right now, it
97 # only works on i386 (and maybe m68k) because it needs sbrk.
98 MALLOC = malloc-simple
99 #MALLOC = malloc 
100 #MALLOC = malloc-930716
101
102 # If you want to collect common syscall code into one function, set to this to
103 # `true'.  Set it to false otherwise.
104 # On i386 this saves about than 2.8k over all syscalls.
105 # The idea came from the implementation in dietlibc.
106 # At present, only affects i386.
107 UNIFIED_SYSCALL = false
108
109 # If you want large file support (greater then 2 GiB) turn this on.
110 # Do not enable this unless your kernel provides large file support.
111 DOLFS = false
112
113 # Posix regular expression code is really big -- 27k all by itself.
114 # If you don't use regular expressions, turn this off and save space.
115 # Of course, if you only staticly link, leave this on, since it will
116 # only be included in your apps if you use regular expressions. 
117 INCLUDE_REGEX=true
118
119 # If you want to include RPC support, enable this.  RPC is almost never used 
120 # for anything except NFS support, so unless you plan to use NFS, leave this
121 # disabled.  This is off by default.
122 INCLUDE_RPC = false
123
124 # If you want to include support for the next version of the Internet
125 # Protocol: IP version 6, enable this.  This is off by default.
126 INCLUDE_IPV6 = false
127
128 # If you want to support only Unix 98 PTYs enable this.  Some older
129 # applications may need this disabled.  For most current programs, 
130 # you can generally leave this true.
131 UNIX98PTY_ONLY = true
132
133 # Enable this if /dev/pts is on a devpts or devfs file system.  Both
134 # these filesystems automatically manage permissions on the /dev/pts 
135 # devices.  You may need to mount this fs on /dev/pts for this to work. 
136 # This is true by default.
137 ASSUME_DEVPTS = true
138
139
140 # If you want to compile the library as PIC code, turn this on.
141 # This is automagically enabled when HAVE_SHARED is true
142 DOPIC = false
143
144 # Enable support for shared libraries?  If this is false, you can
145 # ignore all the rest of the options in this file...
146 HAVE_SHARED = false
147
148 # uClibc has a native shared library loader for some architectures.
149 BUILD_UCLIBC_LDSO=false
150
151 # If you are using shared libraries, but do not want/have a native
152 # uClibc shared library loader, please specify the name of your
153 # system's shared library loader here...
154 #SYSTEM_LDSO=/lib/ld-linux.so.2
155
156 # When using shared libraries, this path is the location where the
157 # shared library will be invoked.  This value will be compiled into
158 # every binary compiled with uClibc.  
159 #
160 # BIG FAT WARNING:  
161 # If you do not have a shared library loader with the correct name
162 # sitting in the directory this points to, your binaries will not run.
163 #SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
164
165 # DEVEL_PREFIX is the directory into which the uClibc development
166 # environment will be installed.   The result will look something 
167 # like the following:
168 #   DEVEL_PREFIX/
169 #       bin/            <contains gcc, ld, etc>
170 #       lib/            <contains all runtime and static libs>
171 #       include/        <Where all the header files go>
172 # This value is used by the 'make install' Makefile target.  Since this
173 # directory is compiled into the uclibc cross compiler spoofer, you
174 # have to recompile if you change this value...
175 DEVEL_PREFIX = /opt/uClinux/$(TARGET_ARCH)-elf
176
177 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
178 # usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
179 # used by the 'make install' target, and is not compiled into anything.
180 # This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
181 # want to set this to "/" instead.
182 SYSTEM_DEVEL_PREFIX = /
183
184 # If you want 'make install' to install everything under a temporary
185 # directory, the define PREFIX during the install step,
186 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
187 #PREFIX = $(TOPDIR)/_install
188 PREFIX =
189