Config.v850e 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. # Library Configuration rules for uClibc
  2. #
  3. # This file contains rules which are shared between multiple Makefiles. Feel
  4. # free to adjust to taste...
  5. # -Erik Andersen <andersen@lineo.com> <andersee@debian.org>
  6. #
  7. # Copyright (C) 2000, 2001 by Lineo, inc.
  8. #
  9. # This program is free software; you can redistribute it and/or modify it under
  10. # the terms of the GNU Library General Public License as published by the Free
  11. # Software Foundation; either version 2 of the License, or (at your option) any
  12. # later version.
  13. #
  14. # This program is distributed in the hope that it will be useful, but WITHOUT
  15. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  16. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  17. # details.
  18. #
  19. # You should have received a copy of the GNU Library General Public License
  20. # along with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. #
  23. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  24. # other sundry sources. Files within this library are copyright by their
  25. # respective copyright holders.
  26. PROJ_UCLINUX=/proj/soft2/uclinux
  27. # Cross compile on i386-pc-linux-gnu
  28. DESTDIR=$(PROJ_UCLINUX)/i386-pc-linux-gnu/v850e-linux
  29. # What arch do you want to compile for...
  30. TARGET_ARCH = v850
  31. # If you are running a cross compiler, you may want to set this
  32. # to something more interesting...
  33. NATIVE_CC = gcc
  34. CROSS = v850e-elf-
  35. CC = $(CROSS)gcc
  36. AR = $(CROSS)ar
  37. LD = $(CROSS)ld
  38. NM = $(CROSS)nm
  39. STRIPTOOL = $(CROSS)strip
  40. #STRIPTOOL = /bin/true
  41. # Set the following to `true' to make a debuggable build, and `false' for
  42. # production builds.
  43. DODEBUG = true
  44. # Compiler warnings you want to see
  45. WARNINGS=-Wall
  46. # Note that the kernel source you use to compile with should be the same as the
  47. # Linux kernel you run your apps on. uClibc doesn't even try to achieve binary
  48. # compatibility across kernel versions. So don't expect, for example, uClibc
  49. # compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
  50. # can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
  51. # but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
  52. # work at all. You have been warned.
  53. KERNEL_SOURCE=$(PROJ_UCLINUX)/uclinux/linux-2.4.6
  54. # Set this to `false' if your CPU doesn't have a memory management unit (MMU).
  55. # Set it to `true' otherwise.
  56. HAS_MMU = false
  57. # Set this to `false' if you don't have/need basic floating point support
  58. # support in libc (strtod, printf, scanf). Set it to `true' otherwise.
  59. # Note: If not true, Rules.mak disables libm as well.
  60. HAS_FLOATING_POINT = true
  61. # Set this to `false' if you don't have/need float functions in libm.
  62. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  63. HAS_LIBM_FLOAT = true
  64. # Set this to `false' if you don't have/need double functions in libm.
  65. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  66. HAS_LIBM_DOUBLE = true
  67. # Set this to `false' if you don't have/need long double functions in libm.
  68. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  69. HAS_LIBM_LONG_DOUBLE = false
  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. # Set this to `false' if you don't have/need locale support; `true' otherwise.
  76. # Note: Currently only affects the ctype functions. You must also generate
  77. # a locale file for anything but the C locale. See directory extra/locale for
  78. # a utility to do so. Also see the following option.
  79. HAS_LOCALE = false
  80. # Set this to the path of your uClibc locale file directory.
  81. # Warning! This must be different than the glibc locale directory to avoid
  82. # name conflicts, as the locale files are entirely different in format!
  83. LOCALE_DIR = "/usr/share/uClibc-locale/"
  84. # This specifies which malloc implementation is used.
  85. # "malloc-simple" is very, very small, but is also very, very dumb
  86. # and does not try to make good use of memory or clean up after itself.
  87. #
  88. # "malloc" on the other hand is a bit bigger, but is pretty smart thereby
  89. # minimizing memory wastage and reusing already allocated memory. This
  90. # can be lots faster and safer IMHO.
  91. #
  92. # "malloc-930716" is from libc-5.3.12 and was/is the standard gnu malloc.
  93. # It is actually smaller than "malloc", at least on i386. Right now, it
  94. # only works on i386 (and maybe m68k) because it needs sbrk.
  95. #MALLOC = malloc-simple
  96. MALLOC = malloc
  97. #MALLOC = malloc-930716
  98. # If you want to collect common syscall code into one function, set to this to
  99. # `true'. Set it to false otherwise.
  100. # On i386 this saves about than 2.8k over all syscalls.
  101. # The idea came from the implementation in dietlibc.
  102. # At present, only affects i386.
  103. UNIFIED_SYSCALL = false
  104. # If false, then the mmap syscall takes individual arguments, just like
  105. # every other syscall; otherwise, they're all packed into a buffer first
  106. # (which was necessary on old version of linux worked).
  107. OLD_STYLE_MMAP = false
  108. # If you want large file summit support (greater then 2 Gib),
  109. # turn this on. This has no effect unless your kernel supports
  110. # lfs. This currently does nothing, but may someday...
  111. DOLFS = false
  112. # If you want to include RPC support, enable this. RPC is almost never used
  113. # for anything except NFS support, so unless you plan to use NFS, leave this
  114. # disabled. This is off by default.
  115. INCLUDE_RPC = false
  116. # If you want to include support for the next version of the Internet
  117. # Protocol: IP version 6, enable this. This is off by default.
  118. INCLUDE_IPV6 = false
  119. # If you want to compile the library as PIC code, turn this on.
  120. DOPIC = false
  121. # String prefixed to all user symbol names by the C compiler. Usually
  122. # either empty or an underscore.
  123. C_SYMBOL_PREFIX = _
  124. # Enable support for shared libraries? If this is false, you can
  125. # ignore all the rest of the options in this file...
  126. HAVE_SHARED = false
  127. # uClibc has a native shared library loader for some architectures.
  128. BUILD_UCLIBC_LDSO=false
  129. # If you are using shared libraries, but do not want/have a native
  130. # uClibc shared library loader, please specify the name of your
  131. # system's shared library loader here...
  132. #SYSTEM_LDSO=/lib/ld-linux.so.2
  133. # When using shared libraries, this path is the location where the
  134. # shared library will be invoked. This value will be compiled into
  135. # every binary compiled with uClibc.
  136. #
  137. # BIG FAT WARNING:
  138. # If you do not have a shared library loader with the correct name
  139. # sitting in the directory this points to, your binaries will not run.
  140. #SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
  141. # DEVEL_PREFIX is the directory into which the uClibc development
  142. # environment will be installed. The result will look something
  143. # like the following:
  144. # DEVEL_PREFIX/
  145. # bin/ <contains gcc, ld, etc>
  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 = $(DESTDIR)
  152. # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
  153. # usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc. This is only
  154. # used by the 'make install' target, and is not compiled into anything.
  155. # This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
  156. # want to set this to "/" instead.
  157. SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
  158. # If you want 'make install' to install everything under a temporary
  159. # directory, the define PREFIX during the install step,
  160. # i.e., 'make PREFIX=/var/tmp/uClibc install'.
  161. #PREFIX = $(TOPDIR)/_install
  162. PREFIX =