Config.v850e 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. # The root directory used for installation, corresponding to $(prefix)
  28. # for GNU packages. This defaults to /usr/local, but makers of .rpms
  29. # and .debs will want to set this to "/usr" instead.
  30. INSTALL_ROOT = /usr/local
  31. NATIVE_CC = gcc
  32. # If you are running a cross compiler, you may want to set this
  33. # to something more interesting... Target architecture is determined
  34. # by asking this compiler what arch it compiles stuff for.
  35. CROSS = v850e-elf-
  36. CC = $(CROSS)gcc
  37. AR = $(CROSS)ar
  38. LD = $(CROSS)ld
  39. NM = $(CROSS)nm
  40. STRIPTOOL = $(CROSS)strip
  41. #STRIPTOOL = /bin/true
  42. # Set the following to `true' to make a debuggable build, and `false' for
  43. # production builds.
  44. DODEBUG = false
  45. # Compiler warnings you want to see
  46. WARNINGS=-Wall
  47. # Note that the kernel source you use to compile with should be the same as the
  48. # Linux kernel you run your apps on. uClibc doesn't even try to achieve binary
  49. # compatibility across kernel versions. So don't expect, for example, uClibc
  50. # compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
  51. # can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
  52. # but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
  53. # work at all. You have been warned.
  54. KERNEL_SOURCE=$(PROJ_UCLINUX)/uclinux/linux-2.4.6
  55. # Set this to `false' if your CPU doesn't have a memory management unit (MMU).
  56. # Set it to `true' otherwise.
  57. HAS_MMU = false
  58. # Set this to `false' if you don't have/need basic floating point support
  59. # support in libc (strtod, printf, scanf). Set it to `true' otherwise.
  60. # If this is not true, then libm will not be built.
  61. HAS_FLOATING_POINT = true
  62. # Set to `true' if you want the math library to contain the full set
  63. # of C99 math library features. Costs an extra 35k or so on x86.
  64. DO_C99_MATH = false
  65. # Set this to `false' if you don't have/need "(unsigned) long long int" support.
  66. # Set it to `true' otherwise.
  67. # Affects *printf and *scanf functions.
  68. # Also omits strto(u)ll, and (u)lltostr from the library if `false'.
  69. HAS_LONG_LONG = true
  70. # Set this to `false' if you don't have/need locale support; `true' otherwise.
  71. # NOTE: Currently does not affect collation.
  72. # You must also generate the locale data and associated .h file.
  73. # See the README in directory extra/locale for details.
  74. HAS_LOCALE = false
  75. # Set this to `false' if you don't have/need wide char support.
  76. HAS_WCHAR = false
  77. # This specifies which malloc implementation is used.
  78. #
  79. # "malloc" use mmap for all allocations and so works very well on MMU-less
  80. # systems that do not support the brk() system call. It is pretty smart
  81. # about reusing already allocated memory, and minimizing memory wastage.
  82. #
  83. # "malloc-930716" is derived from libc-5.3.12 and uses the brk() system call
  84. # for all memory allocations. This makes it very fast. It is also pretty
  85. # smart about reusing already allocated memory, and minimizing memory wastage.
  86. # Because this uses brk() it will not work on uClinux MMU-less systems.
  87. MALLOC = malloc
  88. #MALLOC = malloc-930716
  89. # If you want to collect common syscall code into one function, set to this to
  90. # `true'. Set it to false otherwise.
  91. # On i386 this saves about than 2.8k over all syscalls.
  92. # The idea came from the implementation in dietlibc.
  93. # At present, only affects i386.
  94. UNIFIED_SYSCALL = false
  95. # If you want large file support (greater then 2 GiB) turn this on.
  96. # Do not enable this unless your kernel provides large file support.
  97. DOLFS = true
  98. # Posix regular expression code is really big -- 27k all by itself.
  99. # If you don't use regular expressions, turn this off and save space.
  100. # Of course, if you only staticly link, leave this on, since it will
  101. # only be included in your apps if you use regular expressions.
  102. INCLUDE_REGEX=true
  103. # If you want to include RPC support, enable this. RPC is almost never used
  104. # for anything except NFS support, so unless you plan to use NFS, leave this
  105. # disabled. This is off by default.
  106. INCLUDE_RPC = false
  107. # If you want to include support for the next version of the Internet
  108. # Protocol: IP version 6, enable this. This is off by default.
  109. INCLUDE_IPV6 = false
  110. # If you want to support only Unix 98 PTYs enable this. Some older
  111. # applications may need this disabled. For most current programs,
  112. # you can generally leave this true.
  113. UNIX98PTY_ONLY = true
  114. # Enable this if /dev/pts is on a devpts or devfs file system. Both
  115. # these filesystems automatically manage permissions on the /dev/pts
  116. # devices. You may need to mount this fs on /dev/pts for this to work.
  117. # This is true by default.
  118. ASSUME_DEVPTS = true
  119. # If you want to compile the library as PIC code, turn this on.
  120. # This is automagically enabled when HAVE_SHARED is true
  121. DOPIC = false
  122. # String prefixed to all user symbol names by the C compiler. Usually
  123. # either empty or an underscore.
  124. C_SYMBOL_PREFIX = _
  125. # Enable support for shared libraries? If this is false, you can
  126. # ignore all the rest of the options in this file...
  127. HAVE_SHARED = false
  128. # uClibc has a native shared library loader for some architectures.
  129. BUILD_UCLIBC_LDSO=false
  130. # If you are using shared libraries, but do not want/have a native
  131. # uClibc shared library loader, please specify the name of your
  132. # system's shared library loader here...
  133. #SYSTEM_LDSO=/lib/ld-linux.so.2
  134. # When using shared libraries, this path is the location where the
  135. # shared library will be invoked. This value will be compiled into
  136. # every binary compiled with uClibc.
  137. #
  138. # BIG FAT WARNING:
  139. # If you do not have a shared library loader with the correct name
  140. # sitting in the directory this points to, your binaries will not run.
  141. SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
  142. # DEVEL_PREFIX is the directory into which the uClibc development
  143. # environment will be installed. The result will look something
  144. # like the following:
  145. # DEVEL_PREFIX/
  146. # lib/ <contains all runtime and static libs>
  147. # include/ <Where all the header files go>
  148. # This value is used by the 'make install' Makefile target. Since this
  149. # directory is compiled into the uclibc cross compiler spoofer, you
  150. # have to recompile if you change this value...
  151. DEVEL_PREFIX = $(INSTALL_ROOT)/$(TARGET_ARCH)-uclibc
  152. # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
  153. # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc. This is only used by
  154. # the 'make install' target, and is not compiled into anything.
  155. SYSTEM_DEVEL_PREFIX = $(INSTALL_ROOT)
  156. # DEVEL_TOOL_PREFIX is the directory prefix used when installing
  157. # bin/gcc, bin/ld, etc. This is only used by the 'make install'
  158. # target, and is not compiled into anything.
  159. DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)
  160. # If you want 'make install' to install everything under a temporary
  161. # directory, the define PREFIX during the install step,
  162. # i.e., 'make PREFIX=/var/tmp/uClibc install'.
  163. #PREFIX = $(TOPDIR)/_install