Rules.mak 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. # Rules.mak for uClibc-ng
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. # Copyright (C) 2015-2024 Waldemar Brodkorb <wbx@uclibc-ng.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. # make nano-doc
  9. # FOO = bar -- recursively expanded variable. Value is remebered verbatim.
  10. # If it contains references to other variables, these references
  11. # are expanded whenever this variable is _substituted_.
  12. # FOO := bar -- simply expanded variable. Right hand is expanded when
  13. # the variable is _defined_. Therefore faster than =.
  14. # FOO ?= bar -- set a value only if it is not already set
  15. # (behaves as =, not :=).
  16. # FOO += bar -- append; if FOO is not defined, acts like = (not :=).
  17. # check for proper make version
  18. ifneq ($(findstring x3.7,x$(MAKE_VERSION)),)
  19. $(error Your make is too old $(MAKE_VERSION). Go get at least 3.80)
  20. endif
  21. #-----------------------------------------------------------
  22. # This file contains rules which are shared between multiple
  23. # Makefiles. All normal configuration options live in the
  24. # file named ".config". Don't mess with this file unless
  25. # you know what you are doing.
  26. clean_targets := clean realclean distclean \
  27. objclean-y headers_clean-y CLEAN_utils
  28. noconfig_targets := menuconfig config nconfig \
  29. oldaskconfig silentoldconfig oldconfig allnoconfig allyesconfig \
  30. alldefconfig randconfig defconfig savedefconfig listnewconfig \
  31. olddefconfig \
  32. xconfig gconfig update-po-config mconf qconf gconf nconf conf \
  33. release dist tags help
  34. #-----------------------------------------------------------
  35. # If you are running a cross compiler, you will want to set
  36. # 'CROSS_COMPILE' to something more interesting ... Target
  37. # architecture is determined by asking the CC compiler what
  38. # arch it compiles things for, so unless your compiler is
  39. # broken, you should not need to specify TARGET_ARCH.
  40. #
  41. # Most people will set this stuff on the command line, i.e.
  42. # make CROSS_COMPILE=arm-linux-
  43. # will build uClibc-ng for 'arm'.
  44. # CROSS is still supported for backward compatibily only
  45. CROSS_COMPILE ?= $(CROSS)
  46. CC = $(CROSS_COMPILE)gcc
  47. AR = $(CROSS_COMPILE)ar
  48. LD = $(CROSS_COMPILE)ld
  49. NM = $(CROSS_COMPILE)nm
  50. OBJDUMP = $(CROSS_COMPILE)objdump
  51. STRIPTOOL = $(CROSS_COMPILE)strip
  52. INSTALL = install
  53. LN = ln
  54. RM = rm -f
  55. TAR = tar
  56. SED = sed
  57. AWK = awk
  58. STRIP_FLAGS ?= -x -R .note -R .comment
  59. # Select the compiler needed to build binaries for your development system
  60. HOSTCC = gcc
  61. BUILD_CFLAGS = -Os
  62. #---------------------------------------------------------
  63. # Nothing beyond this point should ever be touched by mere
  64. # mortals. Unless you hang out with the gods, you should
  65. # probably leave all this stuff alone.
  66. # strip quotes
  67. qstrip = $(strip $(subst ",,$(1)))
  68. #"))
  69. # kconfig stuff
  70. KCONFIG_CONFIG ?= $(top_builddir).config
  71. KCONFIG_CONFIG := $(abspath $(KCONFIG_CONFIG))
  72. export KCONFIG_CONFIG
  73. KCONFIG_AUTOCONFIG := $(dir $(KCONFIG_CONFIG))include/config/auto.conf
  74. export KCONFIG_AUTOCONFIG
  75. KCONFIG_TRISTATE := $(dir $(KCONFIG_CONFIG))include/config/tristate.conf
  76. export KCONFIG_TRISTATE
  77. srctree := $(abspath $(top_srcdir))
  78. export srctree
  79. KCONFIG_AUTOHEADER := $(dir $(KCONFIG_CONFIG))include/generated/autoconf.h
  80. export KCONFIG_AUTOHEADER
  81. Kconfig := $(abspath $(top_srcdir)extra/Configs/Config.in)
  82. # Pull in the user's uClibc-ng configuration
  83. ifeq ($(filter $(noconfig_targets) clean CLEAN_%,$(MAKECMDGOALS)),)
  84. -include $(KCONFIG_CONFIG)
  85. endif
  86. TARGET_ARCH:=$(call qstrip,$(TARGET_ARCH))
  87. ifeq ($(TARGET_ARCH),)
  88. ARCH ?= $(shell uname -m | $(SED) -e s/i.86/i386/ \
  89. -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
  90. -e s/arm.*/arm/ -e s/sa110/arm/ \
  91. -e s/nds32.*/nds32/ \
  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 := 1
  110. MINOR_VERSION := 0
  111. SUBLEVEL := 47
  112. EXTRAVERSION :=
  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. UCLIBC_LDSO_NAME := $(call qstrip,$(TARGET_LDSO_NAME))
  124. ARCH_NATIVE_BIT := $(call qstrip,$(TARGET_ARCH_BITS))
  125. UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(ABI_VERSION)
  126. NONSHARED_LIBNAME := uclibc_nonshared.a
  127. NONSHARED_LIBPTHREAD := libpthread_nonshared.a
  128. libc := $(top_builddir)lib/$(SHARED_LIBNAME)
  129. libc.depend := $(top_builddir)lib/$(SHARED_LIBNAME:.$(ABI_VERSION)=)
  130. interp := $(top_builddir)lib/interp.os
  131. ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
  132. headers_dep := $(top_builddir)include/bits/sysnum.h \
  133. $(top_builddir)include/bits/uClibc_config.h
  134. sub_headers := $(headers_dep)
  135. LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(ABI_VERSION)=)
  136. # Make sure DESTDIR and PREFIX can be used to install
  137. # PREFIX is a uClibcism while DESTDIR is a common GNUism
  138. ifndef PREFIX
  139. PREFIX = $(DESTDIR)
  140. endif
  141. ifneq ($(HAVE_SHARED),y)
  142. libc :=
  143. endif
  144. ifneq ($(HAVE_LDSO),y)
  145. interp :=
  146. ldso :=
  147. endif
  148. comma:=,
  149. space:= #
  150. ifeq ($(CROSS_COMPILE),)
  151. CROSS_COMPILE=$(call qstrip,$(CROSS_COMPILER_PREFIX))
  152. endif
  153. # A nifty macro to make testing gcc features easier
  154. check_gcc=$(shell \
  155. tf="/tmp/cgccucl$$$$.o"; \
  156. if $(CC) $(1) -S -o $$tf -xc /dev/null > /dev/null 2>&1; \
  157. then echo "$(1)"; else echo "$(2)"; fi; rm -f $$tf )
  158. check_as=$(shell \
  159. tf="/tmp/casucl$$$$.o"; \
  160. if $(CC) -Wa,$(1) -Wa,-Z -c -o $$tf -xassembler /dev/null > /dev/null 2>&1; \
  161. then echo "-Wa,$(1)"; fi; rm -f $$tf )
  162. check_ld=$(shell \
  163. tf="/tmp/clducl$$$$.c"; echo "int _start(){return 0;}int main(){return 0;}" >$$tf; \
  164. if $(CC) $(LDFLAG-fuse-ld) $(CFLAG_-Wl--no-warn-mismatch) -Wl,$(1) $(CFLAG_-nostdlib) -o /dev/null $$tf > /dev/null 2>&1; \
  165. then echo "$(1)"; fi; rm -f $$tf )
  166. # Use variable indirection here so that we can have variable
  167. # names with fun chars in them like equal signs
  168. define check-tool-var
  169. ifeq ($(filter $(clean_targets) CLEAN_%,$(MAKECMDGOALS)),)
  170. _v = $(2)_$(3)
  171. ifndef $$(_v)
  172. $$(_v) := $$(call $(1),$(subst %, ,$(3)))
  173. export $$(_v)
  174. endif
  175. endif
  176. endef
  177. # Usage: check-gcc-var,<flag>
  178. # Check the C compiler to see if it supports <flag>.
  179. # Export the variable CFLAG_<flag> if it does.
  180. define check-gcc-var
  181. $(call check-tool-var,check_gcc,CFLAG,$(1))
  182. endef
  183. # Usage: check-as-var,<flag>
  184. # Check the assembler to see if it supports <flag>. Export the
  185. # variable ASFLAG_<flag> if it does (for invoking the assembler),
  186. # as well CFLAG_-Wa<flag> (for invoking the compiler driver).
  187. define check-as-var
  188. $(call check-tool-var,check_as,ASFLAG,$(1))
  189. _v = CFLAG_-Wa$(1)
  190. export $$(_v) = $$(if $$(ASFLAG_$(1)),-Wa$$(comma)$$(ASFLAG_$(1)))
  191. endef
  192. # Usage: check-ld-var,<flag>
  193. # Check the linker to see if it supports <flag>. Export the
  194. # variable LDFLAG_<flag> if it does (for invoking the linker),
  195. # as well CFLAG_-Wl<flag> (for invoking the compiler driver).
  196. define check-ld-var
  197. $(call check-tool-var,check_ld,LDFLAG,$(1))
  198. _v = CFLAG_-Wl$(1)
  199. export $$(_v) = $$(if $$(LDFLAG_$(1)),-Wl$$(comma)$$(LDFLAG_$(1)))
  200. endef
  201. # Usage: cache-output-var,<variable>,<shell command>
  202. # Execute <shell command> and cache the output in <variable>.
  203. define cache-output-var
  204. ifndef $(1)
  205. $(1) := $$(shell $(2))
  206. export $(1)
  207. endif
  208. endef
  209. ARFLAGS:=cr
  210. # Note: The check for -nostdlib has to be before all calls to check_ld
  211. $(eval $(call check-gcc-var,-nostdlib))
  212. $(eval $(call check-gcc-var,-nostartfiles))
  213. # deliberately not named CFLAG-fuse-ld since unchecked and from user
  214. LDFLAG-fuse-ld := $(filter -fuse-ld=%,$(call qstrip,$(UCLIBC_EXTRA_CFLAGS)))
  215. # failed to merge target specific data of file /dev/null
  216. # Could use -Wl,--script,$(top_srcdir)extra/scripts/none.lds as well.
  217. $(eval $(call check-ld-var,--no-warn-mismatch))
  218. $(eval $(call cache-output-var,GCC_VER,$(CC) -dumpversion))
  219. GCC_VER := $(subst ., ,$(GCC_VER))
  220. GCC_MAJOR_VER ?= $(word 1,$(GCC_VER))
  221. GCC_MINOR_VER ?= $(word 2,$(GCC_VER))
  222. # Flags in OPTIMIZATION are used only for non-debug builds
  223. OPTIMIZATION:=
  224. OPTIMIZATION-$(GCC_MAJOR_VER):=
  225. OPTIMIZATION-$(GCC_MAJOR_VER).$(GCC_MINOR_VER):=
  226. # Use '-Os' optimization if available, else use -O2, allow Config to override
  227. $(eval $(call check-gcc-var,-Os))
  228. ifneq ($(CFLAG_-Os),)
  229. OPTIMIZATION += $(CFLAG_-Os)
  230. else
  231. $(eval $(call check-gcc-var,-O2))
  232. OPTIMIZATION += $(CFLAG_-O2)
  233. endif
  234. # Use the gcc 3.4 -funit-at-a-time optimization when available
  235. $(eval $(call check-gcc-var,-funit-at-a-time))
  236. OPTIMIZATION-3.4 += $(CFLAG_-funit-at-a-time)
  237. $(eval $(call check-gcc-var,-fstrict-aliasing))
  238. OPTIMIZATION += $(CFLAG_-fstrict-aliasing)
  239. # CPU_CFLAGS-y contain options which are not warnings,
  240. # not include or library paths, and not optimizations.
  241. # Why -funsigned-char: I hunted a bug related to incorrect
  242. # sign extension of 'char' type for 10 hours straight. Not fun.
  243. CPU_CFLAGS-y := -funsigned-char -fno-builtin -fcommon
  244. $(eval $(call check-gcc-var,-fno-asm))
  245. CPU_CFLAGS-y += $(CFLAG_-fno-asm)
  246. $(eval $(call check-gcc-var,-fmerge-all-constants))
  247. CPU_CFLAGS-y += $(CFLAG_-fmerge-all-constants)
  248. ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
  249. ifneq ($(TARGET_ARCH),bfin)
  250. ifneq ($(TARGET_ARCH),lm32)
  251. ifneq ($(TARGET_ARCH),nios2)
  252. ifneq ($(TARGET_ARCH),nds32)
  253. ifneq ($(TARGET_ARCH),sh)
  254. ifneq ($(TARGET_ARCH),c6x)
  255. ifneq ($(TARGET_ARCH),h8300)
  256. ifneq ($(TARGET_ARCH),arc)
  257. ifneq ($(TARGET_ARCH),aarch64)
  258. ifneq ($(TARGET_ARCH),riscv32)
  259. CPU_CFLAGS-y += -msoft-float
  260. endif
  261. endif
  262. endif
  263. endif
  264. endif
  265. endif
  266. endif
  267. endif
  268. endif
  269. endif
  270. endif
  271. ifeq ($(TARGET_ARCH),aarch64)
  272. CPU_CFLAGS-y += -ftls-model=initial-exec
  273. endif
  274. $(eval $(call check-gcc-var,-std=gnu99))
  275. CPU_CFLAGS-y += $(CFLAG_-std=gnu99)
  276. CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
  277. CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
  278. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN) += -Wl,-EL
  279. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN) += -Wl,-EB
  280. PICFLAG-y := -fPIC
  281. PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
  282. PICFLAG-$(UCLIBC_FORMAT_DSBT_ELF) := -mdsbt -fpic
  283. PICFLAG := $(PICFLAG-y)
  284. PIEFLAG_NAME:=-fPIE
  285. $(eval $(call check-gcc-var,-fdata-sections))
  286. $(eval $(call check-gcc-var,-ffunction-sections))
  287. # Some nice CPU specific optimizations
  288. ifeq ($(TARGET_ARCH),i386)
  289. $(eval $(call check-gcc-var,-fomit-frame-pointer))
  290. OPTIMIZATION += $(CFLAG_-fomit-frame-pointer)
  291. ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586),y)
  292. # TODO: Change this to a gcc version check. This bug
  293. # should be fixed with at least gcc-4.3.
  294. # Non-SSE capable processor.
  295. # NB: this may make SSE insns segfault!
  296. # -O1 -march=pentium3, -Os -msse etc are known to be affected.
  297. # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
  298. # -m32 is needed if host is 64-bit
  299. OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
  300. else
  301. $(eval $(call check-gcc-var,-mpreferred-stack-boundary=4))
  302. OPTIMIZATION += $(CFLAG_-mpreferred-stack-boundary=4)
  303. endif
  304. # Choice of alignment (please document why!)
  305. # -falign-labels: in-line labels
  306. # (reachable by normal code flow, aligning will insert nops
  307. # which will be executed - may even make things slower)
  308. # -falign-jumps: reachable only by a jump
  309. # Generic: no alignment at all (smallest code)
  310. GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
  311. OPTIMIZATION+=$(GCC_FALIGN)
  312. # Putting each function and data object into its own section
  313. # allows for kbytes of less text if users link against static uclibc
  314. # using ld --gc-sections.
  315. # ld 2.18 can't do that (yet?) for shared libraries, so we itself
  316. # do not use --gc-sections at shared lib link time.
  317. # However, in combination with sections being sorted by alignment
  318. # it does result in much reduced padding:
  319. # text data bss dec hex
  320. # 235319 1472 5992 242783 3b45f old.so
  321. # 234104 1472 5980 241556 3af94 new.so
  322. # Without -ffunction-sections, all functions will get aligned
  323. # to 4 byte boundary by as/ld. This is arguably a bug in as.
  324. # It specifies 4 byte align for .text even if not told to do so:
  325. # Idx Name Size VMA LMA File off Algn
  326. # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
  327. CPU_CFLAGS-y += $(CFLAG_-ffunction-sections) $(CFLAG_-fdata-sections)
  328. CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-common)
  329. $(eval $(call check-ld-var,--sort-section=alignment))
  330. CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-section=alignment)
  331. CPU_LDFLAGS-y+=-m32
  332. CPU_CFLAGS-y+=-m32
  333. endif
  334. ifeq ($(TARGET_ARCH),sparc)
  335. CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
  336. CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
  337. CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
  338. CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
  339. endif
  340. ifeq ($(TARGET_ARCH),arm)
  341. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  342. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  343. endif
  344. ifeq ($(TARGET_ARCH),metag)
  345. SYMBOL_PREFIX=_
  346. CPU_CFLAGS-$(CONFIG_META_1_2)+=
  347. CPU_CFLAGS-$(CONFIG_META_2_1)+=-Wa,-mcpu=metac21
  348. endif
  349. ifeq ($(TARGET_ARCH),mips)
  350. OPTIMIZATION+=-mno-split-addresses
  351. CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
  352. CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
  353. CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
  354. CPU_CFLAGS-$(CONFIG_MIPS_NAN_LEGACY)+=$(call check_gcc,-mnan=legacy)
  355. CPU_CFLAGS-$(CONFIG_MIPS_NAN_2008)+=$(call check_gcc,-mnan=2008)
  356. CPU_LDFLAGS-y += $(CPU_CFLAGS)
  357. endif
  358. ifeq ($(TARGET_ARCH),nds32)
  359. CPU_CFLAGS-$(CONFIG_NDS32_ISA)+=-march=nds32
  360. CFLAGS-.os+= -DPIC
  361. CFLAGS-.oS+= -DPIC
  362. endif
  363. ifeq ($(TARGET_ARCH),sh)
  364. $(eval $(call check-gcc-var,-mprefergot))
  365. OPTIMIZATION += $(CFLAG_-mprefergot)
  366. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
  367. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
  368. CPU_CFLAGS-$(CONFIG_SH2)+=-m2
  369. CPU_CFLAGS-$(CONFIG_SH3)+=-m3
  370. ifeq ($(UCLIBC_HAS_FPU),y)
  371. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
  372. CPU_CFLAGS-$(CONFIG_SH4)+=-m4
  373. CPU_CFLAGS-$(CONFIG_SH4A)+=-m4a
  374. else
  375. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
  376. CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
  377. CPU_CFLAGS-$(CONFIG_SH4A)+=-m4a-nofpu
  378. endif
  379. endif
  380. ifeq ($(TARGET_ARCH),h8300)
  381. CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
  382. CPU_CFLAGS-$(CONFIG_H8S) += -ms -mint32
  383. endif
  384. ifeq ($(TARGET_ARCH),cris)
  385. CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
  386. CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
  387. CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
  388. PICFLAG:=-fpic
  389. PIEFLAG_NAME:=-fpie
  390. endif
  391. ifeq ($(TARGET_ARCH),csky)
  392. # In csky gas implement, we use $t and $d to detect .text or literal pool.
  393. # So we couldn't strip them for objdump.
  394. STRIP_FLAGS += -K "$$"t -K "$$"d
  395. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN) += -mlittle-endian
  396. CPU_CFLAGS-$(ARCH_BIG_ENDIAN) += -mbig-endian
  397. endif
  398. ifeq ($(TARGET_ARCH),kvx)
  399. CPU_CFLAGS-y += -march=$(call qstrip,$(TARGET_MARCH))
  400. CPU_LDFLAGS-y += -march=$(call qstrip,$(TARGET_MARCH))
  401. endif
  402. ifeq ($(TARGET_ARCH),m68k)
  403. # -fPIC is only supported for 68020 and above. It is not supported
  404. # for 68000, 68010, or Coldfire.
  405. PICFLAG:=-fpic
  406. PIEFLAG_NAME:=-fpie
  407. endif
  408. ifeq ($(TARGET_ARCH),powerpc)
  409. # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
  410. # enough. Therefore use -fpic which will reduce code size and generates
  411. # faster code.
  412. PICFLAG:=-fpic
  413. PIEFLAG_NAME:=-fpie
  414. PPC_HAS_REL16:=$(shell printf "\t.text\n\taddis 11,30,_GLOBAL_OFFSET_TABLE_-.@ha\n" | $(CC) -c -x assembler -o /dev/null - 2> /dev/null && echo -n y || echo -n n)
  415. PPC_HAS_SECUREPLT:=$(shell $(CC) --verbose 2>&1 | grep -- --enable-secureplt > /dev/null && echo -n y || echo -n n)
  416. CPU_CFLAGS-$(PPC_HAS_SECUREPLT) += -DPPC_HAS_SECUREPLT
  417. CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
  418. CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
  419. endif
  420. ifeq ($(TARGET_ARCH),bfin)
  421. SYMBOL_PREFIX=_
  422. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  423. CPU_CFLAGS-y:=-mfdpic
  424. CPU_LDFLAGS-y += -Wl,-melf32bfinfd
  425. PICFLAG:=-fpic
  426. PIEFLAG_NAME:=-fpie
  427. endif
  428. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  429. PICFLAG := -mleaf-id-shared-library
  430. endif
  431. endif
  432. ifeq ($(TARGET_ARCH),frv)
  433. # Using -pie causes the program to have an interpreter, which is
  434. # forbidden, so we must make do with -shared. Unfortunately,
  435. # -shared by itself would get us global function descriptors
  436. # and calls through PLTs, dynamic resolution of symbols, etc,
  437. # which would break as well, but -Bsymbolic comes to the rescue.
  438. CPU_LDFLAGS-y += -Wl,-melf32frvfd -Wl,-Bsymbolic
  439. endif
  440. ifeq ($(strip $(TARGET_ARCH)),avr32)
  441. CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap
  442. CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax
  443. CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
  444. endif
  445. ifeq ($(TARGET_ARCH),c6x)
  446. PIEFLAG:=
  447. CPU_CFLAGS-$(CONFIG_TMS320C64X) += -march=c64x
  448. CPU_CFLAGS-$(CONFIG_TMS320C64XPLUS) += -march=c64x+
  449. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  450. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  451. CPU_LDFLAGS-y += $(CPU_CFLAGS)
  452. endif
  453. $(eval $(call check-gcc-var,$(PIEFLAG_NAME)))
  454. PIEFLAG := $(CFLAG_$(PIEFLAG_NAME))
  455. ifeq ($(PIEFLAG),)
  456. PIEFLAG := $(PICFLAG)
  457. endif
  458. # We need to keep track of both the CC PIE flag (above) as
  459. # well as the LD PIE flag (below) because we can't rely on
  460. # gcc passing -pie if we used -fPIE. We need to directly use -pie
  461. # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
  462. $(eval $(call cache-output-var,LDPIEFLAG,$(CC) -Wl$(comma)--help 2>/dev/null | grep -q -- -pie && echo "-pie"))
  463. # Check for --as-needed support in linker
  464. ifndef LD_FLAG_ASNEEDED
  465. _LD_FLAG_ASNEEDED:=$(shell $(CC) -Wl,--help 2>/dev/null | grep -- --as-needed)
  466. ifneq ($(_LD_FLAG_ASNEEDED),)
  467. export LD_FLAG_ASNEEDED:=--as-needed
  468. endif
  469. endif
  470. ifndef LD_FLAG_NO_ASNEEDED
  471. ifdef LD_FLAG_ASNEEDED
  472. export LD_FLAG_NO_ASNEEDED:=--no-as-needed
  473. endif
  474. endif
  475. ifndef CC_FLAG_ASNEEDED
  476. ifdef LD_FLAG_ASNEEDED
  477. export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED)
  478. endif
  479. endif
  480. ifndef CC_FLAG_NO_ASNEEDED
  481. ifdef LD_FLAG_NO_ASNEEDED
  482. export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED)
  483. endif
  484. endif
  485. link.asneeded = $(if $(CC_FLAG_ASNEEDED),$(if $(CC_FLAG_NO_ASNEEDED),$(CC_FLAG_ASNEEDED) $(1) $(CC_FLAG_NO_ASNEEDED)))
  486. # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
  487. ifndef ASNEEDED
  488. export ASNEEDED:=$(shell $(CC) -Wl,--help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
  489. endif
  490. # Add a bunch of extra pedantic annoyingly strict checks
  491. WARNING_FLAGS = -Wstrict-prototypes -Wstrict-aliasing -Wno-nonnull-compare
  492. ifeq ($(EXTRA_WARNINGS),y)
  493. WARNING_FLAGS += \
  494. -Wnonnull-compare \
  495. -Wnodeclaration-after-statement \
  496. -Wformat=2 \
  497. -Wmissing-noreturn \
  498. -Wmissing-format-attribute \
  499. -Wmissing-prototypes \
  500. -Wmissing-declarations \
  501. -Wnested-externs \
  502. -Wnonnull \
  503. -Wold-style-declaration \
  504. -Wold-style-definition \
  505. -Wshadow \
  506. -Wundef
  507. endif
  508. WARNING_FLAGS += $(WARNING_FLAGS-gcc-$(GCC_MAJOR_VER))
  509. $(foreach w,$(WARNING_FLAGS),$(eval $(call check-gcc-var,$(w))))
  510. XWARNINGS = $(call qstrip,$(WARNINGS)) $(foreach w,$(WARNING_FLAGS),$(CFLAG_$(w)))
  511. CPU_CFLAGS=$(call qstrip,$(CPU_CFLAGS-y))
  512. # Save the tested flag in a single variable and force it to be
  513. # evaluated just once. Then use that computed value.
  514. $(eval $(call check-gcc-var,-fno-stack-protector))
  515. SSP_DISABLE_FLAGS ?= $(CFLAG_-fno-stack-protector)
  516. ifeq ($(UCLIBC_BUILD_SSP),y)
  517. $(eval $(call check-gcc-var,-fno-stack-protector-all))
  518. $(eval $(call check-gcc-var,-fstack-protector))
  519. $(eval $(call check-gcc-var,-fstack-protector-all))
  520. SSP_CFLAGS := $(CFLAG_-fno-stack-protector-all)
  521. SSP_CFLAGS += $(CFLAG_-fstack-protector)
  522. SSP_ALL_CFLAGS ?= $(CFLAG_-fstack-protector-all)
  523. else
  524. SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
  525. endif
  526. # Collect all CFLAGS components
  527. CFLAGS := $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
  528. -nostdinc -I$(top_builddir)include \
  529. -I$(top_srcdir)include -include libc-symbols.h \
  530. -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH) \
  531. -I$(top_srcdir)libc/sysdeps/linux \
  532. -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \
  533. -I$(top_srcdir)ldso/include -I.
  534. # We need this to be checked within libc-symbols.h
  535. ifneq ($(HAVE_SHARED),y)
  536. CFLAGS += -DSTATIC
  537. endif
  538. $(eval $(call check-ld-var,--warn-once))
  539. $(eval $(call check-ld-var,--sort-common))
  540. $(eval $(call check-ld-var,--discard-all))
  541. LDFLAGS_NOSTRIP:=$(LDFLAG-fuse-ld) $(CPU_LDFLAGS-y) -shared \
  542. -Wl,--warn-common $(CFLAG_-Wl--warn-once) -Wl,-z,combreloc
  543. ifeq ($(UCLIBC_BUILD_RELRO),y)
  544. LDFLAGS_NOSTRIP+=-Wl,-z,relro
  545. endif
  546. ifeq ($(UCLIBC_BUILD_NOW),y)
  547. LDFLAGS_NOSTRIP+=-Wl,-z,now
  548. endif
  549. ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
  550. # Be sure that binutils support it
  551. $(eval $(call check-ld-var,--hash-style=gnu))
  552. ifeq ($(LDFLAG_--hash-style=gnu),)
  553. ifneq ($(filter-out $(clean_targets) CLEAN_% install_headers headers-y,$(MAKECMDGOALS)),)
  554. $(error Your binutils do not support --hash-style option, while you want to use it)
  555. endif
  556. else
  557. LDFLAGS_NOSTRIP += $(CFLAG_-Wl--hash-style=gnu)
  558. endif
  559. endif
  560. ifeq ($(DODEBUG),y)
  561. CFLAGS += -O0 -g3 -DDEBUG
  562. else
  563. CFLAGS += $(OPTIMIZATION)
  564. CFLAGS += $(OPTIMIZATION-$(GCC_MAJOR_VER))
  565. CFLAGS += $(OPTIMIZATION-$(GCC_MAJOR_VER).$(GCC_MINOR_VER))
  566. $(eval $(call check-ld-var,-O2))
  567. LDFLAGS_NOSTRIP += $(CFLAG_-Wl-O2)
  568. endif
  569. LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
  570. ifeq ($(DOSTRIP),y)
  571. LDFLAGS += -Wl,-s
  572. else
  573. STRIPTOOL := true -Stripping_disabled
  574. endif
  575. ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
  576. CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS))
  577. endif
  578. ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
  579. LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS))
  580. endif
  581. ifeq ($(UCLIBC_HAS_STDIO_FUTEXES),y)
  582. CFLAGS += -D__USE_STDIO_FUTEXES__
  583. endif
  584. ifeq ($(UCLIBC_USE_TIME64),y)
  585. CFLAGS += -D__UCLIBC_HAVE_STATX__
  586. endif
  587. ifeq ($(UCLIBC_HAS_THREADS),y)
  588. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  589. PTNAME := nptl
  590. CFLAGS += -DHAVE_FORCED_UNWIND -D_LIBC_REENTRANT
  591. else
  592. ifeq ($(UCLIBC_HAS_LINUXTHREADS),y)
  593. PTNAME := linuxthreads
  594. endif
  595. endif
  596. PTDIR := libpthread/$(PTNAME)
  597. # set up system dependencies include dirs (NOTE: order matters!)
  598. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  599. PTINC:= -I$(top_builddir)$(PTDIR) \
  600. -I$(top_srcdir)$(PTDIR) \
  601. $(if $(TARGET_SUBARCH),-I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/$(TARGET_SUBARCH)) \
  602. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  603. -I$(top_builddir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  604. -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  605. -I$(top_builddir)$(PTDIR)/sysdeps/unix/sysv/linux \
  606. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
  607. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
  608. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread/bits \
  609. -I$(top_srcdir)$(PTDIR)/sysdeps/generic
  610. #
  611. # Test for TLS if NPTL support was selected.
  612. #
  613. GCC_HAS_TLS=$(shell \
  614. echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
  615. ifneq ($(GCC_HAS_TLS),)
  616. gcc_tls_test_fail:
  617. @echo "####";
  618. @echo "#### Your compiler does not support TLS and you are trying to build uClibc-ng";
  619. @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
  620. @echo "#### support TLS for your architecture. Do not contact uClibc-ng maintainers";
  621. @echo "#### about this problem.";
  622. @echo "####";
  623. @echo "#### Exiting...";
  624. @echo "####";
  625. @exit 1;
  626. endif
  627. else
  628. PTINC := \
  629. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  630. -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  631. -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
  632. -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
  633. -I$(top_srcdir)$(PTDIR) \
  634. -I$(top_srcdir)libpthread
  635. endif
  636. CFLAGS+=$(PTINC)
  637. else
  638. PTNAME :=
  639. PTINC :=
  640. endif
  641. CFLAGS += -I$(top_srcdir)libc/sysdeps/linux/common
  642. #CFLAGS += -iwithprefix include-fixed -iwithprefix include
  643. $(eval $(call cache-output-var,CC_IPREFIX,$(CC) -print-file-name=include))
  644. CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
  645. CFLAGS += $(CC_INC)
  646. CFLAGS += -I$(KERNEL_HEADERS)
  647. ifneq ($(DOASSERTS),y)
  648. CFLAGS+=-DNDEBUG
  649. endif
  650. ifeq ($(SYMBOL_PREFIX),_)
  651. CFLAGS+=-D__UCLIBC_UNDERSCORES__
  652. endif
  653. # Keep the check_as from being needlessly executed
  654. ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
  655. $(eval $(call check-as-var,--noexecstack))
  656. endif
  657. ASFLAGS += $(ASFLAG_--noexecstack)
  658. LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
  659. $(eval $(call cache-output-var,LIBGCC_A,$(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name))
  660. $(eval $(call cache-output-var,LIBGCC_EH,$(CC) $(LIBGCC_CFLAGS) -print-file-name=libgcc_eh.a))
  661. # with -O0 we (e.g. lockf) might end up with references to
  662. # _Unwind_Resume, so pull in gcc_eh in this case..
  663. # with a --disable-shared toolchain, libgcc_eh.a and libgcc.a are combined
  664. # in libgcc.a, so check if the printed file exist, before adding to the commandline
  665. LIBGCC_EH_FILE := $(shell if [ -f $(LIBGCC_EH) ]; then echo $(LIBGCC_EH); fi)
  666. LIBGCC_DIR := $(dir $(LIBGCC_A))
  667. LIBGCC := $(LIBGCC_A) $(if $(DODEBUG),$(LIBGCC_EH_FILE))
  668. # moved from libpthread/linuxthreads
  669. ifeq ($(UCLIBC_CTOR_DTOR),y)
  670. SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
  671. SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
  672. endif
  673. LOCAL_INSTALL_PATH := $(if $(O),$(O)/)install_dir
  674. PTHREAD_GENERATE_MANGLE ?= -n "s/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*\$$/\#define \1 \2/p"