Config.sh 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 by Lineo, inc.
  8. # Copyright (C) 2001 by Hewlett-Packard Australia
  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. # What arch do you want to compile for...
  28. #TARGET_ARCH=arm
  29. #TARGET_ARCH=i386
  30. #TARGET_ARCH=m68k
  31. #TARGET_ARCH=powerpc
  32. TARGET_ARCH=sh
  33. #TARGET_ARCH=sparc
  34. # If you are running a cross compiler, you may want to set this
  35. # to something more interesting...
  36. NATIVE_CC = gcc
  37. CROSS = /usr/cygnus/yapp-001013/H-i686-pc-linux-gnulibc2.1/bin/sh-linux-gnu-
  38. CC = $(CROSS)gcc
  39. AR = $(CROSS)ar
  40. LD = $(CROSS)ld
  41. NM = $(CROSS)nm
  42. STRIPTOOL = $(CROSS)strip
  43. #STRIPTOOL = /bin/true
  44. # Set the following to `true' to make a debuggable build, and `false' for
  45. # production builds.
  46. DODEBUG = false
  47. # Compiler warnings you want to see
  48. WARNINGS=-Wall
  49. # Note that the kernel source you use to compile with should be the same as the
  50. # Linux kernel you run your apps on. uClibc doesn't even try to achieve binary
  51. # compatibility across kernel versions. So don't expect, for example, uClibc
  52. # compiled with Linux kernel 2.0.x to implement lchown properly, since 2.0.x
  53. # can't do that. Similarly, if you compile uClibc vs Linux 2.4.x kernel headers,
  54. # but then run on Linux 2.0.x, lchown will be compiled into uClibc, but won't
  55. # work at all. You have been warned.
  56. KERNEL_SOURCE=../../../linux
  57. #
  58. # ARCH_CFLAGS if your have something special to add to the CFLAGS
  59. #
  60. ARCH_CFLAGS = -DNO_UNDERSCORES
  61. ifeq ($(strip $(TARGET_ARCH)),sh)
  62. ifeq ($(strip $(TARGET_PROC)),SH2_BIG_THAMIS)
  63. ARCH_CFLAGS += -DHIOS -mb -m2 -specs=/usr/cygnus/yapp-001013/H-i686-pc-linux-gnulibc2.1/lib/gcc-lib/sh-linux-gnu/2.96-yapp-001013/specs_sh2
  64. HAS_MMU = false
  65. endif
  66. ifeq ($(strip $(TARGET_PROC)),SH3_BIG_UCLINUX)
  67. ARCH_CFLAGS += -mb
  68. HAS_MMU = false
  69. endif
  70. ifeq ($(strip $(TARGET_PROC)),SH3_LITTLE_UCLINUX)
  71. ARCH_CFLAGS += -ml
  72. HAS_MMU = false
  73. endif
  74. ifeq ($(strip $(TARGET_PROC)),SH3)
  75. ARCH_CFLAGS += -ml
  76. HAS_MMU = true
  77. endif
  78. endif
  79. # Set this to `false' if you don't have/need basic floating point support
  80. # support in libc (strtod, printf, scanf). Set it to `true' otherwise.
  81. # Note: If not true, Rules.mak disables libm as well.
  82. HAS_FLOATING_POINT = true
  83. # Set this to `false' if you don't have/need float functions in libm.
  84. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  85. HAS_LIBM_FLOAT = false
  86. # Set this to `false' if you don't have/need double functions in libm.
  87. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  88. HAS_LIBM_DOUBLE = false
  89. # Set this to `false' if you don't have/need long double functions in libm.
  90. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
  91. HAS_LIBM_LONG_DOUBLE = false
  92. # Set this to `false' if you don't have/need "(unsigned) long long int" support.
  93. # Set it to `true' otherwise.
  94. # Affects *printf and *scanf functions.
  95. # Also omits strto(u)ll, and (u)lltostr from the library if `false'.
  96. HAS_LONG_LONG = false
  97. # Set this to `false' if you don't have/need locale support; `true' otherwise.
  98. # Note: Currently only affects the ctype functions. You must also generate
  99. # a locale file for anything but the C locale. See directory extra/locale for
  100. # a utility to do so. Also see the following option.
  101. HAS_LOCALE = false
  102. # Set this to the path of your uClibc locale file directory.
  103. # Warning! This must be different than the glibc locale directory to avoid
  104. # name conflicts, as the locale files are entirely different in format!
  105. LOCALE_DIR = "/usr/share/uClibc-locale/"
  106. # This specifies which malloc implementation is used.
  107. # "malloc-simple" is very, very small, but is also very, very dumb
  108. # and does not try to make good use of memory or clean up after itself.
  109. #
  110. # "malloc" on the other hand is a bit bigger, but is pretty smart thereby
  111. # minimizing memory wastage and reusing already allocated memory. This
  112. # can be lots faster and safer IMHO.
  113. #
  114. # "malloc-930716" is from libc-5.3.12 and was/is the standard gnu malloc.
  115. # It is actually smaller than "malloc", at least on i386. Right now, it
  116. # only works on i386 (and maybe m68k) because it needs sbrk.
  117. MALLOC = malloc-simple
  118. #MALLOC = malloc
  119. #MALLOC = malloc-930716
  120. # If you want to collect common syscall code into one function, set to this to
  121. # `true'. Set it to false otherwise.
  122. # On i386 this saves about than 2.8k over all syscalls.
  123. # The idea came from the implementation in dietlibc.
  124. # At present, only affects i386.
  125. UNIFIED_SYSCALL = false
  126. # If you want large file summit support (greater then 2 Gib),
  127. # turn this on. This has no effect unless your kernel supports
  128. # lfs. This currently does nothing, but may someday...
  129. DOLFS = false
  130. # If you want to include RPC support, enable this. RPC is almost never used
  131. # for anything except NFS support, so unless you plan to use NFS, leave this
  132. # disabled. This is off by default.
  133. INCLUDE_RPC = false
  134. # ROOT_DIR is the base directory which will be compiled into the uClibc
  135. # runtime environment. When compiled as a shared library, the shared
  136. # library loader will look in <ROOT_DIR>/lib and <ROOT_DIR>/usr/lib
  137. # for shared libraries.
  138. #
  139. # DEVEL_PREFIX is the base directory which will be compiled into the uClibc
  140. # development environment. The uClibc development environment will
  141. # look for the uClibc header files under <DEVEL_PREFIX><ROOT_DIR>/usr/include,
  142. # and for static libs and crt0.o in <DEVEL_PREFIX><ROOT_DIR>/usr/lib.
  143. # Also, 'make install' will install the compiler tools to
  144. # <DEVEL_PREFIX><ROOT_DIR>/bin and <DEVEL_PREFIX><ROOT_DIR>/usr/bin.
  145. #
  146. # TARGET_PREFIX is the directory under which 'make install' will install the
  147. # uClibc runtime environment. This path does not get compiled into anything,
  148. # and is provided simply to make it easier to build standalone target systems.
  149. # Note: This doesn't do anything if there are no shared libs.
  150. DEVEL_PREFIX =
  151. ROOT_DIR = /opt/uClinux/$(TARGET_ARCH)-pic-elf
  152. TARGET_PREFIX =