Config.h8300 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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) 2002 Erik Andersen <andersee@debian.org>
  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. # What arch do you want to compile for...
  27. #TARGET_ARCH=arm
  28. #TARGET_ARCH=i386
  29. #TARGET_ARCH=m68k
  30. #TARGET_ARCH=powerpc
  31. #TARGET_ARCH=sh
  32. #TARGET_ARCH=sparc
  33. TARGET_ARCH=h8300
  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 = h8300-hitachi-hms-
  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=/opt/uClinux/linux
  57. # Set this to `false' if your CPU doesn't have a memory management unit (MMU).
  58. # Set it to `true' otherwise.
  59. HAS_MMU = false
  60. # Set this to `false' if you don't have/need basic floating point support
  61. # support in libc (strtod, printf, scanf). Set it to `true' otherwise.
  62. # If this is not true, then libm will not be built.
  63. HAS_FLOATING_POINT = true
  64. # Set to `true' if you want the math library to contain the full set
  65. # of C99 math library features. Costs an extra 35k or so on x86.
  66. DO_C99_MATH = false
  67. # Set this to `false' if you don't have/need locale support; `true' otherwise.
  68. # NOTE: Currently does not affect collation.
  69. # You must also generate the locale data and associated .h file.
  70. # See the README in directory extra/locale for details.
  71. HAS_LOCALE = false
  72. # Set this to `false' if you don't have/need wide char support.
  73. HAS_WCHAR = false
  74. # This specifies which malloc implementation is used.
  75. #
  76. # "malloc" use mmap for all allocations and so works very well on MMU-less
  77. # systems that do not support the brk() system call. It is pretty smart
  78. # about reusing already allocated memory, and minimizing memory wastage.
  79. #
  80. # "malloc-930716" is derived from libc-5.3.12 and uses the brk() system call
  81. # for all memory allocations. This makes it very fast. It is also pretty
  82. # smart about reusing already allocated memory, and minimizing memory wastage.
  83. # Because this uses brk() it will not work on uClinux MMU-less systems.
  84. MALLOC = malloc
  85. #MALLOC = malloc-930716
  86. # If you want large file summit support (greater then 2 Gib),
  87. # turn this on. This has no effect unless your kernel supports
  88. # lfs. This currently does nothing, but may someday...
  89. DOLFS = false
  90. # If you want to include RPC support, enable this. RPC is almost never used
  91. # for anything except NFS support, so unless you plan to use NFS, leave this
  92. # disabled. This is off by default.
  93. INCLUDE_RPC = true
  94. # Normally we enable just enough RPC support for things like rshd and
  95. # nfs mount to work. If you find you need the rest of the RPC stuff,
  96. # then enable this.
  97. INCLUDE_FULL_RPC = false
  98. # If you want to include support for the next version of the Internet
  99. # Protocol: IP version 6, enable this. This is off by default.
  100. INCLUDE_IPV6 = false
  101. # If you want to compile the library as PIC code, turn this on.
  102. DOPIC = false
  103. #
  104. # ARCH_CFLAGS if your have something special to add to the CFLAGS
  105. #
  106. ARCH_CFLAGS = -mh -mint32 -fsigned-char
  107. #
  108. # this is needed for 2.4 m68knommu builds
  109. #
  110. ARCH_CFLAGS2 = -I$(KERNEL_SOURCE)/include
  111. #
  112. # get this from elsewhere, maybe
  113. #
  114. OPTIMIZATION = $(DEBUG_CFLAGS) -mh -mint32 -fsigned-char
  115. # This is a COFF compiler (ick), so disable all the cool stuff
  116. HAVE_ELF = false
  117. # Enable support for shared libraries? If this is false, you can
  118. # ignore all the rest of the options in this file...
  119. HAVE_SHARED = false
  120. # uClibc has a native shared library loader for some architectures.
  121. BUILD_UCLIBC_LDSO=false
  122. # If you are using shared libraries, but do not want/have a native
  123. # uClibc shared library loader, please specify the name of your
  124. # system's shared library loader here...
  125. #SYSTEM_LDSO=/lib/ld-linux.so.2
  126. # When using shared libraries, this path is the location where the
  127. # shared library will be invoked. This value will be compiled into
  128. # every binary compiled with uClibc.
  129. #
  130. # BIG FAT WARNING:
  131. # If you do not have a shared library loader with the correct name
  132. # sitting in the directory this points to, your binaries will not run.
  133. #SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
  134. # C defiend symbols prefix charactor
  135. C_SYMBOL_PREFIX = _
  136. # DEVEL_PREFIX is the directory into which the uClibc development
  137. # environment will be installed. The result will look something
  138. # like the following:
  139. # DEVEL_PREFIX/
  140. # lib/ <contains all runtime and static libs>
  141. # include/ <Where all the header files go>
  142. # This value is used by the 'make install' Makefile target. Since this
  143. # directory is compiled into the uclibc cross compiler spoofer, you
  144. # have to recompile if you change this value...
  145. #DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
  146. DEVEL_PREFIX = /opt/uClinux/$(TARGET_ARCH)-coff
  147. # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
  148. # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc. This is only used by
  149. # the 'make install' target, and is not compiled into anything. This
  150. # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
  151. # want to set this to "/usr" instead.
  152. SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
  153. # DEVEL_TOOL_PREFIX is the directory prefix used when installing
  154. # bin/gcc, bin/ld, etc. This is only used by the 'make install'
  155. # target, and is not compiled into anything. This defaults to
  156. # $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
  157. # set this to something else.
  158. DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
  159. # If you want 'make install' to install everything under a temporary
  160. # directory, the define PREFIX during the install step,
  161. # i.e., 'make PREFIX=/var/tmp/uClibc install'.
  162. #PREFIX = $(TOPDIR)/_install