Rules.mak 27 KB

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