Config.cris 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. # Library Configuration rules for uClibc for CRIS (Axis Etrax CPU)
  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 by Lineo, inc.
  8. # (C) 2002 by Axis Communications AB
  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. # Target architecture
  28. TARGET_ARCH = cris
  29. # Target specific things to add to CFLAGS
  30. ARCH_CFLAGS = -fpic -mlinux -D__USE_WEAK_ALIASES
  31. # Target specific things to add to LDFLAGS
  32. ARCH_LDFLAGS = -mcrislinux
  33. # Target specific optins needed when asking $(CROSS)gcc about libgcc.a
  34. LIBGCC_CFLAGS = -mlinux
  35. # If you are running a cross compiler, you may want to set this
  36. # to something more interesting...
  37. NATIVE_CC = gcc
  38. CROSS = cris-
  39. CC = $(CROSS)gcc
  40. AR = $(CROSS)ar
  41. LD = $(CROSS)ld
  42. STRIPTOOL = $(CROSS)strip
  43. # STRIPTOOL = /bin/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=$(AXIS_KERNEL_DIR)
  54. # Disable this if your CPU has a memory management unit (MMU)
  55. HAS_MMU = true
  56. # Set this to 'false' if basic floating support isn't needed in
  57. # libc (strtod, printf, scanf). It this isn't true, libm will no
  58. # be built
  59. HAS_FLOATING_POINT = true
  60. # Set to 'true' if the math library should contain the full C99 math
  61. # functions. This adds a few K's..
  62. DO_C99_MATH = false
  63. # Set this to `false' if you don't have/need doubles. This primarily
  64. # effects libm, which gets quite a bit larger, but also effects several
  65. # other places. Set it to `true' otherwise.
  66. HAS_DOUBLE = false
  67. # Set this to `false' if you don't have/need long doubles. This primarily
  68. # effects libm, which gets quite a bit larger. Set it to `true' otherwise.
  69. HAS_LONG_DOUBLE = false
  70. # Set this to 'false if you don't need shadow password support.
  71. HAS_SHADOW = false
  72. # Set this to `false' if you don't have/need locale support; `true' otherwise.
  73. # Note: Currently only affects the ctype functions. You must also generate
  74. # a locale file for anything but the C locale. See directory extra/locale for
  75. # a utility to do so. Also see the following option.
  76. HAS_LOCALE = false
  77. # Set this to the path of your uClibc locale file directory.
  78. # Warning! This must be different than the glibc locale directory to avoid
  79. # name conflicts, as the locale files are entirely different in format!
  80. LOCALE_DIR = "/usr/share/uClibc-locale/"
  81. # Set the following to `true' to make a debuggable build.
  82. # Do not enable this for production builds...
  83. DODEBUG = false
  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
  99. # true. On i386 this saves about than 2.8k over all syscalls.
  100. # The idea came from the implementation in dietlibc.
  101. # At present, only affects i386.
  102. UNIFIED_SYSCALL = false
  103. # If you want large file summit support (greater then 2 Gib),
  104. # turn this on. This has no effect unless your kernel supports
  105. # lfs. This currently does nothing, but may someday...
  106. DOLFS = false
  107. # Posix regular expression code is really big -- 27k all by itself.
  108. # If you don't use regular expressions, turn this off and save space.
  109. # Of course, if you only staticly link, leave this on, since it will
  110. # only be included in your apps if you use regular expressions.
  111. INCLUDE_REGEX = true
  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 = true
  116. # If you want to include threads support, enable this. The C library will
  117. # be compiled thread-safe, and the libpthread library will be built.
  118. INCLUDE_THREADS = true
  119. # If you want to include support for the next version of the Internet
  120. # Protocol: IP version 6, enable this. This is off by default.
  121. INCLUDE_IPV6 = false
  122. # If you want to support only Unix 98 PTYs enable this. Some older
  123. # applications may need this disabled. For most current programs,
  124. # you can generally leave this true.
  125. UNIX98PTY_ONLY = true
  126. # Enable this if /dev/pts is on a devpts or devfs file system. Both
  127. # these filesystems automatically manage permissions on the /dev/pts
  128. # devices. You may need to mount this fs on /dev/pts for this to work.
  129. # This is true by default.
  130. ASSUME_DEVPTS = true
  131. # If you want to compile the library as PIC code, turn this on.
  132. # This is automagically enabled when HAVE_SHARED is true
  133. DOPIC = false
  134. # Enable support for shared libraries? If this is false, you can
  135. # ignore all the rest of the options in this file...
  136. HAVE_SHARED = true
  137. # uClibc has a native shared library loader for some architectures.
  138. BUILD_UCLIBC_LDSO=true
  139. # If you are using shared libraries, but do not want/have a native
  140. # uClibc shared library loader, please specify the name of your
  141. # system's shared library loader here...
  142. #
  143. #SYSTEM_LDSO=/lib/ld.so.1
  144. # When using shared libraries, this path is the location where the
  145. # shared library will be invoked. This value will be compiled into
  146. # every binary compiled with uClibc.
  147. #
  148. # BIG FAT WARNING:
  149. # If you do not have a shared library loader with the correct name
  150. # sitting in the directory this points to, your binaries will not run.
  151. SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
  152. # DEVEL_PREFIX is the directory into which the uClibc development
  153. # environment will be installed. The result will look something
  154. # like the following:
  155. # DEVEL_PREFIX/
  156. # bin/ <contains gcc, ld, etc>
  157. # lib/ <contains all runtime and static libs>
  158. # include/ <Where all the header files go>
  159. # This value is used by the 'make install' Makefile target. Since this
  160. # directory is compiled into the uclibc cross compiler spoofer, you
  161. # have to recompile if you change this value...
  162. #DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
  163. ifdef prefix
  164. DEVEL_PREFIX = $(prefix)
  165. else
  166. ifdef AXIS_TOP_DIR
  167. DEVEL_PREFIX = $(AXIS_TOP_DIR)/target/cris-axis-linux-gnuuclibc
  168. else
  169. DEVEL_PREFIX = $(EROOT)
  170. endif
  171. endif
  172. # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
  173. # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc. This is only used by
  174. # the 'make install' target, and is not compiled into anything. This
  175. # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
  176. # want to set this to "/usr" instead.
  177. #
  178. SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/lib
  179. # If you want 'make install' to install everything under a temporary
  180. # directory, the define PREFIX during the install step,
  181. # i.e., 'make PREFIX=/var/tmp/uClibc install'.
  182. #PREFIX = $(TOPDIR)/_install