OSDN Git Service

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