Rules.mak 23 KB

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