Rules.mak 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. # Rules.make 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-2002 Erik Andersen <andersen@uclibc.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. -include $(TOPDIR)Config
  24. # Be sure to update include/features.h when changing this...
  25. MAJOR_VERSION:=0
  26. MINOR_VERSION:=9
  27. SUBLEVEL:=15
  28. VERSION:=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
  29. LIBNAME:=libc.a
  30. SHARED_FULLNAME:=libuClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  31. SHARED_MAJORNAME:=libc.so.$(MAJOR_VERSION)
  32. UCLIBC_LDSO:=ld-uClibc.so.$(MAJOR_VERSION)
  33. LIBC:=$(TOPDIR)libc/libc.a
  34. LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
  35. # check if we have nawk, otherwise user awk
  36. AWK:= ${shell if [ -x /usr/bin/nawk ]; then echo "/usr/bin/nawk"; else echo "/usr/bin/awk"; fi}
  37. NATIVE_ARCH:= ${shell uname -m | sed \
  38. -e 's/i.86/i386/' \
  39. -e 's/sparc.*/sparc/' \
  40. -e 's/arm.*/arm/g' \
  41. -e 's/m68k.*/m68k/' \
  42. -e 's/ppc/powerpc/g' \
  43. -e 's/v850.*/v850/g' \
  44. -e 's/sh[234].*/sh/' \
  45. -e 's/mips.*/mips/' \
  46. }
  47. ifeq ($(strip $(TARGET_ARCH)),)
  48. TARGET_ARCH:=${shell $(CC) -dumpmachine | sed -e s'/-.*//' \
  49. -e 's/i.86/i386/' \
  50. -e 's/sparc.*/sparc/' \
  51. -e 's/arm.*/arm/g' \
  52. -e 's/m68k.*/m68k/' \
  53. -e 's/ppc/powerpc/g' \
  54. -e 's/v850.*/v850/g' \
  55. -e 's/sh[234]/sh/' \
  56. -e 's/mips.*/mips/' \
  57. -e 's/cris.*/cris/' \
  58. }
  59. endif
  60. # Ensure consistent filename sort order
  61. LC_COLLATE := C
  62. export LC_COLLATE
  63. ARFLAGS:=r
  64. # Some nice architecture specific optimizations
  65. ifndef OPTIMIZATION
  66. # use '-Os' optimization if available, else use -O2, allow Config to override
  67. OPTIMIZATION:= ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
  68. then echo "-Os"; else echo "-O2" ; fi}
  69. ifeq ($(strip $(TARGET_ARCH)),arm)
  70. OPTIMIZATION+=-fstrict-aliasing
  71. endif
  72. ifeq ($(strip $(TARGET_ARCH)),i386)
  73. OPTIMIZATION+=-march=i386
  74. OPTIMIZATION += ${shell if $(CC) -mpreferred-stack-boundary=2 -S -o /dev/null -xc \
  75. /dev/null >/dev/null 2>&1; then echo "-mpreferred-stack-boundary=2"; fi}
  76. OPTIMIZATION += ${shell if $(CC) -falign-functions=1 -falign-jumps=0 -falign-loops=0 \
  77. -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo \
  78. "-falign-functions=1 -falign-jumps=0 -falign-loops=0"; else \
  79. if $(CC) -malign-functions=0 -malign-jumps=0 -S -o /dev/null -xc \
  80. /dev/null >/dev/null 2>&1; then echo "-malign-functions=0 -malign-jumps=0"; fi; fi}
  81. endif
  82. endif
  83. # Add a bunch of extra pedantic annoyingly strict checks
  84. WARNINGS+=-Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
  85. CFLAGS:=$(WARNINGS) $(OPTIMIZATION) -fno-builtin -nostdinc $(CPUFLAGS) \
  86. -I$(TOPDIR)include -iwithprefix include -I. -D_LIBC $(ARCH_CFLAGS)
  87. NATIVE_CFLAGS:=-O2 -Wall
  88. ifeq ($(strip $(DODEBUG)),true)
  89. CFLAGS += -g
  90. LDFLAGS:= -shared --warn-common --warn-once -z combreloc
  91. STRIPTOOL:= true -Since_we_are_debugging
  92. else
  93. CFLAGS += -DNDEBUG #-fomit-frame-pointer
  94. LDFLAGS := -s -shared --warn-common --warn-once -z combreloc
  95. endif
  96. ifeq ($(strip $(HAVE_SHARED)),true)
  97. DOPIC:=true
  98. LIBRARY_CACHE:=#-DUSE_CACHE
  99. ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true)
  100. LDSO:=$(TOPDIR)lib/$(UCLIBC_LDSO)
  101. DYNAMIC_LINKER:=$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO)
  102. BUILD_DYNAMIC_LINKER:=${shell cd $(TOPDIR) && pwd}/lib/$(UCLIBC_LDSO)
  103. else
  104. LDSO:=$(SYSTEM_LDSO)
  105. BUILD_UCLIBC_LDSO:=false
  106. DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO))
  107. BUILD_DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO))
  108. endif
  109. endif
  110. ifeq ($(strip $(DOPIC)),true)
  111. CFLAGS += -fPIC
  112. endif
  113. # Currently locale support requires wide char support.
  114. ifeq ($(strip $(HAS_LOCALE)),true)
  115. HAS_WCHAR:=true
  116. endif
  117. # TARGET_PREFIX is the directory under which which the uClibc runtime
  118. # environment will be installed and used on the target system. The
  119. # result will look something like the following:
  120. # TARGET_PREFIX/
  121. # lib/ <contains all runtime and static libs>
  122. # usr/lib/ <this directory is searched for runtime libs>
  123. # etc/ <weher the shared library cache and configuration
  124. # information go if you enabled LIBRARY_CACHE above>
  125. # Very few people will need to change this value from the default...
  126. TARGET_PREFIX = /