Rules.mak 27 KB

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