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