Rules.mak 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  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. clean_targets := clean realclean distclean \
  26. objclean-y headers_clean-y CLEAN_utils
  27. noconfig_targets := menuconfig config nconfig \
  28. oldaskconfig silentoldconfig oldconfig allnoconfig allyesconfig \
  29. alldefconfig randconfig defconfig savedefconfig listnewconfig \
  30. olddefconfig \
  31. xconfig gconfig update-po-config mconf qconf gconf nconf conf \
  32. release dist tags help
  33. #-----------------------------------------------------------
  34. # If you are running a cross compiler, you will want to set
  35. # 'CROSS_COMPILE' to something more interesting ... Target
  36. # architecture is determined by asking the CC compiler what
  37. # arch it compiles things for, so unless your compiler is
  38. # broken, you should not need to specify TARGET_ARCH.
  39. #
  40. # Most people will set this stuff on the command line, i.e.
  41. # make CROSS_COMPILE=arm-linux-
  42. # will build uClibc for 'arm'.
  43. # CROSS is still supported for backward compatibily only
  44. CROSS_COMPILE ?= $(CROSS)
  45. CC = $(CROSS_COMPILE)gcc
  46. AR = $(CROSS_COMPILE)ar
  47. LD = $(CROSS_COMPILE)ld
  48. NM = $(CROSS_COMPILE)nm
  49. OBJDUMP = $(CROSS_COMPILE)objdump
  50. STRIPTOOL = $(CROSS_COMPILE)strip
  51. INSTALL = install
  52. LN = ln
  53. RM = rm -f
  54. TAR = tar
  55. SED = sed
  56. AWK = awk
  57. STRIP_FLAGS ?= -x -R .note -R .comment
  58. ## unused? if yes, remove after 0.9.31
  59. ## UNIFDEF := $(top_builddir)extra/scripts/unifdef
  60. # Select the compiler needed to build binaries for your development system
  61. HOSTCC = gcc
  62. BUILD_CFLAGS = -Os
  63. #---------------------------------------------------------
  64. # Nothing beyond this point should ever be touched by mere
  65. # mortals. Unless you hang out with the gods, you should
  66. # probably leave all this stuff alone.
  67. # strip quotes
  68. qstrip = $(strip $(subst ",,$(1)))
  69. #"))
  70. # kconfig stuff
  71. KCONFIG_CONFIG ?= $(top_builddir).config
  72. KCONFIG_CONFIG := $(abspath $(KCONFIG_CONFIG))
  73. export KCONFIG_CONFIG
  74. KCONFIG_AUTOCONFIG := $(dir $(KCONFIG_CONFIG))include/config/auto.conf
  75. export KCONFIG_AUTOCONFIG
  76. KCONFIG_TRISTATE := $(dir $(KCONFIG_CONFIG))include/config/tristate.conf
  77. export KCONFIG_TRISTATE
  78. srctree := $(abspath $(top_srcdir))
  79. export srctree
  80. KCONFIG_AUTOHEADER := $(dir $(KCONFIG_CONFIG))include/generated/autoconf.h
  81. export KCONFIG_AUTOHEADER
  82. Kconfig := $(abspath $(top_srcdir)extra/Configs/Config.in)
  83. # Pull in the user's uClibc configuration
  84. ifeq ($(filter $(noconfig_targets) clean CLEAN_%,$(MAKECMDGOALS)),)
  85. -include $(KCONFIG_CONFIG)
  86. endif
  87. TARGET_ARCH:=$(call qstrip,$(TARGET_ARCH))
  88. ifeq ($(TARGET_ARCH),)
  89. ARCH ?= $(shell uname -m | $(SED) -e s/i.86/i386/ \
  90. -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
  91. -e s/arm.*/arm/ -e s/sa110/arm/ \
  92. -e s/sh.*/sh/ \
  93. -e s/s390x/s390/ -e s/parisc.*/hppa/ \
  94. -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
  95. -e s/xtensa.*/xtensa/ )
  96. else
  97. ARCH = $(TARGET_ARCH)
  98. endif
  99. export ARCH
  100. # Make certain these contain a final "/", but no "//"s.
  101. scrub_path = $(strip $(subst //,/, $(subst ,/, $(call qstrip,$(1)))))
  102. TARGET_SUBARCH := $(call qstrip,$(TARGET_SUBARCH))
  103. RUNTIME_PREFIX := $(call scrub_path,$(RUNTIME_PREFIX))
  104. DEVEL_PREFIX := $(call scrub_path,$(DEVEL_PREFIX))
  105. MULTILIB_DIR := $(call scrub_path,$(MULTILIB_DIR))
  106. KERNEL_HEADERS := $(call scrub_path,$(KERNEL_HEADERS))
  107. export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
  108. # Now config hard core
  109. MAJOR_VERSION := 0
  110. MINOR_VERSION := 9
  111. SUBLEVEL := 34
  112. EXTRAVERSION :=-git
  113. VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
  114. ABI_VERSION := $(MAJOR_VERSION)
  115. ifneq ($(EXTRAVERSION),)
  116. VERSION := $(VERSION)$(EXTRAVERSION)
  117. endif
  118. # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
  119. LC_ALL := C
  120. export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION ABI_VERSION LC_ALL
  121. LIBC := libc
  122. SHARED_LIBNAME := $(LIBC).so.$(ABI_VERSION)
  123. UBACKTRACE_DSO := libubacktrace.so.$(ABI_VERSION)
  124. UCLIBC_LDSO_NAME := ld-uClibc
  125. ARCH_NATIVE_BIT := 32
  126. ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 powerpc64 s390x sparc64 x86_64 ),)
  127. UCLIBC_LDSO_NAME := ld64-uClibc
  128. ARCH_NATIVE_BIT := 64
  129. else
  130. ifeq ($(CONFIG_MIPS_N64_ABI),y)
  131. UCLIBC_LDSO_NAME := ld64-uClibc
  132. ARCH_NATIVE_BIT := 64
  133. endif
  134. endif
  135. UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(ABI_VERSION)
  136. NONSHARED_LIBNAME := uclibc_nonshared.a
  137. libc := $(top_builddir)lib/$(SHARED_LIBNAME)
  138. libc.depend := $(top_builddir)lib/$(SHARED_LIBNAME:.$(ABI_VERSION)=)
  139. ifneq ($(ARCH_HAS_NO_SHARED),y)
  140. libdl.depend := $(top_builddir)lib/libdl.so
  141. endif
  142. ifneq ($(HAS_NO_THREADS),y)
  143. libpthread.depend := $(top_builddir)lib/libpthread.so
  144. endif
  145. interp := $(top_builddir)lib/interp.os
  146. ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
  147. headers_dep := $(top_builddir)include/bits/sysnum.h
  148. sub_headers := $(headers_dep)
  149. #LIBS :=$(interp) -L$(top_builddir)lib -lc
  150. LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(ABI_VERSION)=)
  151. # Make sure DESTDIR and PREFIX can be used to install
  152. # PREFIX is a uClibcism while DESTDIR is a common GNUism
  153. ifndef PREFIX
  154. PREFIX = $(DESTDIR)
  155. endif
  156. ifneq ($(HAVE_SHARED),y)
  157. libc :=
  158. interp :=
  159. ldso :=
  160. endif
  161. comma:=,
  162. space:= #
  163. ifeq ($(CROSS_COMPILE),)
  164. CROSS_COMPILE=$(call qstrip,$(CROSS_COMPILER_PREFIX))
  165. endif
  166. # A nifty macro to make testing gcc features easier
  167. check_gcc=$(shell \
  168. if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
  169. then echo "$(1)"; else echo "$(2)"; fi)
  170. check_as=$(shell \
  171. if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
  172. then echo "-Wa,$(1)"; fi)
  173. check_ld=$(shell \
  174. if $(LD) $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1; \
  175. then echo "$(1)"; fi)
  176. # Use variable indirection here so that we can have variable
  177. # names with fun chars in them like equal signs
  178. define check-tool-var
  179. ifeq ($(filter $(clean_targets) CLEAN_%,$(MAKECMDGOALS)),)
  180. _v = $(2)_$(3)
  181. ifndef $$(_v)
  182. $$(_v) := $$(call $(1),$(subst %, ,$(3)))
  183. export $$(_v)
  184. endif
  185. endif
  186. endef
  187. # Usage: check-gcc-var,<flag>
  188. # Check the C compiler to see if it supports <flag>.
  189. # Export the variable CFLAG_<flag> if it does.
  190. define check-gcc-var
  191. $(call check-tool-var,check_gcc,CFLAG,$(1))
  192. endef
  193. # Usage: check-as-var,<flag>
  194. # Check the assembler to see if it supports <flag>. Export the
  195. # variable ASFLAG_<flag> if it does (for invoking the assembler),
  196. # as well CFLAG_-Wa<flag> (for invoking the compiler driver).
  197. define check-as-var
  198. $(call check-tool-var,check_as,ASFLAG,$(1))
  199. _v = CFLAG_-Wa$(1)
  200. export $$(_v) = $$(if $$(ASFLAG_$(1)),-Wa$$(comma)$$(ASFLAG_$(1)))
  201. endef
  202. # Usage: check-ld-var,<flag>
  203. # Check the linker to see if it supports <flag>. Export the
  204. # variable LDFLAG_<flag> if it does (for invoking the linker),
  205. # as well CFLAG_-Wl<flag> (for invoking the compiler driver).
  206. define check-ld-var
  207. $(call check-tool-var,check_ld,LDFLAG,$(1))
  208. _v = CFLAG_-Wl$(1)
  209. export $$(_v) = $$(if $$(LDFLAG_$(1)),-Wl$$(comma)$$(LDFLAG_$(1)))
  210. endef
  211. # Usage: cache-output-var,<variable>,<shell command>
  212. # Execute <shell command> and cache the output in <variable>.
  213. define cache-output-var
  214. ifndef $(1)
  215. $(1) := $$(shell $(2))
  216. export $(1)
  217. endif
  218. endef
  219. ARFLAGS:=cr
  220. # Flags in OPTIMIZATION are used only for non-debug builds
  221. OPTIMIZATION:=
  222. # Use '-Os' optimization if available, else use -O2, allow Config to override
  223. $(eval $(call check-gcc-var,-Os))
  224. ifneq ($(CFLAG_-Os),)
  225. OPTIMIZATION += $(CFLAG_-Os)
  226. else
  227. $(eval $(call check-gcc-var,-O2))
  228. OPTIMIZATION += $(CFLAG_-O2)
  229. endif
  230. # Use the gcc 3.4 -funit-at-a-time optimization when available
  231. $(eval $(call check-gcc-var,-funit-at-a-time))
  232. OPTIMIZATION += $(CFLAG_-funit-at-a-time)
  233. # shrinks code by about 0.1%
  234. $(eval $(call check-gcc-var,-fmerge-all-constants))
  235. $(eval $(call check-gcc-var,-fstrict-aliasing))
  236. OPTIMIZATION += $(CFLAG_-fmerge-all-constants) $(CFLAG_-fstrict-aliasing)
  237. $(eval $(call cache-output-var,GCC_VER,$(CC) -dumpversion))
  238. GCC_VER := $(subst ., ,$(GCC_VER))
  239. GCC_MAJOR_VER ?= $(word 1,$(GCC_VER))
  240. #GCC_MINOR_VER ?= $(word 2,$(GCC_VER))
  241. ifeq ($(GCC_MAJOR_VER),4)
  242. # shrinks code, results are from 4.0.2
  243. # 0.36%
  244. $(eval $(call check-gcc-var,-fno-tree-loop-optimize))
  245. OPTIMIZATION += $(CFLAG_-fno-tree-loop-optimize)
  246. # 0.34%
  247. $(eval $(call check-gcc-var,-fno-tree-dominator-opts))
  248. OPTIMIZATION += $(CFLAG_-fno-tree-dominator-opts)
  249. # 0.1%
  250. $(eval $(call check-gcc-var,-fno-strength-reduce))
  251. OPTIMIZATION += $(CFLAG_-fno-strength-reduce)
  252. endif
  253. # CPU_CFLAGS-y contain options which are not warnings,
  254. # not include or library paths, and not optimizations.
  255. # Why -funsigned-char: I hunted a bug related to incorrect
  256. # sign extension of 'char' type for 10 hours straight. Not fun.
  257. CPU_CFLAGS-y := -funsigned-char -fno-builtin
  258. $(eval $(call check-gcc-var,-fno-asm))
  259. CPU_CFLAGS-y += $(CFLAG_-fno-asm)
  260. LDADD_LIBFLOAT=
  261. ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
  262. # If -msoft-float isn't supported, we want an error anyway.
  263. # Hmm... might need to revisit this for arm since it has 2 different
  264. # soft float encodings.
  265. ifneq ($(TARGET_ARCH),nios)
  266. ifneq ($(TARGET_ARCH),nios2)
  267. ifneq ($(TARGET_ARCH),sh)
  268. ifneq ($(TARGET_ARCH),c6x)
  269. CPU_CFLAGS-y += -msoft-float
  270. endif
  271. endif
  272. endif
  273. endif
  274. ifeq ($(TARGET_ARCH),arm)
  275. # No longer needed with current toolchains, but leave it here for now.
  276. # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
  277. # LDADD_LIBFLOAT=-lfloat
  278. endif
  279. endif
  280. $(eval $(call check-gcc-var,-std=gnu99))
  281. CPU_CFLAGS-y += $(CFLAG_-std=gnu99)
  282. CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
  283. CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
  284. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN) += -Wl,-EL
  285. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN) += -Wl,-EB
  286. PICFLAG-y := -fPIC
  287. PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
  288. PICFLAG-$(UCLIBC_FORMAT_DSBT_ELF) := -mdsbt -fpic
  289. PICFLAG := $(PICFLAG-y)
  290. PIEFLAG_NAME:=-fPIE
  291. # Some nice CPU specific optimizations
  292. ifeq ($(TARGET_ARCH),i386)
  293. $(eval $(call check-gcc-var,-fomit-frame-pointer))
  294. OPTIMIZATION += $(CFLAG_-fomit-frame-pointer)
  295. ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586),y)
  296. # TODO: Change this to a gcc version check. This bug
  297. # should be fixed with at least gcc-4.3.
  298. # Non-SSE capable processor.
  299. # NB: this may make SSE insns segfault!
  300. # -O1 -march=pentium3, -Os -msse etc are known to be affected.
  301. # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
  302. # -m32 is needed if host is 64-bit
  303. OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
  304. else
  305. $(eval $(call check-gcc-var,-mpreferred-stack-boundary=4))
  306. OPTIMIZATION += $(CFLAG_-mpreferred-stack-boundary=4)
  307. endif
  308. # Choice of alignment (please document why!)
  309. # -falign-labels: in-line labels
  310. # (reachable by normal code flow, aligning will insert nops
  311. # which will be executed - may even make things slower)
  312. # -falign-jumps: reachable only by a jump
  313. # Generic: no alignment at all (smallest code)
  314. GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
  315. OPTIMIZATION+=$(GCC_FALIGN)
  316. # Putting each function and data object into its own section
  317. # allows for kbytes of less text if users link against static uclibc
  318. # using ld --gc-sections.
  319. # ld 2.18 can't do that (yet?) for shared libraries, so we itself
  320. # do not use --gc-sections at shared lib link time.
  321. # However, in combination with sections being sorted by alignment
  322. # it does result in much reduced padding:
  323. # text data bss dec hex
  324. # 235319 1472 5992 242783 3b45f old.so
  325. # 234104 1472 5980 241556 3af94 new.so
  326. # Without -ffunction-sections, all functions will get aligned
  327. # to 4 byte boundary by as/ld. This is arguably a bug in as.
  328. # It specifies 4 byte align for .text even if not told to do so:
  329. # Idx Name Size VMA LMA File off Algn
  330. # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
  331. CPU_CFLAGS-y += $(CFLAG_-ffunction-sections) $(CFLAG_-fdata-sections)
  332. CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-common)
  333. $(eval $(call check-ld-var,--sort-section=alignment))
  334. CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-section=alignment)
  335. CPU_LDFLAGS-y+=-m32
  336. CPU_CFLAGS-y+=-m32
  337. endif
  338. ifeq ($(TARGET_ARCH),sparc)
  339. CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
  340. CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
  341. CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
  342. CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
  343. endif
  344. ifeq ($(TARGET_ARCH),arm)
  345. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  346. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  347. CPU_CFLAGS-$(COMPILE_IN_THUMB_MODE)+=-mthumb
  348. endif
  349. ifeq ($(TARGET_ARCH),metag)
  350. SYMBOL_PREFIX=_
  351. CPU_CFLAGS-$(CONFIG_META_1_2)+=
  352. CPU_CFLAGS-$(CONFIG_META_2_1)+=-Wa,-mcpu=metac21
  353. endif
  354. ifeq ($(TARGET_ARCH),mips)
  355. OPTIMIZATION+=-mno-split-addresses
  356. CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
  357. CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
  358. CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
  359. CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
  360. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
  361. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32R2)+=-march=mips32r2 -mtune=mips32r2
  362. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
  363. ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
  364. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
  365. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
  366. endif
  367. ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
  368. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
  369. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
  370. endif
  371. CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
  372. CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
  373. CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
  374. endif
  375. ifeq ($(TARGET_ARCH),nios)
  376. OPTIMIZATION+=-funaligned-struct-hack
  377. CPU_LDFLAGS-y+=-Wl,-m32
  378. CPU_CFLAGS-y+=-Wl,-m32
  379. endif
  380. ifeq ($(TARGET_ARCH),sh)
  381. $(eval $(call check-gcc-var,-mprefergot))
  382. OPTIMIZATION += $(CFLAG_-mprefergot)
  383. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
  384. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
  385. CPU_CFLAGS-$(CONFIG_SH2)+=-m2
  386. CPU_CFLAGS-$(CONFIG_SH3)+=-m3
  387. ifeq ($(UCLIBC_HAS_FPU),y)
  388. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
  389. CPU_CFLAGS-$(CONFIG_SH4)+=-m4
  390. else
  391. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
  392. CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
  393. endif
  394. endif
  395. ifeq ($(TARGET_ARCH),sh64)
  396. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
  397. CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
  398. CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
  399. endif
  400. ifeq ($(TARGET_ARCH),h8300)
  401. SYMBOL_PREFIX=_
  402. CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
  403. CPU_LDFLAGS-$(CONFIG_H8S) += -Wl,-ms8300s
  404. CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
  405. CPU_CFLAGS-$(CONFIG_H8S) += -ms -mint32
  406. endif
  407. ifeq ($(TARGET_ARCH),i960)
  408. OPTIMIZATION+=-mh -mint32 #-fsigned-char
  409. endif
  410. ifeq ($(TARGET_ARCH),e1)
  411. OPTIMIZATION+=-mgnu-param
  412. endif
  413. ifeq ($(TARGET_ARCH),cris)
  414. CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
  415. CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
  416. CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
  417. PICFLAG:=-fpic
  418. PIEFLAG_NAME:=-fpie
  419. endif
  420. ifeq ($(TARGET_ARCH),m68k)
  421. # -fPIC is only supported for 68020 and above. It is not supported
  422. # for 68000, 68010, or Coldfire.
  423. PICFLAG:=-fpic
  424. PIEFLAG_NAME:=-fpie
  425. endif
  426. ifeq ($(TARGET_ARCH),powerpc)
  427. # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
  428. # enough. Therefore use -fpic which will reduce code size and generates
  429. # faster code.
  430. PICFLAG:=-fpic
  431. PIEFLAG_NAME:=-fpie
  432. 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)
  433. CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
  434. CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
  435. endif
  436. ifeq ($(TARGET_ARCH),bfin)
  437. SYMBOL_PREFIX=_
  438. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  439. CPU_CFLAGS-y:=-mfdpic
  440. CPU_LDFLAGS-y += -Wl,-melf32bfinfd
  441. PICFLAG:=-fpic
  442. PIEFLAG_NAME:=-fpie
  443. endif
  444. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  445. PICFLAG := -mleaf-id-shared-library
  446. endif
  447. endif
  448. ifeq ($(TARGET_ARCH),frv)
  449. CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
  450. # Using -pie causes the program to have an interpreter, which is
  451. # forbidden, so we must make do with -shared. Unfortunately,
  452. # -shared by itself would get us global function descriptors
  453. # and calls through PLTs, dynamic resolution of symbols, etc,
  454. # which would break as well, but -Bsymbolic comes to the rescue.
  455. export LDPIEFLAG:=-shared -Wl,-Bsymbolic
  456. UCLIBC_LDSO=ld.so.1
  457. endif
  458. ifeq ($(strip $(TARGET_ARCH)),avr32)
  459. CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap
  460. CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax
  461. CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
  462. endif
  463. ifeq ($(TARGET_ARCH),i960)
  464. SYMBOL_PREFIX=_
  465. endif
  466. ifeq ($(TARGET_ARCH),v850)
  467. SYMBOL_PREFIX=_
  468. endif
  469. ifeq ($(TARGET_ARCH),c6x)
  470. PIEFLAG:=
  471. CPU_CFLAGS-$(CONFIG_TMS320C64X) += -march=c64x
  472. CPU_CFLAGS-$(CONFIG_TMS320C64XPLUS) += -march=c64x+
  473. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  474. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  475. CPU_LDFLAGS-y += $(CPU_CFLAGS)
  476. endif
  477. $(eval $(call check-gcc-var,$(PIEFLAG_NAME)))
  478. PIEFLAG := $(CFLAG_$(PIEFLAG_NAME))
  479. ifeq ($(PIEFLAG),)
  480. PIEFLAG := $(PICFLAG)
  481. endif
  482. # We need to keep track of both the CC PIE flag (above) as
  483. # well as the LD PIE flag (below) because we can't rely on
  484. # gcc passing -pie if we used -fPIE. We need to directly use -pie
  485. # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
  486. $(eval $(call cache-output-var,LDPIEFLAG,$(LD) --help 2>/dev/null | grep -q -- -pie && echo "-pie"))
  487. # Check for --as-needed support in linker
  488. ifndef LD_FLAG_ASNEEDED
  489. _LD_FLAG_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -- --as-needed)
  490. ifneq ($(_LD_FLAG_ASNEEDED),)
  491. export LD_FLAG_ASNEEDED:=--as-needed
  492. endif
  493. endif
  494. ifndef LD_FLAG_NO_ASNEEDED
  495. ifdef LD_FLAG_ASNEEDED
  496. export LD_FLAG_NO_ASNEEDED:=--no-as-needed
  497. endif
  498. endif
  499. ifndef CC_FLAG_ASNEEDED
  500. ifdef LD_FLAG_ASNEEDED
  501. export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED)
  502. endif
  503. endif
  504. ifndef CC_FLAG_NO_ASNEEDED
  505. ifdef LD_FLAG_NO_ASNEEDED
  506. export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED)
  507. endif
  508. endif
  509. link.asneeded = $(if $(findstring yy,$(CC_FLAG_ASNEEDED)$(CC_FLAG_NO_ASNEEDED)),$(CC_FLAG_ASNEEDED) $(1) $(CC_FLAG_NO_ASNEEDED))
  510. # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
  511. ifndef ASNEEDED
  512. export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
  513. # Only used in installed libc.so linker script
  514. ifeq ($(UCLIBC_HAS_BACKTRACE),y)
  515. ifeq ($(HARDWIRED_ABSPATH),y)
  516. UBACKTRACE_FULL_NAME := $(subst //,/,$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(UBACKTRACE_DSO))
  517. else
  518. UBACKTRACE_FULL_NAME := $(UBACKTRACE_DSO)
  519. endif
  520. export UBACKTRACE_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && \
  521. echo "GROUP ( AS_NEEDED ( $(UBACKTRACE_FULL_NAME) ) )" || \
  522. echo "GROUP ( $(UBACKTRACE_FULL_NAME) )")
  523. else
  524. export UBACKTRACE_ASNEEDED:=""
  525. endif
  526. endif
  527. # Add a bunch of extra pedantic annoyingly strict checks
  528. WARNING_FLAGS = -Wstrict-prototypes -Wstrict-aliasing
  529. ifeq ($(EXTRA_WARNINGS),y)
  530. WARNING_FLAGS += \
  531. -Wformat=2 \
  532. -Wmissing-noreturn \
  533. -Wmissing-format-attribute \
  534. -Wmissing-prototypes \
  535. -Wmissing-declarations \
  536. -Wnested-externs \
  537. -Wnonnull \
  538. -Wold-style-declaration \
  539. -Wold-style-definition \
  540. -Wshadow \
  541. -Wundef
  542. # Works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
  543. WARNING_FLAGS-gcc-4 += -Wdeclaration-after-statement
  544. endif
  545. WARNING_FLAGS += $(WARNING_FLAGS-gcc-$(GCC_MAJOR_VER))
  546. $(foreach w,$(WARNING_FLAGS),$(eval $(call check-gcc-var,$(w))))
  547. XWARNINGS = $(call qstrip,$(WARNINGS)) $(foreach w,$(WARNING_FLAGS),$(CFLAG_$(w)))
  548. CPU_CFLAGS=$(call qstrip,$(CPU_CFLAGS-y))
  549. # Save the tested flag in a single variable and force it to be
  550. # evaluated just once. Then use that computed value.
  551. $(eval $(call check-gcc-var,-fno-stack-protector))
  552. SSP_DISABLE_FLAGS ?= $(CFLAG_-fno-stack-protector)
  553. ifeq ($(UCLIBC_BUILD_SSP),y)
  554. $(eval $(call check-gcc-var,-fno-stack-protector-all))
  555. $(eval $(call check-gcc-var,-fstack-protector))
  556. $(eval $(call check-gcc-var,-fstack-protector-all))
  557. SSP_CFLAGS := $(CFLAG_-fno-stack-protector-all)
  558. SSP_CFLAGS += $(CFLAG_-fstack-protector)
  559. SSP_ALL_CFLAGS ?= $(CFLAG_-fstack-protector-all)
  560. else
  561. SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
  562. endif
  563. $(eval $(call check-gcc-var,-nostdlib))
  564. # Collect all CFLAGS components
  565. CFLAGS := $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
  566. -nostdinc -I$(top_builddir)include \
  567. -I$(top_srcdir)include -include libc-symbols.h \
  568. -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH) \
  569. -I$(top_srcdir)libc/sysdeps/linux \
  570. -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \
  571. -I$(top_srcdir)ldso/include -I.
  572. ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
  573. CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS))
  574. endif
  575. # We need this to be checked within libc-symbols.h
  576. ifneq ($(HAVE_SHARED),y)
  577. CFLAGS += -DSTATIC
  578. endif
  579. $(eval $(call check-ld-var,--warn-once))
  580. $(eval $(call check-ld-var,--sort-common))
  581. $(eval $(call check-ld-var,--discard-all))
  582. LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -shared \
  583. -Wl,--warn-common $(CFLAG_-Wl--warn-once) -Wl,-z,combreloc
  584. # binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
  585. #$(eval $(call check-ld-var,--gc-sections))
  586. #LDFLAGS_NOSTRIP += $(LDFLAG_--gc-sections)
  587. $(eval $(call check-gcc-var,-fdata-sections))
  588. $(eval $(call check-gcc-var,-ffunction-sections))
  589. ifeq ($(UCLIBC_BUILD_RELRO),y)
  590. LDFLAGS_NOSTRIP+=-Wl,-z,relro
  591. endif
  592. ifeq ($(UCLIBC_BUILD_NOW),y)
  593. LDFLAGS_NOSTRIP+=-Wl,-z,now
  594. endif
  595. ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
  596. # Be sure that binutils support it
  597. $(eval $(call check-ld-var,--hash-style=gnu))
  598. ifeq ($(LDFLAG_--hash-style=gnu),)
  599. ifneq ($(filter-out $(clean_targets) CLEAN_% install_headers headers-y,$(MAKECMDGOALS)),)
  600. $(error Your binutils do not support --hash-style option, while you want to use it)
  601. endif
  602. else
  603. LDFLAGS_NOSTRIP += $(CFLAG_-Wl--hash-style=gnu)
  604. endif
  605. endif
  606. LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
  607. ifeq ($(DODEBUG),y)
  608. CFLAGS += -O0 -g3 -DDEBUG
  609. else
  610. CFLAGS += $(OPTIMIZATION)
  611. endif
  612. ifeq ($(DOSTRIP),y)
  613. LDFLAGS += -Wl,-s
  614. else
  615. STRIPTOOL := true -Stripping_disabled
  616. endif
  617. ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
  618. CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS))
  619. endif
  620. ifeq ($(DOMULTI),y)
  621. # we try to compile all sources at once into an object (IMA), but
  622. # gcc-3.3.x does not support it
  623. # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
  624. # gcc-4.0.x supports it, supports the --combine flag, but does not need it
  625. # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
  626. ifeq ($(GCC_MAJOR_VER),3)
  627. DOMULTI:=n
  628. else
  629. $(eval $(call check-gcc-var,--combine))
  630. CFLAGS += $(CFLAG_--combine)
  631. endif
  632. else
  633. DOMULTI:=n
  634. endif
  635. ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
  636. LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS))
  637. endif
  638. ifeq ($(UCLIBC_HAS_THREADS),y)
  639. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  640. PTNAME := nptl
  641. CFLAGS += -DHAVE_FORCED_UNWIND
  642. else
  643. ifeq ($(LINUXTHREADS_OLD),y)
  644. PTNAME := linuxthreads.old
  645. else
  646. PTNAME := linuxthreads
  647. endif
  648. endif
  649. PTDIR := libpthread/$(PTNAME)
  650. # set up system dependencies include dirs (NOTE: order matters!)
  651. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  652. PTINC:= -I$(top_builddir)$(PTDIR) \
  653. -I$(top_srcdir)$(PTDIR) \
  654. $(if $(TARGET_SUBARCH),-I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/$(TARGET_SUBARCH)) \
  655. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  656. -I$(top_builddir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  657. -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  658. -I$(top_builddir)$(PTDIR)/sysdeps/unix/sysv/linux \
  659. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
  660. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
  661. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread/bits \
  662. -I$(top_srcdir)$(PTDIR)/sysdeps/generic
  663. #
  664. # Test for TLS if NPTL support was selected.
  665. #
  666. GCC_HAS_TLS=$(shell \
  667. echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
  668. ifneq ($(GCC_HAS_TLS),)
  669. gcc_tls_test_fail:
  670. @echo "####";
  671. @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
  672. @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
  673. @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
  674. @echo "#### about this problem.";
  675. @echo "####";
  676. @echo "#### Exiting...";
  677. @echo "####";
  678. @exit 1;
  679. endif
  680. else
  681. PTINC := \
  682. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  683. -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  684. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
  685. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
  686. -I$(top_srcdir)$(PTDIR) \
  687. -I$(top_srcdir)libpthread
  688. endif
  689. CFLAGS+=$(PTINC)
  690. else
  691. PTNAME :=
  692. PTINC :=
  693. endif
  694. CFLAGS += -I$(top_srcdir)libc/sysdeps/linux/common
  695. #CFLAGS += -iwithprefix include-fixed -iwithprefix include
  696. $(eval $(call cache-output-var,CC_IPREFIX,$(CC) -print-file-name=include))
  697. CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
  698. CFLAGS += $(CC_INC)
  699. CFLAGS += -I$(KERNEL_HEADERS)
  700. ifneq ($(DOASSERTS),y)
  701. CFLAGS+=-DNDEBUG
  702. endif
  703. ifeq ($(SYMBOL_PREFIX),_)
  704. CFLAGS+=-D__UCLIBC_UNDERSCORES__
  705. endif
  706. # Keep the check_as from being needlessly executed
  707. ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
  708. $(eval $(call check-as-var,--noexecstack))
  709. endif
  710. ASFLAGS = $(ASFLAG_--noexecstack)
  711. LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
  712. $(eval $(call cache-output-var,LIBGCC,$(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name))
  713. $(eval $(call cache-output-var,LIBGCC_EH,$(CC) $(LIBGCC_CFLAGS) -print-file-name=libgcc_eh.a))
  714. # with -O0 we (e.g. lockf) might end up with references to
  715. # _Unwind_Resume, so pull in gcc_eh in this case..
  716. LIBGCC_DIR:=$(dir $(LIBGCC))
  717. LIBGCC += $(if $(DODEBUG),$(LIBGCC_EH))
  718. # moved from libpthread/linuxthreads
  719. ifeq ($(UCLIBC_CTOR_DTOR),y)
  720. SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
  721. SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
  722. endif
  723. LOCAL_INSTALL_PATH := $(if $(O),$(O)/)install_dir
  724. PTHREAD_GENERATE_MANGLE ?= -n "s/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*\$$/\#define \1 \2/p"