1 # Rules.mak for uClibc-ng
3 # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
4 # Copyright (C) 2015-2018 Waldemar Brodkorb <wbx@uclibc-ng.org>
6 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
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)
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 \
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
69 STRIP_FLAGS ?
= -x
-R .note
-R .comment
71 # Select the compiler needed to build binaries for your development system
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.
81 qstrip
= $(strip $(subst ",,$(1)))
85 KCONFIG_CONFIG ?
= $(top_builddir
).config
86 KCONFIG_CONFIG
:= $(abspath
$(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
))
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
)
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
/ \
110 -e s
/s390x
/s390
/ -e s
/parisc.
*/hppa
/ \
111 -e s
/ppc.
*/powerpc
/ -e s
/mips.
*/mips
/ \
112 -e s
/xtensa.
*/xtensa
/ )
114 ARCH
= $(TARGET_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
133 VERSION
:= $(MAJOR_VERSION
).
$(MINOR_VERSION
).
$(SUBLEVEL
)
134 ABI_VERSION
:= $(MAJOR_VERSION
)
135 ifneq ($(EXTRAVERSION
),)
136 VERSION
:= $(VERSION
)$(EXTRAVERSION
)
138 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
140 export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION ABI_VERSION LC_ALL
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
),)
148 UCLIBC_LDSO_NAME
:= ld64-uClibc
149 ARCH_NATIVE_BIT
:= 64
151 ifeq ($(CONFIG_MIPS_N64_ABI
),y
)
152 UCLIBC_LDSO_NAME
:= ld64-uClibc
153 ARCH_NATIVE_BIT
:= 64
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
177 ifneq ($(HAVE_SHARED
),y
)
186 ifeq ($(CROSS_COMPILE
),)
187 CROSS_COMPILE
=$(call qstrip
,$(CROSS_COMPILER_PREFIX
))
190 # A nifty macro to make testing gcc features easier
192 if
$(CC
) $(1) -S
-o
/dev
/null
-xc
/dev
/null
> /dev
/null
2>&1; \
193 then echo
"$(1)"; else echo
"$(2)"; fi
)
195 if
$(CC
) -Wa
,$(1) -Wa
,-Z
-c
-o
/dev
/null
-xassembler
/dev
/null
> /dev
/null
2>&1; \
196 then echo
"-Wa,$(1)"; fi
)
198 if
$(CC
) $(LDFLAG-fuse-ld
) $(CFLAG_-Wl--no-warn-mismatch
) -Wl
,$(1) $(CFLAG_-nostdlib
) -o
/dev
/null
-Wl
,-b
,binary
/dev
/null
> /dev
/null
2>&1; \
199 then echo
"$(1)"; fi
)
201 # Use variable indirection here so that we can have variable
202 # names with fun chars in them like equal signs
203 define check-tool-var
204 ifeq ($(filter $(clean_targets
) CLEAN_
%,$(MAKECMDGOALS
)),)
207 $$(_v
) := $$(call
$(1),$(subst %, ,$(3)))
213 # Usage: check-gcc-var,<flag>
214 # Check the C compiler to see if it supports <flag>.
215 # Export the variable CFLAG_<flag> if it does.
217 $(call check-tool-var
,check_gcc
,CFLAG
,$(1))
219 # Usage: check-as-var,<flag>
220 # Check the assembler to see if it supports <flag>. Export the
221 # variable ASFLAG_<flag> if it does (for invoking the assembler),
222 # as well CFLAG_-Wa<flag> (for invoking the compiler driver).
224 $(call check-tool-var
,check_as
,ASFLAG
,$(1))
226 export $$(_v
) = $$(if
$$(ASFLAG_
$(1)),-Wa
$$(comma
)$$(ASFLAG_
$(1)))
228 # Usage: check-ld-var,<flag>
229 # Check the linker to see if it supports <flag>. Export the
230 # variable LDFLAG_<flag> if it does (for invoking the linker),
231 # as well CFLAG_-Wl<flag> (for invoking the compiler driver).
233 $(call check-tool-var
,check_ld
,LDFLAG
,$(1))
235 export $$(_v
) = $$(if
$$(LDFLAG_
$(1)),-Wl
$$(comma
)$$(LDFLAG_
$(1)))
237 # Usage: cache-output-var,<variable>,<shell command>
238 # Execute <shell command> and cache the output in <variable>.
239 define cache-output-var
241 $(1) := $$(shell $(2))
249 # Note: The check for -nostdlib has to be before all calls to check_ld
250 $(eval
$(call check-gcc-var
,-nostdlib
))
251 $(eval
$(call check-gcc-var
,-nostartfiles
))
252 # deliberately not named CFLAG-fuse-ld since unchecked and from user
253 LDFLAG-fuse-ld
:= $(filter -fuse-ld
=%,$(call qstrip
,$(UCLIBC_EXTRA_CFLAGS
)))
254 # failed to merge target specific data of file /dev/null
255 # Could use -Wl,--script,$(top_srcdir)extra/scripts/none.lds as well.
256 $(eval
$(call check-ld-var
,--no-warn-mismatch
))
258 $(eval
$(call cache-output-var
,GCC_VER
,$(CC
) -dumpversion
))
259 GCC_VER
:= $(subst .
, ,$(GCC_VER
))
260 GCC_MAJOR_VER ?
= $(word 1,$(GCC_VER
))
261 GCC_MINOR_VER ?
= $(word 2,$(GCC_VER
))
263 # Flags in OPTIMIZATION are used only for non-debug builds
266 OPTIMIZATION-
$(GCC_MAJOR_VER
):=
267 OPTIMIZATION-
$(GCC_MAJOR_VER
).
$(GCC_MINOR_VER
):=
269 # Use '-Os' optimization if available, else use -O2, allow Config to override
270 $(eval
$(call check-gcc-var
,-Os
))
271 ifneq ($(CFLAG_-Os
),)
272 OPTIMIZATION
+= $(CFLAG_-Os
)
274 $(eval
$(call check-gcc-var
,-O2
))
275 OPTIMIZATION
+= $(CFLAG_-O2
)
277 # Use the gcc 3.4 -funit-at-a-time optimization when available
278 $(eval
$(call check-gcc-var
,-funit-at-a-time
))
279 OPTIMIZATION-3.4
+= $(CFLAG_-funit-at-a-time
)
280 $(eval
$(call check-gcc-var
,-fstrict-aliasing
))
281 OPTIMIZATION
+= $(CFLAG_-fstrict-aliasing
)
283 # CPU_CFLAGS-y contain options which are not warnings,
284 # not include or library paths, and not optimizations.
286 # Why -funsigned-char: I hunted a bug related to incorrect
287 # sign extension of 'char' type for 10 hours straight. Not fun.
288 CPU_CFLAGS-y
:= -funsigned-char
-fno-builtin
290 $(eval
$(call check-gcc-var
,-fno-asm
))
291 CPU_CFLAGS-y
+= $(CFLAG_-fno-asm
)
292 $(eval
$(call check-gcc-var
,-fmerge-all-constants
))
293 CPU_CFLAGS-y
+= $(CFLAG_-fmerge-all-constants
)
295 ifeq ($(UCLIBC_HAS_SOFT_FLOAT
),y
)
296 ifneq ($(TARGET_ARCH
),bfin
)
297 ifneq ($(TARGET_ARCH
),lm32
)
298 ifneq ($(TARGET_ARCH
),nios2
)
299 ifneq ($(TARGET_ARCH
),nds32
)
300 ifneq ($(TARGET_ARCH
),sh
)
301 ifneq ($(TARGET_ARCH
),c6x
)
302 ifneq ($(TARGET_ARCH
),h8300
)
303 ifneq ($(TARGET_ARCH
),arc
)
304 ifneq ($(TARGET_ARCH
),aarch64
)
305 CPU_CFLAGS-y
+= -msoft-float
317 ifeq ($(TARGET_ARCH
),aarch64
)
318 CPU_CFLAGS-y
+= -ftls-model
=initial-exec
321 $(eval
$(call check-gcc-var
,-std
=gnu99
))
322 CPU_CFLAGS-y
+= $(CFLAG_-std
=gnu99
)
324 CPU_CFLAGS-
$(UCLIBC_FORMAT_SHARED_FLAT
) += -mid-shared-library
325 CPU_CFLAGS-
$(UCLIBC_FORMAT_FLAT_SEP_DATA
) += -msep-data
327 CPU_LDFLAGS-
$(ARCH_LITTLE_ENDIAN
) += -Wl
,-EL
328 CPU_LDFLAGS-
$(ARCH_BIG_ENDIAN
) += -Wl
,-EB
331 PICFLAG-
$(UCLIBC_FORMAT_FDPIC_ELF
) := -mfdpic
332 PICFLAG-
$(UCLIBC_FORMAT_DSBT_ELF
) := -mdsbt
-fpic
333 PICFLAG
:= $(PICFLAG-y
)
336 $(eval
$(call check-gcc-var
,-fdata-sections
))
337 $(eval
$(call check-gcc-var
,-ffunction-sections
))
339 # Some nice CPU specific optimizations
340 ifeq ($(TARGET_ARCH
),i386
)
341 $(eval
$(call check-gcc-var
,-fomit-frame-pointer
))
342 OPTIMIZATION
+= $(CFLAG_-fomit-frame-pointer
)
344 ifeq ($(CONFIG_386
)$(CONFIG_486
)$(CONFIG_586
),y
)
345 # TODO: Change this to a gcc version check. This bug
346 # should be fixed with at least gcc-4.3.
347 # Non-SSE capable processor.
348 # NB: this may make SSE insns segfault!
349 # -O1 -march=pentium3, -Os -msse etc are known to be affected.
350 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
351 # -m32 is needed if host is 64-bit
352 OPTIMIZATION
+=$(call check_gcc
,-m32
-mpreferred-stack-boundary
=2,)
354 $(eval
$(call check-gcc-var
,-mpreferred-stack-boundary
=4))
355 OPTIMIZATION
+= $(CFLAG_-mpreferred-stack-boundary
=4)
358 # Choice of alignment (please document why!)
359 # -falign-labels: in-line labels
360 # (reachable by normal code flow, aligning will insert nops
361 # which will be executed - may even make things slower)
362 # -falign-jumps: reachable only by a jump
363 # Generic: no alignment at all (smallest code)
364 GCC_FALIGN
=$(call check_gcc
,-falign-functions
=1 -falign-jumps
=1 -falign-labels
=1 -falign-loops
=1,-malign-jumps
=1 -malign-loops
=1)
365 OPTIMIZATION
+=$(GCC_FALIGN
)
367 # Putting each function and data object into its own section
368 # allows for kbytes of less text if users link against static uclibc
369 # using ld --gc-sections.
370 # ld 2.18 can't do that (yet?) for shared libraries, so we itself
371 # do not use --gc-sections at shared lib link time.
372 # However, in combination with sections being sorted by alignment
373 # it does result in much reduced padding:
374 # text data bss dec hex
375 # 235319 1472 5992 242783 3b45f old.so
376 # 234104 1472 5980 241556 3af94 new.so
377 # Without -ffunction-sections, all functions will get aligned
378 # to 4 byte boundary by as/ld. This is arguably a bug in as.
379 # It specifies 4 byte align for .text even if not told to do so:
380 # Idx Name Size VMA LMA File off Algn
381 # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
382 CPU_CFLAGS-y
+= $(CFLAG_-ffunction-sections
) $(CFLAG_-fdata-sections
)
383 CPU_LDFLAGS-y
+= $(CFLAG_-Wl--sort-common
)
384 $(eval
$(call check-ld-var
,--sort-section
=alignment
))
385 CPU_LDFLAGS-y
+= $(CFLAG_-Wl--sort-section
=alignment
)
391 ifeq ($(TARGET_ARCH
),sparc
)
392 CPU_CFLAGS-
$(CONFIG_SPARC_V7
)+=-mcpu
=v7
393 CPU_CFLAGS-
$(CONFIG_SPARC_V8
)+=-mcpu
=v8
394 CPU_CFLAGS-
$(CONFIG_SPARC_V9
)+=-mcpu
=v9
395 CPU_CFLAGS-
$(CONFIG_SPARC_V9B
)+=$(call check_gcc
,-mcpu
=v9b
,-mcpu
=ultrasparc
)
398 ifeq ($(TARGET_ARCH
),arm
)
399 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-mlittle-endian
400 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mbig-endian
403 ifeq ($(TARGET_ARCH
),metag
)
405 CPU_CFLAGS-
$(CONFIG_META_1_2
)+=
406 CPU_CFLAGS-
$(CONFIG_META_2_1
)+=-Wa
,-mcpu
=metac21
409 ifeq ($(TARGET_ARCH
),mips
)
410 OPTIMIZATION
+=-mno-split-addresses
411 CPU_CFLAGS-
$(CONFIG_MIPS_N64_ABI
)+=-mabi
=64
412 CPU_CFLAGS-
$(CONFIG_MIPS_O32_ABI
)+=-mabi
=32
413 CPU_CFLAGS-
$(CONFIG_MIPS_N32_ABI
)+=-mabi
=n32
414 CPU_CFLAGS-
$(CONFIG_MIPS_NAN_LEGACY
)+=$(call check_gcc
,-mnan
=legacy
)
415 CPU_CFLAGS-
$(CONFIG_MIPS_NAN_2008
)+=$(call check_gcc
,-mnan
=2008)
416 CPU_LDFLAGS-y
+= $(CPU_CFLAGS
)
419 ifeq ($(TARGET_ARCH
),nds32
)
420 CPU_CFLAGS-
$(CONFIG_NDS32_ISA
)+=-march
=nds32
425 ifeq ($(TARGET_ARCH
),sh
)
426 $(eval
$(call check-gcc-var
,-mprefergot
))
427 OPTIMIZATION
+= $(CFLAG_-mprefergot
)
428 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-ml
429 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mb
430 CPU_CFLAGS-
$(CONFIG_SH2
)+=-m2
431 CPU_CFLAGS-
$(CONFIG_SH3
)+=-m3
432 ifeq ($(UCLIBC_HAS_FPU
),y
)
433 CPU_CFLAGS-
$(CONFIG_SH2A
)+=-m2a
434 CPU_CFLAGS-
$(CONFIG_SH4
)+=-m4
435 CPU_CFLAGS-
$(CONFIG_SH4A
)+=-m4a
437 CPU_CFLAGS-
$(CONFIG_SH2A
)+=-m2a-nofpu
438 CPU_CFLAGS-
$(CONFIG_SH4
)+=-m4-nofpu
439 CPU_CFLAGS-
$(CONFIG_SH4A
)+=-m4a-nofpu
443 ifeq ($(TARGET_ARCH
),h8300
)
444 CPU_CFLAGS-
$(CONFIG_H8300H
) += -mh
-mint32
445 CPU_CFLAGS-
$(CONFIG_H8S
) += -ms
-mint32
448 ifeq ($(TARGET_ARCH
),cris
)
449 CPU_LDFLAGS-
$(CONFIG_CRIS
)+=-Wl
,-mcrislinux
450 CPU_LDFLAGS-
$(CONFIG_CRISV32
)+=-Wl
,-mcrislinux
451 CPU_CFLAGS-
$(CONFIG_CRIS
)+=-mlinux
456 ifeq ($(TARGET_ARCH
),csky
)
457 # In csky gas implement, we use $t and $d to detect .text or literal pool.
458 # So we couldn't strip them for objdump.
459 STRIP_FLAGS
+= -K
"$$"t
-K
"$$"d
461 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
) += -mlittle-endian
462 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
) += -mbig-endian
465 ifeq ($(TARGET_ARCH
),m68k
)
466 # -fPIC is only supported for 68020 and above. It is not supported
467 # for 68000, 68010, or Coldfire.
472 ifeq ($(TARGET_ARCH
),powerpc
)
473 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
474 # enough. Therefore use -fpic which will reduce code size and generates
478 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
)
479 CPU_CFLAGS-
$(PPC_HAS_REL16
)+= -DHAVE_ASM_PPC_REL16
480 CPU_CFLAGS-
$(CONFIG_E500
) += "-D__NO_MATH_INLINES"
484 ifeq ($(TARGET_ARCH
),bfin
)
486 ifeq ($(UCLIBC_FORMAT_FDPIC_ELF
),y
)
487 CPU_CFLAGS-y
:=-mfdpic
488 CPU_LDFLAGS-y
+= -Wl
,-melf32bfinfd
492 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT
),y
)
493 PICFLAG
:= -mleaf-id-shared-library
497 ifeq ($(TARGET_ARCH
),frv
)
498 # Using -pie causes the program to have an interpreter, which is
499 # forbidden, so we must make do with -shared. Unfortunately,
500 # -shared by itself would get us global function descriptors
501 # and calls through PLTs, dynamic resolution of symbols, etc,
502 # which would break as well, but -Bsymbolic comes to the rescue.
503 CPU_LDFLAGS-y
+= -Wl
,-melf32frvfd
-Wl
,-Bsymbolic
506 ifeq ($(strip $(TARGET_ARCH
)),avr32
)
507 CPU_CFLAGS-
$(CONFIG_AVR32_AP7
) += -march
=ap
508 CPU_CFLAGS-
$(CONFIG_LINKRELAX
) += -mrelax
509 CPU_LDFLAGS-
$(CONFIG_LINKRELAX
) += --relax
512 ifeq ($(TARGET_ARCH
),c6x
)
514 CPU_CFLAGS-
$(CONFIG_TMS320C64X
) += -march
=c64x
515 CPU_CFLAGS-
$(CONFIG_TMS320C64XPLUS
) += -march
=c64x
+
516 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-mlittle-endian
517 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mbig-endian
518 CPU_LDFLAGS-y
+= $(CPU_CFLAGS
)
521 $(eval
$(call check-gcc-var
,$(PIEFLAG_NAME
)))
522 PIEFLAG
:= $(CFLAG_
$(PIEFLAG_NAME
))
524 PIEFLAG
:= $(PICFLAG
)
526 # We need to keep track of both the CC PIE flag (above) as
527 # well as the LD PIE flag (below) because we can't rely on
528 # gcc passing -pie if we used -fPIE. We need to directly use -pie
529 # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
530 $(eval
$(call cache-output-var
,LDPIEFLAG
,$(CC
) -Wl
$(comma
)--help
2>/dev
/null | grep
-q
-- -pie
&& echo
"-pie"))
532 # Check for --as-needed support in linker
533 ifndef LD_FLAG_ASNEEDED
534 _LD_FLAG_ASNEEDED
:=$(shell $(CC
) -Wl
,--help
2>/dev
/null | grep
-- --as-needed
)
535 ifneq ($(_LD_FLAG_ASNEEDED
),)
536 export LD_FLAG_ASNEEDED
:=--as-needed
539 ifndef LD_FLAG_NO_ASNEEDED
540 ifdef LD_FLAG_ASNEEDED
541 export LD_FLAG_NO_ASNEEDED
:=--no-as-needed
544 ifndef CC_FLAG_ASNEEDED
545 ifdef LD_FLAG_ASNEEDED
546 export CC_FLAG_ASNEEDED
:=-Wl
,$(LD_FLAG_ASNEEDED
)
549 ifndef CC_FLAG_NO_ASNEEDED
550 ifdef LD_FLAG_NO_ASNEEDED
551 export CC_FLAG_NO_ASNEEDED
:=-Wl
,$(LD_FLAG_NO_ASNEEDED
)
554 link.asneeded
= $(if
$(CC_FLAG_ASNEEDED
),$(if
$(CC_FLAG_NO_ASNEEDED
),$(CC_FLAG_ASNEEDED
) $(1) $(CC_FLAG_NO_ASNEEDED
)))
556 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
558 export ASNEEDED
:=$(shell $(CC
) -Wl
,--help
2>/dev
/null | grep
-q
-- --as-needed
&& echo
"AS_NEEDED ( $(UCLIBC_LDSO) )" || echo
"$(UCLIBC_LDSO)")
561 # Add a bunch of extra pedantic annoyingly strict checks
562 WARNING_FLAGS
= -Wstrict-prototypes
-Wstrict-aliasing
563 ifeq ($(EXTRA_WARNINGS
),y
)
565 -Wno-nonnull-compare \
566 -Wnodeclaration-after-statement \
569 -Wmissing-format-attribute \
570 -Wmissing-prototypes \
571 -Wmissing-declarations \
574 -Wold-style-declaration \
575 -Wold-style-definition \
579 WARNING_FLAGS
+= $(WARNING_FLAGS-gcc-
$(GCC_MAJOR_VER
))
580 $(foreach w
,$(WARNING_FLAGS
),$(eval
$(call check-gcc-var
,$(w
))))
581 XWARNINGS
= $(call qstrip
,$(WARNINGS
)) $(foreach w
,$(WARNING_FLAGS
),$(CFLAG_
$(w
)))
583 CPU_CFLAGS
=$(call qstrip
,$(CPU_CFLAGS-y
))
585 # Save the tested flag in a single variable and force it to be
586 # evaluated just once. Then use that computed value.
587 $(eval
$(call check-gcc-var
,-fno-stack-protector
))
588 SSP_DISABLE_FLAGS ?
= $(CFLAG_-fno-stack-protector
)
589 ifeq ($(UCLIBC_BUILD_SSP
),y
)
590 $(eval
$(call check-gcc-var
,-fno-stack-protector-all
))
591 $(eval
$(call check-gcc-var
,-fstack-protector
))
592 $(eval
$(call check-gcc-var
,-fstack-protector-all
))
593 SSP_CFLAGS
:= $(CFLAG_-fno-stack-protector-all
)
594 SSP_CFLAGS
+= $(CFLAG_-fstack-protector
)
595 SSP_ALL_CFLAGS ?
= $(CFLAG_-fstack-protector-all
)
597 SSP_CFLAGS
:= $(SSP_DISABLE_FLAGS
)
600 # Collect all CFLAGS components
601 CFLAGS
:= $(XWARNINGS
) $(CPU_CFLAGS
) $(SSP_CFLAGS
) \
602 -nostdinc
-I
$(top_builddir
)include \
603 -I
$(top_srcdir
)include -include libc-symbols.h \
604 -I
$(top_srcdir
)libc
/sysdeps
/linux
/$(TARGET_ARCH
) \
605 -I
$(top_srcdir
)libc
/sysdeps
/linux \
606 -I
$(top_srcdir
)ldso
/ldso
/$(TARGET_ARCH
) \
607 -I
$(top_srcdir
)ldso
/include -I.
609 # We need this to be checked within libc-symbols.h
610 ifneq ($(HAVE_SHARED
),y
)
614 $(eval
$(call check-ld-var
,--warn-once
))
615 $(eval
$(call check-ld-var
,--sort-common
))
616 $(eval
$(call check-ld-var
,--discard-all
))
617 LDFLAGS_NOSTRIP
:=$(LDFLAG-fuse-ld
) $(CPU_LDFLAGS-y
) -shared \
618 -Wl
,--warn-common
$(CFLAG_-Wl--warn-once
) -Wl
,-z
,combreloc
620 ifeq ($(UCLIBC_BUILD_RELRO
),y
)
621 LDFLAGS_NOSTRIP
+=-Wl
,-z
,relro
624 ifeq ($(UCLIBC_BUILD_NOW
),y
)
625 LDFLAGS_NOSTRIP
+=-Wl
,-z
,now
628 ifeq ($(LDSO_GNU_HASH_SUPPORT
),y
)
629 # Be sure that binutils support it
630 $(eval
$(call check-ld-var
,--hash-style
=gnu
))
631 ifeq ($(LDFLAG_--hash-style
=gnu
),)
632 ifneq ($(filter-out $(clean_targets
) CLEAN_
% install_headers headers-y
,$(MAKECMDGOALS
)),)
633 $(error Your binutils do not support
--hash-style option
, while you want to use it
)
636 LDFLAGS_NOSTRIP
+= $(CFLAG_-Wl--hash-style
=gnu
)
641 CFLAGS
+= -O0
-g3
-DDEBUG
643 CFLAGS
+= $(OPTIMIZATION
)
644 CFLAGS
+= $(OPTIMIZATION-
$(GCC_MAJOR_VER
))
645 CFLAGS
+= $(OPTIMIZATION-
$(GCC_MAJOR_VER
).
$(GCC_MINOR_VER
))
646 $(eval
$(call check-ld-var
,-O2
))
647 LDFLAGS_NOSTRIP
+= $(CFLAG_-Wl-O2
)
650 LDFLAGS
:=$(LDFLAGS_NOSTRIP
) -Wl
,-z
,defs
655 STRIPTOOL
:= true
-Stripping_disabled
658 ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS
)),"")
659 CFLAGS
+= $(call qstrip
,$(UCLIBC_EXTRA_CFLAGS
))
661 ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS
)),"")
662 LDFLAGS
+= $(call qstrip
,$(UCLIBC_EXTRA_LDFLAGS
))
665 ifeq ($(UCLIBC_HAS_STDIO_FUTEXES
),y
)
666 CFLAGS
+= -D__USE_STDIO_FUTEXES__
669 ifeq ($(UCLIBC_HAS_THREADS
),y
)
670 ifeq ($(UCLIBC_HAS_THREADS_NATIVE
),y
)
672 CFLAGS
+= -DHAVE_FORCED_UNWIND
-D_LIBC_REENTRANT
674 ifeq ($(UCLIBC_HAS_LINUXTHREADS
),y
)
675 PTNAME
:= linuxthreads
678 PTDIR
:= libpthread
/$(PTNAME
)
679 # set up system dependencies include dirs (NOTE: order matters!)
680 ifeq ($(UCLIBC_HAS_THREADS_NATIVE
),y
)
681 PTINC
:= -I
$(top_builddir
)$(PTDIR
) \
682 -I
$(top_srcdir
)$(PTDIR
) \
683 $(if
$(TARGET_SUBARCH
),-I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
)/$(TARGET_SUBARCH
)) \
684 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
) \
685 -I
$(top_builddir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
686 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
687 -I
$(top_builddir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
688 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
689 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread \
690 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread
/bits \
691 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/generic
693 # Test for TLS if NPTL support was selected.
695 GCC_HAS_TLS
=$(shell \
696 echo
"extern __thread int foo;" |
$(CC
) -o
/dev
/null
-S
-xc
- 2>&1)
697 ifneq ($(GCC_HAS_TLS
),)
700 @echo
"#### Your compiler does not support TLS and you are trying to build uClibc-ng";
701 @echo
"#### with NPTL support. Upgrade your binutils and gcc to versions which";
702 @echo
"#### support TLS for your architecture. Do not contact uClibc-ng maintainers";
703 @echo
"#### about this problem.";
705 @echo
"#### Exiting...";
711 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
) \
712 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
713 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
714 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread \
715 -I
$(top_srcdir
)$(PTDIR
) \
716 -I
$(top_srcdir
)libpthread
723 CFLAGS
+= -I
$(top_srcdir
)libc
/sysdeps
/linux
/common
725 #CFLAGS += -iwithprefix include-fixed -iwithprefix include
726 $(eval
$(call cache-output-var
,CC_IPREFIX
,$(CC
) -print-file-name
=include))
727 CC_INC
:= -isystem
$(dir $(CC_IPREFIX
))include-fixed
-isystem
$(CC_IPREFIX
)
730 CFLAGS
+= -I
$(KERNEL_HEADERS
)
732 ifneq ($(DOASSERTS
),y
)
736 ifeq ($(SYMBOL_PREFIX
),_
)
737 CFLAGS
+=-D__UCLIBC_UNDERSCORES__
740 # Keep the check_as from being needlessly executed
741 ifeq ($(UCLIBC_BUILD_NOEXECSTACK
),y
)
742 $(eval
$(call check-as-var
,--noexecstack
))
744 ASFLAGS
+= $(ASFLAG_--noexecstack
)
746 LIBGCC_CFLAGS ?
= $(CFLAGS
) $(CPU_CFLAGS-y
)
747 $(eval
$(call cache-output-var
,LIBGCC_A
,$(CC
) $(LIBGCC_CFLAGS
) -print-libgcc-file-name
))
748 $(eval
$(call cache-output-var
,LIBGCC_EH
,$(CC
) $(LIBGCC_CFLAGS
) -print-file-name
=libgcc_eh.a
))
749 # with -O0 we (e.g. lockf) might end up with references to
750 # _Unwind_Resume, so pull in gcc_eh in this case..
751 # with a --disable-shared toolchain, libgcc_eh.a and libgcc.a are combined
752 # in libgcc.a, so check if the printed file exist, before adding to the commandline
753 LIBGCC_EH_FILE
:= $(shell if
[ -f
$(LIBGCC_EH
) ]; then echo
$(LIBGCC_EH
); fi
)
754 LIBGCC_DIR
:= $(dir $(LIBGCC_A
))
755 LIBGCC
:= $(LIBGCC_A
) $(if
$(DODEBUG
),$(LIBGCC_EH_FILE
))
757 # moved from libpthread/linuxthreads
758 ifeq ($(UCLIBC_CTOR_DTOR
),y
)
759 SHARED_START_FILES
:=$(top_builddir
)lib
/crti.o
$(LIBGCC_DIR
)crtbeginS.o
760 SHARED_END_FILES
:=$(LIBGCC_DIR
)crtendS.o
$(top_builddir
)lib
/crtn.o
763 LOCAL_INSTALL_PATH
:= $(if
$(O
),$(O
)/)install_dir
765 PTHREAD_GENERATE_MANGLE ?
= -n
"s/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*\$$/\#define \1 \2/p"