Rules.mak 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. # Rules.make for uClibc
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. # check for proper make version
  8. ifneq ($(findstring x3.7,x$(MAKE_VERSION)),)
  9. $(error Your make is too old $(MAKE_VERSION). Go get at least 3.80)
  10. endif
  11. #-----------------------------------------------------------
  12. # This file contains rules which are shared between multiple
  13. # Makefiles. All normal configuration options live in the
  14. # file named ".config". Don't mess with this file unless
  15. # you know what you are doing.
  16. #-----------------------------------------------------------
  17. # If you are running a cross compiler, you will want to set
  18. # 'CROSS' to something more interesting ... Target
  19. # architecture is determined by asking the CC compiler what
  20. # arch it compiles things for, so unless your compiler is
  21. # broken, you should not need to specify TARGET_ARCH.
  22. #
  23. # Most people will set this stuff on the command line, i.e.
  24. # make CROSS=arm-linux-
  25. # will build uClibc for 'arm'.
  26. ifndef CROSS
  27. CROSS=
  28. endif
  29. CC = $(CROSS)gcc
  30. AR = $(CROSS)ar
  31. LD = $(CROSS)ld
  32. NM = $(CROSS)nm
  33. STRIPTOOL = $(CROSS)strip
  34. INSTALL = install
  35. LN = ln
  36. RM = rm -f
  37. TAR = tar
  38. SED = sed
  39. AWK = awk
  40. STRIP_FLAGS ?= -x -R .note -R .comment
  41. UNIFDEF := $(top_builddir)extra/scripts/unifdef -UUCLIBC_INTERNAL
  42. # Select the compiler needed to build binaries for your development system
  43. HOSTCC = gcc
  44. BUILD_CFLAGS = -O2 -Wall
  45. export ARCH := $(shell uname -m | $(SED) -e s/i.86/i386/ \
  46. -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
  47. -e s/arm.*/arm/ -e s/sa110/arm/ \
  48. -e s/sh.*/sh/ \
  49. -e s/s390x/s390/ -e s/parisc.*/hppa/ \
  50. -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
  51. -e s/xtensa.*/xtensa/ )
  52. #---------------------------------------------------------
  53. # Nothing beyond this point should ever be touched by mere
  54. # mortals. Unless you hang out with the gods, you should
  55. # probably leave all this stuff alone.
  56. # Pull in the user's uClibc configuration
  57. ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
  58. -include $(top_builddir).config
  59. endif
  60. # Make certain these contain a final "/", but no "//"s.
  61. TARGET_ARCH:=$(shell grep -s '^TARGET_ARCH' $(top_builddir)/.config | $(SED) -e 's/^TARGET_ARCH=//' -e 's/"//g')
  62. TARGET_ARCH:=$(strip $(subst ",, $(strip $(TARGET_ARCH))))
  63. TARGET_SUBARCH:=$(shell grep -s '^TARGET_SUBARCH' $(top_builddir)/.config | $(SED) -e 's/^TARGET_SUBARCH=//' -e 's/"//g')
  64. TARGET_SUBARCH:=$(strip $(subst ",, $(strip $(TARGET_SUBARCH))))
  65. RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
  66. DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))
  67. KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(KERNEL_HEADERS))))))
  68. export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS
  69. # Now config hard core
  70. MAJOR_VERSION := 0
  71. MINOR_VERSION := 9
  72. SUBLEVEL := 30
  73. EXTRAVERSION :=-rc3-svn
  74. VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
  75. ifneq ($(EXTRAVERSION),)
  76. VERSION := $(VERSION)$(EXTRAVERSION)
  77. endif
  78. # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
  79. LC_ALL := C
  80. export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_ALL
  81. LIBC := libc
  82. SHARED_MAJORNAME := $(LIBC).so.$(MAJOR_VERSION)
  83. ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 mips64 powerpc64 s390x sparc64 x86_64 ),)
  84. UCLIBC_LDSO_NAME := ld64-uClibc
  85. else
  86. UCLIBC_LDSO_NAME := ld-uClibc
  87. endif
  88. UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(MAJOR_VERSION)
  89. NONSHARED_LIBNAME := uclibc_nonshared.a
  90. libc := $(top_builddir)lib/$(SHARED_MAJORNAME)
  91. libc.depend := $(top_builddir)lib/$(SHARED_MAJORNAME:.$(MAJOR_VERSION)=)
  92. interp := $(top_builddir)lib/interp.os
  93. ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
  94. headers_dep := $(top_builddir)include/bits/sysnum.h
  95. sub_headers := $(headers_dep)
  96. #LIBS :=$(interp) -L$(top_builddir)lib -lc
  97. LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(MAJOR_VERSION)=)
  98. # Make sure DESTDIR and PREFIX can be used to install
  99. # PREFIX is a uClibcism while DESTDIR is a common GNUism
  100. ifndef PREFIX
  101. PREFIX = $(DESTDIR)
  102. endif
  103. ifneq ($(HAVE_SHARED),y)
  104. libc :=
  105. interp :=
  106. ldso :=
  107. endif
  108. comma:=,
  109. space:= #
  110. ifndef CROSS
  111. CROSS=$(strip $(subst ",, $(CROSS_COMPILER_PREFIX)))
  112. endif
  113. # A nifty macro to make testing gcc features easier
  114. check_gcc=$(shell \
  115. if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
  116. then echo "$(1)"; else echo "$(2)"; fi)
  117. check_as=$(shell \
  118. if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
  119. then echo "-Wa,$(1)"; fi)
  120. check_ld=$(shell \
  121. if $(LD) $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1; \
  122. then echo "$(1)"; fi)
  123. ARFLAGS:=cr
  124. # Flags in OPTIMIZATION are used only for non-debug builds
  125. OPTIMIZATION:=
  126. # Use '-Os' optimization if available, else use -O2, allow Config to override
  127. OPTIMIZATION+=$(call check_gcc,-Os,-O2)
  128. # Use the gcc 3.4 -funit-at-a-time optimization when available
  129. OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
  130. GCC_MAJOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1)
  131. #GCC_MINOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 2)
  132. ifeq ($(GCC_MAJOR_VER),4)
  133. # shrinks code, results are from 4.0.2
  134. # 0.36%
  135. OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
  136. # 0.34%
  137. OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
  138. # 0.1%
  139. OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
  140. endif
  141. CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
  142. CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
  143. PICFLAG-y := -fPIC
  144. PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
  145. PICFLAG := $(PICFLAG-y)
  146. PIEFLAG_NAME:=-fPIE
  147. # Some nice CPU specific optimizations
  148. ifeq ($(TARGET_ARCH),i386)
  149. OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
  150. # NB: this may make SSE insns segfault!
  151. # -O1 -march=pentium3, -Os -msse etc are known to be affected.
  152. # TODO: conditionally bump to 4
  153. # (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685)
  154. OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=4,)
  155. # Choice of alignment (please document why!)
  156. # -falign-labels: in-line labels
  157. # (reachable by normal code flow, aligning will insert nops
  158. # which will be executed - may even make things slower)
  159. # -falign-jumps: reachable only by a jump
  160. # Generic: no alignment at all (smallest code)
  161. GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
  162. ifeq ($(CONFIG_K7),y)
  163. # Align functions to four bytes, use default for jumps and loops (why?)
  164. GCC_FALIGN=$(call check_gcc,-falign-functions=4 -falign-labels=1,-malign-functions=4)
  165. endif
  166. ifeq ($(CONFIG_CRUSOE),y)
  167. # Use compiler's default for functions, jumps and loops (why?)
  168. GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
  169. endif
  170. ifeq ($(CONFIG_CYRIXIII),y)
  171. # Use compiler's default for functions, jumps and loops (why?)
  172. GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
  173. endif
  174. OPTIMIZATION+=$(GCC_FALIGN)
  175. # Putting each function and data object into its own section
  176. # allows for kbytes of less text if users link against static uclibc
  177. # using ld --gc-sections.
  178. # ld 2.18 can't do that (yet?) for shared libraries, so we itself
  179. # do not use --gc-sections at shared lib link time.
  180. # However, in combination with sections being sorted by alignment
  181. # it does result in much reduced padding:
  182. # text data bss dec hex
  183. # 235319 1472 5992 242783 3b45f old.so
  184. # 234104 1472 5980 241556 3af94 new.so
  185. # Without -ffunction-sections, all functions will get aligned
  186. # to 4 byte boundary by as/ld. This is arguably a bug in as.
  187. # It specifies 4 byte align for .text even if not told to do so:
  188. # Idx Name Size VMA LMA File off Algn
  189. # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
  190. CPU_CFLAGS-y += $(call check_gcc,-ffunction-sections -fdata-sections,)
  191. ifneq ($(call check_ld,--sort-common,),)
  192. CPU_LDFLAGS-y += -Wl,--sort-common
  193. endif
  194. ifneq ($(call check_ld,--sort-section alignment),)
  195. CPU_LDFLAGS-y += -Wl,--sort-section,alignment
  196. endif
  197. CPU_LDFLAGS-y+=-m32
  198. CPU_CFLAGS-y+=-m32
  199. CPU_CFLAGS-$(CONFIG_386)+=-march=i386
  200. CPU_CFLAGS-$(CONFIG_486)+=-march=i486
  201. CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
  202. CPU_CFLAGS-$(CONFIG_586)+=-march=i586
  203. CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
  204. CPU_CFLAGS-$(CONFIG_686)+=-march=i686
  205. CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
  206. CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
  207. CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
  208. CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
  209. CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686)
  210. CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686
  211. CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
  212. CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
  213. CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486)
  214. CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
  215. endif
  216. ifeq ($(TARGET_ARCH),sparc)
  217. CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
  218. CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
  219. CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
  220. CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
  221. endif
  222. ifeq ($(TARGET_ARCH),arm)
  223. OPTIMIZATION+=-fstrict-aliasing
  224. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  225. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  226. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  227. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  228. CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
  229. CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
  230. CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
  231. CPU_CFLAGS-$(CONFIG_ARM7TDMI)+=-mtune=arm7tdmi -march=armv4t
  232. CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4t
  233. CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4t
  234. CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4t
  235. CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5t
  236. CPU_CFLAGS-$(CONFIG_ARM10T)+=-mtune=arm10tdmi -march=armv5t
  237. CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
  238. CPU_CFLAGS-$(CONFIG_ARM1176JZ_S)+=-mtune=arm1176jz-s -march=armv6
  239. CPU_CFLAGS-$(CONFIG_ARM1176JZF_S)+=-mtune=arm1176jzf-s -march=armv6
  240. CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
  241. CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
  242. CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
  243. CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv5te -Wa,-mcpu=xscale
  244. CPU_CFLAGS-$(CONFIG_ARM_IWMMXT)+=-march=iwmmxt -Wa,-mcpu=iwmmxt -mabi=iwmmxt
  245. CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M3)+=-mcpu=cortex-m3 -mthumb
  246. CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M1)+=-mcpu=cortex-m1 -mthumb
  247. endif
  248. ifeq ($(TARGET_ARCH),mips)
  249. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  250. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  251. CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
  252. CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
  253. CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
  254. CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
  255. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
  256. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32R2)+=-march=mips32r2 -mtune=mips32r2
  257. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
  258. ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
  259. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
  260. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
  261. endif
  262. ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
  263. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
  264. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
  265. endif
  266. CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
  267. CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
  268. CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
  269. endif
  270. ifeq ($(TARGET_ARCH),nios)
  271. CPU_LDFLAGS-y+=-Wl,-m32
  272. CPU_CFLAGS-y+=-Wl,-m32
  273. endif
  274. ifeq ($(TARGET_ARCH),sh)
  275. OPTIMIZATION+=-fstrict-aliasing
  276. OPTIMIZATION+= $(call check_gcc,-mprefergot,)
  277. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  278. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  279. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
  280. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
  281. CPU_CFLAGS-$(CONFIG_SH2)+=-m2
  282. CPU_CFLAGS-$(CONFIG_SH3)+=-m3
  283. ifeq ($(UCLIBC_HAS_FLOATS),y)
  284. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
  285. CPU_CFLAGS-$(CONFIG_SH4)+=-m4
  286. else
  287. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
  288. CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
  289. endif
  290. endif
  291. ifeq ($(TARGET_ARCH),sh64)
  292. OPTIMIZATION+=-fstrict-aliasing
  293. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):=-Wl,-EL
  294. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):=-Wl,-EB
  295. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
  296. CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
  297. CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
  298. endif
  299. ifeq ($(TARGET_ARCH),h8300)
  300. SYMBOL_PREFIX=_
  301. CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
  302. CPU_LDFLAGS-$(CONFIG_H8S) += -Wl,-ms8300s
  303. CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
  304. CPU_CFLAGS-$(CONFIG_H8S) += -ms -mint32
  305. endif
  306. ifeq ($(TARGET_ARCH),cris)
  307. CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
  308. CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
  309. CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
  310. PICFLAG:=-fpic
  311. PIEFLAG_NAME:=-fpie
  312. endif
  313. ifeq ($(TARGET_ARCH),m68k)
  314. # -fPIC is only supported for 68020 and above. It is not supported
  315. # for 68000, 68010, or Coldfire.
  316. PICFLAG:=-fpic
  317. PIEFLAG_NAME:=-fpie
  318. endif
  319. ifeq ($(TARGET_ARCH),powerpc)
  320. # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
  321. # enough. Therefore use -fpic which will reduce code size and generates
  322. # faster code.
  323. PICFLAG:=-fpic
  324. PIEFLAG_NAME:=-fpie
  325. PPC_HAS_REL16:=$(shell echo -e "\t.text\n\taddis 11,30,_GLOBAL_OFFSET_TABLE_-.@ha" | $(CC) -c -x assembler -o /dev/null - 2> /dev/null && echo -n y || echo -n n)
  326. CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
  327. CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
  328. endif
  329. ifeq ($(TARGET_ARCH),bfin)
  330. SYMBOL_PREFIX=_
  331. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  332. CPU_CFLAGS-y:=-mfdpic
  333. CPU_LDFLAGS-y += -Wl,-melf32bfinfd
  334. PICFLAG:=-fpic
  335. PIEFLAG_NAME:=-fpie
  336. endif
  337. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  338. PICFLAG := -mleaf-id-shared-library
  339. endif
  340. endif
  341. ifeq ($(TARGET_ARCH),frv)
  342. CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
  343. # Using -pie causes the program to have an interpreter, which is
  344. # forbidden, so we must make do with -shared. Unfortunately,
  345. # -shared by itself would get us global function descriptors
  346. # and calls through PLTs, dynamic resolution of symbols, etc,
  347. # which would break as well, but -Bsymbolic comes to the rescue.
  348. export LDPIEFLAG:=-Wl,-shared -Wl,-Bsymbolic
  349. UCLIBC_LDSO=ld.so.1
  350. endif
  351. ifeq ($(strip $(TARGET_ARCH)),avr32)
  352. CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap
  353. CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax
  354. CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
  355. endif
  356. ifeq ($(TARGET_ARCH),i960)
  357. SYMBOL_PREFIX=_
  358. endif
  359. ifeq ($(TARGET_ARCH),microblaze)
  360. SYMBOL_PREFIX=_
  361. endif
  362. ifeq ($(TARGET_ARCH),v850)
  363. SYMBOL_PREFIX=_
  364. endif
  365. # Keep the check_gcc from being needlessly executed
  366. ifndef PIEFLAG
  367. ifneq ($(UCLIBC_BUILD_PIE),y)
  368. export PIEFLAG:=
  369. else
  370. export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
  371. endif
  372. endif
  373. # We need to keep track of both the CC PIE flag (above) as
  374. # well as the LD PIE flag (below) because we can't rely on
  375. # gcc passing -pie if we used -fPIE
  376. ifndef LDPIEFLAG
  377. ifneq ($(UCLIBC_BUILD_PIE),y)
  378. export LDPIEFLAG:=
  379. else
  380. export LDPIEFLAG:=$(shell $(LD) --help 2>/dev/null | grep -q -- -pie && echo "-Wl,-pie")
  381. endif
  382. endif
  383. # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
  384. ifndef ASNEEDED
  385. export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
  386. endif
  387. # Add a bunch of extra pedantic annoyingly strict checks
  388. XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -fno-strict-aliasing
  389. ifeq ($(EXTRA_WARNINGS),y)
  390. XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
  391. XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
  392. XWARNINGS+=-Wnonnull -Wundef
  393. # works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
  394. #XWARNINGS+=-Wdeclaration-after-statement
  395. endif
  396. XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
  397. CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
  398. SSP_DISABLE_FLAGS ?= $(call check_gcc,-fno-stack-protector,)
  399. ifeq ($(UCLIBC_BUILD_SSP),y)
  400. SSP_CFLAGS := $(call check_gcc,-fno-stack-protector-all,)
  401. SSP_CFLAGS += $(call check_gcc,-fstack-protector,)
  402. SSP_ALL_CFLAGS ?= $(call check_gcc,-fstack-protector-all,)
  403. else
  404. SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
  405. endif
  406. NOSTDLIB_CFLAGS:=$(call check_gcc,-nostdlib,)
  407. # Some nice CFLAGS to work with
  408. CFLAGS := -include $(top_builddir)include/libc-symbols.h \
  409. $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
  410. -fno-builtin -nostdinc -I$(top_builddir)include -I. \
  411. -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)
  412. # Make sure that we can be built with non-C99 compilers, too.
  413. # Use __\1__ instead.
  414. CFLAGS += $(call check_gcc,-fno-asm,)
  415. ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
  416. CFLAGS += $(subst ",, $(UCLIBC_EXTRA_CFLAGS))
  417. endif
  418. LDADD_LIBFLOAT=
  419. ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
  420. # If -msoft-float isn't supported, we want an error anyway.
  421. # Hmm... might need to revisit this for arm since it has 2 different
  422. # soft float encodings.
  423. ifneq ($(TARGET_ARCH),nios)
  424. ifneq ($(TARGET_ARCH),nios2)
  425. ifneq ($(TARGET_ARCH),sh)
  426. CFLAGS += -msoft-float
  427. endif
  428. endif
  429. endif
  430. ifeq ($(TARGET_ARCH),arm)
  431. # No longer needed with current toolchains, but leave it here for now.
  432. # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
  433. # LDADD_LIBFLOAT=-lfloat
  434. endif
  435. endif
  436. # Please let us see private headers' parts
  437. CFLAGS += -DUCLIBC_INTERNAL
  438. # We need this to be checked within libc-symbols.h
  439. ifneq ($(HAVE_SHARED),y)
  440. CFLAGS += -DSTATIC
  441. endif
  442. CFLAGS += $(call check_gcc,-std=gnu99,)
  443. LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -Wl,-shared \
  444. -Wl,--warn-common -Wl,--warn-once -Wl,-z,combreloc
  445. # binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
  446. #LDFLAGS_NOSTRIP+=$(call check_ld,--gc-sections)
  447. ifeq ($(UCLIBC_BUILD_RELRO),y)
  448. LDFLAGS_NOSTRIP+=-Wl,-z,relro
  449. endif
  450. ifeq ($(UCLIBC_BUILD_NOW),y)
  451. LDFLAGS_NOSTRIP+=-Wl,-z,now
  452. endif
  453. ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
  454. # Be sure that binutils support it
  455. LDFLAGS_GNUHASH:=$(call check_ld,--hash-style=gnu)
  456. ifeq ($(LDFLAGS_GNUHASH),)
  457. $(error Your binutils don't support --hash-style option, while you want to use it)
  458. else
  459. LDFLAGS_NOSTRIP += -Wl,$(LDFLAGS_GNUHASH)
  460. endif
  461. endif
  462. LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
  463. ifeq ($(DODEBUG),y)
  464. CFLAGS += -O0 -g3
  465. else
  466. CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
  467. endif
  468. ifeq ($(DOSTRIP),y)
  469. LDFLAGS += -Wl,-s
  470. else
  471. STRIPTOOL := true -Stripping_disabled
  472. endif
  473. ifeq ($(DOMULTI),y)
  474. # we try to compile all sources at once into an object (IMA), but
  475. # gcc-3.3.x does not support it
  476. # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
  477. # gcc-4.0.x supports it, supports the --combine flag, but does not need it
  478. # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
  479. ifeq ($(GCC_MAJOR_VER),3)
  480. DOMULTI:=n
  481. else
  482. CFLAGS+=$(call check_gcc,--combine,)
  483. endif
  484. else
  485. DOMULTI:=n
  486. endif
  487. ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
  488. LDFLAGS += $(subst ",, $(UCLIBC_EXTRA_LDFLAGS))
  489. endif
  490. ifeq ($(UCLIBC_HAS_THREADS),y)
  491. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  492. PTNAME := nptl
  493. else
  494. ifeq ($(LINUXTHREADS_OLD),y)
  495. PTNAME := linuxthreads.old
  496. else
  497. PTNAME := linuxthreads
  498. endif
  499. endif
  500. PTDIR := $(top_builddir)libpthread/$(PTNAME)
  501. # set up system dependencies include dirs (NOTE: order matters!)
  502. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  503. PTINC:= -I$(PTDIR) \
  504. -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  505. -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  506. -I$(PTDIR)/sysdeps/unix/sysv/linux \
  507. -I$(PTDIR)/sysdeps/pthread \
  508. -I$(PTDIR)/sysdeps/pthread/bits \
  509. -I$(PTDIR)/sysdeps/generic \
  510. -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \
  511. -I$(top_srcdir)ldso/include
  512. #
  513. # Test for TLS if NPTL support was selected.
  514. #
  515. GCC_HAS_TLS=$(shell \
  516. echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
  517. ifneq ($(GCC_HAS_TLS),)
  518. gcc_tls_test_fail:
  519. @echo "####";
  520. @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
  521. @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
  522. @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
  523. @echo "#### about this problem.";
  524. @echo "####";
  525. @echo "#### Exiting...";
  526. @echo "####";
  527. @exit 1;
  528. endif
  529. else
  530. PTINC := \
  531. -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  532. -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  533. -I$(PTDIR)/sysdeps/unix/sysv/linux \
  534. -I$(PTDIR)/sysdeps/pthread \
  535. -I$(PTDIR) \
  536. -I$(top_builddir)libpthread
  537. endif
  538. CFLAGS+=$(PTINC)
  539. else
  540. PTNAME :=
  541. PTINC :=
  542. endif
  543. CFLAGS += -I$(KERNEL_HEADERS)
  544. #CFLAGS += -iwithprefix include-fixed -iwithprefix include
  545. CC_IPREFIX:=$(shell $(CC) --print-file-name=include)
  546. CFLAGS += -I$(dir $(CC_IPREFIX))/include-fixed -I$(CC_IPREFIX)
  547. ifneq ($(DOASSERTS),y)
  548. CFLAGS+=-DNDEBUG
  549. endif
  550. ifeq ($(SYMBOL_PREFIX),_)
  551. CFLAGS+=-D__UCLIBC_UNDERSCORES__
  552. endif
  553. # Keep the check_as from being needlessly executed
  554. ifndef ASFLAGS_NOEXEC
  555. ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
  556. export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
  557. else
  558. export ASFLAGS_NOEXEC :=
  559. endif
  560. endif
  561. ASFLAGS = $(ASFLAGS_NOEXEC)
  562. LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
  563. LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
  564. LIBGCC_DIR:=$(dir $(LIBGCC))
  565. # moved from libpthread/linuxthreads
  566. ifeq ($(UCLIBC_CTOR_DTOR),y)
  567. SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
  568. SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
  569. endif
  570. LOCAL_INSTALL_PATH := install_dir