3 # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
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 :=).
19 # check for proper make version
20 ifneq ($(findstring x3.7
,x
$(MAKE_VERSION
)),)
21 $(error Your make is too old
$(MAKE_VERSION
). Go
get at least
3.80)
24 #-----------------------------------------------------------
25 # This file contains rules which are shared between multiple
26 # Makefiles. All normal configuration options live in the
27 # file named ".config". Don't mess with this file unless
28 # you know what you are doing.
30 clean_targets
:= clean realclean distclean \
31 objclean-y headers_clean-y CLEAN_utils
32 noconfig_targets
:= menuconfig config nconfig \
33 oldaskconfig silentoldconfig oldconfig allnoconfig allyesconfig \
34 alldefconfig randconfig defconfig savedefconfig listnewconfig \
36 xconfig gconfig update-po-config mconf qconf gconf nconf conf \
37 release
dist tags help
40 #-----------------------------------------------------------
41 # If you are running a cross compiler, you will want to set
42 # 'CROSS_COMPILE' to something more interesting ... Target
43 # architecture is determined by asking the CC compiler what
44 # arch it compiles things for, so unless your compiler is
45 # broken, you should not need to specify TARGET_ARCH.
47 # Most people will set this stuff on the command line, i.e.
48 # make CROSS_COMPILE=arm-linux-
49 # will build uClibc for 'arm'.
50 # CROSS is still supported for backward compatibily only
52 CROSS_COMPILE ?
= $(CROSS
)
54 CC
= $(CROSS_COMPILE
)gcc
55 AR
= $(CROSS_COMPILE
)ar
56 LD
= $(CROSS_COMPILE
)ld
57 NM
= $(CROSS_COMPILE
)nm
58 OBJDUMP
= $(CROSS_COMPILE
)objdump
59 STRIPTOOL
= $(CROSS_COMPILE
)strip
68 STRIP_FLAGS ?
= -x
-R .note
-R .comment
70 # Select the compiler needed to build binaries for your development system
74 #---------------------------------------------------------
75 # Nothing beyond this point should ever be touched by mere
76 # mortals. Unless you hang out with the gods, you should
77 # probably leave all this stuff alone.
80 qstrip
= $(strip $(subst ",,$(1)))
84 KCONFIG_CONFIG ?
= $(top_builddir
).config
85 KCONFIG_CONFIG
:= $(abspath
$(KCONFIG_CONFIG
))
87 KCONFIG_AUTOCONFIG
:= $(dir $(KCONFIG_CONFIG
))include/config
/auto.conf
88 export KCONFIG_AUTOCONFIG
89 KCONFIG_TRISTATE
:= $(dir $(KCONFIG_CONFIG
))include/config
/tristate.conf
90 export KCONFIG_TRISTATE
91 srctree
:= $(abspath
$(top_srcdir
))
93 KCONFIG_AUTOHEADER
:= $(dir $(KCONFIG_CONFIG
))include/generated
/autoconf.h
94 export KCONFIG_AUTOHEADER
95 Kconfig
:= $(abspath
$(top_srcdir
)extra
/Configs
/Config.in
)
97 # Pull in the user's uClibc configuration
98 ifeq ($(filter $(noconfig_targets
) clean CLEAN_
%,$(MAKECMDGOALS
)),)
99 -include $(KCONFIG_CONFIG
)
102 TARGET_ARCH
:=$(call qstrip
,$(TARGET_ARCH
))
103 ifeq ($(TARGET_ARCH
),)
104 ARCH ?
= $(shell uname
-m |
$(SED
) -e s
/i
.86/i386
/ \
105 -e s
/sun.
*/sparc
/ -e s
/sparc.
*/sparc
/ \
106 -e s
/arm.
*/arm
/ -e s
/sa110
/arm
/ \
107 -e s
/nds32.
*/nds32
/ \
109 -e s
/s390x
/s390
/ -e s
/parisc.
*/hppa
/ \
110 -e s
/ppc.
*/powerpc
/ -e s
/mips.
*/mips
/ \
111 -e s
/xtensa.
*/xtensa
/ )
113 ARCH
= $(TARGET_ARCH
)
117 # Make certain these contain a final "/", but no "//"s.
118 scrub_path
= $(strip $(subst //,/, $(subst ,/, $(call qstrip
,$(1)))))
119 TARGET_SUBARCH
:= $(call qstrip
,$(TARGET_SUBARCH
))
120 RUNTIME_PREFIX
:= $(call scrub_path
,$(RUNTIME_PREFIX
))
121 DEVEL_PREFIX
:= $(call scrub_path
,$(DEVEL_PREFIX
))
122 MULTILIB_DIR
:= $(call scrub_path
,$(MULTILIB_DIR
))
123 KERNEL_HEADERS
:= $(call scrub_path
,$(KERNEL_HEADERS
))
124 export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
127 # Now config hard core
132 VERSION
:= $(MAJOR_VERSION
).
$(MINOR_VERSION
).
$(SUBLEVEL
)
133 ABI_VERSION
:= $(MAJOR_VERSION
)
134 ifneq ($(EXTRAVERSION
),)
135 VERSION
:= $(VERSION
)$(EXTRAVERSION
)
137 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
139 export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION ABI_VERSION LC_ALL
142 SHARED_LIBNAME
:= $(LIBC
).so.
$(ABI_VERSION
)
144 UCLIBC_LDSO_NAME
:= ld-uClibc
145 ARCH_NATIVE_BIT
:= 32
146 ifneq ($(findstring $(TARGET_ARCH
) , hppa64 ia64 powerpc64 s390x sparc64 x86_64
),)
147 UCLIBC_LDSO_NAME
:= ld64-uClibc
148 ARCH_NATIVE_BIT
:= 64
150 ifeq ($(CONFIG_MIPS_N64_ABI
),y
)
151 UCLIBC_LDSO_NAME
:= ld64-uClibc
152 ARCH_NATIVE_BIT
:= 64
156 UCLIBC_LDSO
:= $(UCLIBC_LDSO_NAME
).so.
$(ABI_VERSION
)
157 NONSHARED_LIBNAME
:= uclibc_nonshared.a
158 NONSHARED_LIBPTHREAD
:= libpthread_nonshared.a
160 libc
:= $(top_builddir
)lib
/$(SHARED_LIBNAME
)
161 libc.depend
:= $(top_builddir
)lib
/$(SHARED_LIBNAME
:.
$(ABI_VERSION
)=)
162 interp
:= $(top_builddir
)lib
/interp.os
163 ldso
:= $(top_builddir
)lib
/$(UCLIBC_LDSO
)
164 headers_dep
:= $(top_builddir
)include/bits
/sysnum.h \
165 $(top_builddir
)include/bits
/uClibc_config.h
166 sub_headers
:= $(headers_dep
)
168 LIBS
:= $(interp
) -L
$(top_builddir
)lib
$(libc
:.
$(ABI_VERSION
)=)
170 # Make sure DESTDIR and PREFIX can be used to install
171 # PREFIX is a uClibcism while DESTDIR is a common GNUism
176 ifneq ($(HAVE_SHARED
),y
)
185 ifeq ($(CROSS_COMPILE
),)
186 CROSS_COMPILE
=$(call qstrip
,$(CROSS_COMPILER_PREFIX
))
189 # A nifty macro to make testing gcc features easier
191 if
$(CC
) $(1) -S
-o
/dev
/null
-xc
/dev
/null
> /dev
/null
2>&1; \
192 then echo
"$(1)"; else echo
"$(2)"; fi
)
194 if
$(CC
) -Wa
,$(1) -Wa
,-Z
-c
-o
/dev
/null
-xassembler
/dev
/null
> /dev
/null
2>&1; \
195 then echo
"-Wa,$(1)"; fi
)
197 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; \
198 then echo
"$(1)"; fi
)
200 # Use variable indirection here so that we can have variable
201 # names with fun chars in them like equal signs
202 define check-tool-var
203 ifeq ($(filter $(clean_targets
) CLEAN_
%,$(MAKECMDGOALS
)),)
206 $$(_v
) := $$(call
$(1),$(subst %, ,$(3)))
212 # Usage: check-gcc-var,<flag>
213 # Check the C compiler to see if it supports <flag>.
214 # Export the variable CFLAG_<flag> if it does.
216 $(call check-tool-var
,check_gcc
,CFLAG
,$(1))
218 # Usage: check-as-var,<flag>
219 # Check the assembler to see if it supports <flag>. Export the
220 # variable ASFLAG_<flag> if it does (for invoking the assembler),
221 # as well CFLAG_-Wa<flag> (for invoking the compiler driver).
223 $(call check-tool-var
,check_as
,ASFLAG
,$(1))
225 export $$(_v
) = $$(if
$$(ASFLAG_
$(1)),-Wa
$$(comma
)$$(ASFLAG_
$(1)))
227 # Usage: check-ld-var,<flag>
228 # Check the linker to see if it supports <flag>. Export the
229 # variable LDFLAG_<flag> if it does (for invoking the linker),
230 # as well CFLAG_-Wl<flag> (for invoking the compiler driver).
232 $(call check-tool-var
,check_ld
,LDFLAG
,$(1))
234 export $$(_v
) = $$(if
$$(LDFLAG_
$(1)),-Wl
$$(comma
)$$(LDFLAG_
$(1)))
236 # Usage: cache-output-var,<variable>,<shell command>
237 # Execute <shell command> and cache the output in <variable>.
238 define cache-output-var
240 $(1) := $$(shell $(2))
248 # Note: The check for -nostdlib has to be before all calls to check_ld
249 $(eval
$(call check-gcc-var
,-nostdlib
))
250 $(eval
$(call check-gcc-var
,-nostartfiles
))
251 # deliberately not named CFLAG-fuse-ld since unchecked and from user
252 LDFLAG-fuse-ld
:= $(filter -fuse-ld
=%,$(call qstrip
,$(UCLIBC_EXTRA_CFLAGS
)))
253 # failed to merge target specific data of file /dev/null
254 # Could use -Wl,--script,$(top_srcdir)extra/scripts/none.lds as well.
255 $(eval
$(call check-ld-var
,--no-warn-mismatch
))
257 $(eval
$(call cache-output-var
,GCC_VER
,$(CC
) -dumpversion
))
258 GCC_VER
:= $(subst .
, ,$(GCC_VER
))
259 GCC_MAJOR_VER ?
= $(word 1,$(GCC_VER
))
260 GCC_MINOR_VER ?
= $(word 2,$(GCC_VER
))
262 # Flags in OPTIMIZATION are used only for non-debug builds
265 OPTIMIZATION-
$(GCC_MAJOR_VER
):=
266 OPTIMIZATION-
$(GCC_MAJOR_VER
).
$(GCC_MINOR_VER
):=
268 # Use '-Os' optimization if available, else use -O2, allow Config to override
269 $(eval
$(call check-gcc-var
,-Os
))
270 ifneq ($(CFLAG_-Os
),)
271 OPTIMIZATION
+= $(CFLAG_-Os
)
273 $(eval
$(call check-gcc-var
,-O2
))
274 OPTIMIZATION
+= $(CFLAG_-O2
)
276 # Use the gcc 3.4 -funit-at-a-time optimization when available
277 $(eval
$(call check-gcc-var
,-funit-at-a-time
))
278 OPTIMIZATION-3.4
+= $(CFLAG_-funit-at-a-time
)
279 $(eval
$(call check-gcc-var
,-fstrict-aliasing
))
280 OPTIMIZATION
+= $(CFLAG_-fstrict-aliasing
)
282 # CPU_CFLAGS-y contain options which are not warnings,
283 # not include or library paths, and not optimizations.
285 # Why -funsigned-char: I hunted a bug related to incorrect
286 # sign extension of 'char' type for 10 hours straight. Not fun.
287 CPU_CFLAGS-y
:= -funsigned-char
-fno-builtin
289 $(eval
$(call check-gcc-var
,-fno-asm
))
290 CPU_CFLAGS-y
+= $(CFLAG_-fno-asm
)
291 $(eval
$(call check-gcc-var
,-fmerge-all-constants
))
292 CPU_CFLAGS-y
+= $(CFLAG_-fmerge-all-constants
)
294 ifeq ($(UCLIBC_HAS_SOFT_FLOAT
),y
)
295 ifneq ($(TARGET_ARCH
),bfin
)
296 ifneq ($(TARGET_ARCH
),lm32
)
297 ifneq ($(TARGET_ARCH
),nios2
)
298 ifneq ($(TARGET_ARCH
),nds32
)
299 ifneq ($(TARGET_ARCH
),sh
)
300 ifneq ($(TARGET_ARCH
),c6x
)
301 ifneq ($(TARGET_ARCH
),h8300
)
302 ifneq ($(TARGET_ARCH
),arc
)
303 CPU_CFLAGS-y
+= -msoft-float
314 $(eval
$(call check-gcc-var
,-std
=gnu99
))
315 CPU_CFLAGS-y
+= $(CFLAG_-std
=gnu99
)
317 CPU_CFLAGS-
$(UCLIBC_FORMAT_SHARED_FLAT
) += -mid-shared-library
318 CPU_CFLAGS-
$(UCLIBC_FORMAT_FLAT_SEP_DATA
) += -msep-data
320 CPU_LDFLAGS-
$(ARCH_LITTLE_ENDIAN
) += -Wl
,-EL
321 CPU_LDFLAGS-
$(ARCH_BIG_ENDIAN
) += -Wl
,-EB
324 PICFLAG-
$(UCLIBC_FORMAT_FDPIC_ELF
) := -mfdpic
325 PICFLAG-
$(UCLIBC_FORMAT_DSBT_ELF
) := -mdsbt
-fpic
326 PICFLAG
:= $(PICFLAG-y
)
329 $(eval
$(call check-gcc-var
,-fdata-sections
))
330 $(eval
$(call check-gcc-var
,-ffunction-sections
))
332 # Some nice CPU specific optimizations
333 ifeq ($(TARGET_ARCH
),i386
)
334 $(eval
$(call check-gcc-var
,-fomit-frame-pointer
))
335 OPTIMIZATION
+= $(CFLAG_-fomit-frame-pointer
)
337 ifeq ($(CONFIG_386
)$(CONFIG_486
)$(CONFIG_586
),y
)
338 # TODO: Change this to a gcc version check. This bug
339 # should be fixed with at least gcc-4.3.
340 # Non-SSE capable processor.
341 # NB: this may make SSE insns segfault!
342 # -O1 -march=pentium3, -Os -msse etc are known to be affected.
343 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
344 # -m32 is needed if host is 64-bit
345 OPTIMIZATION
+=$(call check_gcc
,-m32
-mpreferred-stack-boundary
=2,)
347 $(eval
$(call check-gcc-var
,-mpreferred-stack-boundary
=4))
348 OPTIMIZATION
+= $(CFLAG_-mpreferred-stack-boundary
=4)
351 # Choice of alignment (please document why!)
352 # -falign-labels: in-line labels
353 # (reachable by normal code flow, aligning will insert nops
354 # which will be executed - may even make things slower)
355 # -falign-jumps: reachable only by a jump
356 # Generic: no alignment at all (smallest code)
357 GCC_FALIGN
=$(call check_gcc
,-falign-functions
=1 -falign-jumps
=1 -falign-labels
=1 -falign-loops
=1,-malign-jumps
=1 -malign-loops
=1)
358 OPTIMIZATION
+=$(GCC_FALIGN
)
360 # Putting each function and data object into its own section
361 # allows for kbytes of less text if users link against static uclibc
362 # using ld --gc-sections.
363 # ld 2.18 can't do that (yet?) for shared libraries, so we itself
364 # do not use --gc-sections at shared lib link time.
365 # However, in combination with sections being sorted by alignment
366 # it does result in much reduced padding:
367 # text data bss dec hex
368 # 235319 1472 5992 242783 3b45f old.so
369 # 234104 1472 5980 241556 3af94 new.so
370 # Without -ffunction-sections, all functions will get aligned
371 # to 4 byte boundary by as/ld. This is arguably a bug in as.
372 # It specifies 4 byte align for .text even if not told to do so:
373 # Idx Name Size VMA LMA File off Algn
374 # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
375 CPU_CFLAGS-y
+= $(CFLAG_-ffunction-sections
) $(CFLAG_-fdata-sections
)
376 CPU_LDFLAGS-y
+= $(CFLAG_-Wl--sort-common
)
377 $(eval
$(call check-ld-var
,--sort-section
=alignment
))
378 CPU_LDFLAGS-y
+= $(CFLAG_-Wl--sort-section
=alignment
)
384 ifeq ($(TARGET_ARCH
),sparc
)
385 CPU_CFLAGS-
$(CONFIG_SPARC_V7
)+=-mcpu
=v7
386 CPU_CFLAGS-
$(CONFIG_SPARC_V8
)+=-mcpu
=v8
387 CPU_CFLAGS-
$(CONFIG_SPARC_V9
)+=-mcpu
=v9
388 CPU_CFLAGS-
$(CONFIG_SPARC_V9B
)+=$(call check_gcc
,-mcpu
=v9b
,-mcpu
=ultrasparc
)
391 ifeq ($(TARGET_ARCH
),arm
)
392 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-mlittle-endian
393 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mbig-endian
396 ifeq ($(TARGET_ARCH
),metag
)
398 CPU_CFLAGS-
$(CONFIG_META_1_2
)+=
399 CPU_CFLAGS-
$(CONFIG_META_2_1
)+=-Wa
,-mcpu
=metac21
402 ifeq ($(TARGET_ARCH
),mips
)
403 OPTIMIZATION
+=-mno-split-addresses
404 CPU_CFLAGS-
$(CONFIG_MIPS_N64_ABI
)+=-mabi
=64
405 CPU_CFLAGS-
$(CONFIG_MIPS_O32_ABI
)+=-mabi
=32
406 CPU_CFLAGS-
$(CONFIG_MIPS_N32_ABI
)+=-mabi
=n32
407 CPU_CFLAGS-
$(CONFIG_MIPS_NAN_LEGACY
)+=$(call check_gcc
,-mnan
=legacy
)
408 CPU_CFLAGS-
$(CONFIG_MIPS_NAN_2008
)+=$(call check_gcc
,-mnan
=2008)
409 CPU_LDFLAGS-y
+= $(CPU_CFLAGS
)
412 ifeq ($(TARGET_ARCH
),nds32
)
413 CPU_CFLAGS-
$(CONFIG_NDS32_ISA
)+=-march
=nds32
418 ifeq ($(TARGET_ARCH
),sh
)
419 $(eval
$(call check-gcc-var
,-mprefergot
))
420 OPTIMIZATION
+= $(CFLAG_-mprefergot
)
421 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-ml
422 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mb
423 CPU_CFLAGS-
$(CONFIG_SH2
)+=-m2
424 CPU_CFLAGS-
$(CONFIG_SH3
)+=-m3
425 ifeq ($(UCLIBC_HAS_FPU
),y
)
426 CPU_CFLAGS-
$(CONFIG_SH2A
)+=-m2a
427 CPU_CFLAGS-
$(CONFIG_SH4
)+=-m4
428 CPU_CFLAGS-
$(CONFIG_SH4A
)+=-m4a
430 CPU_CFLAGS-
$(CONFIG_SH2A
)+=-m2a-nofpu
431 CPU_CFLAGS-
$(CONFIG_SH4
)+=-m4-nofpu
432 CPU_CFLAGS-
$(CONFIG_SH4A
)+=-m4a-nofpu
436 ifeq ($(TARGET_ARCH
),h8300
)
437 CPU_CFLAGS-
$(CONFIG_H8300H
) += -mh
-mint32
438 CPU_CFLAGS-
$(CONFIG_H8S
) += -ms
-mint32
441 ifeq ($(TARGET_ARCH
),cris
)
442 CPU_LDFLAGS-
$(CONFIG_CRIS
)+=-Wl
,-mcrislinux
443 CPU_LDFLAGS-
$(CONFIG_CRISV32
)+=-Wl
,-mcrislinux
444 CPU_CFLAGS-
$(CONFIG_CRIS
)+=-mlinux
449 ifeq ($(TARGET_ARCH
),m68k
)
450 # -fPIC is only supported for 68020 and above. It is not supported
451 # for 68000, 68010, or Coldfire.
456 ifeq ($(TARGET_ARCH
),powerpc
)
457 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
458 # enough. Therefore use -fpic which will reduce code size and generates
462 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
)
463 CPU_CFLAGS-
$(PPC_HAS_REL16
)+= -DHAVE_ASM_PPC_REL16
464 CPU_CFLAGS-
$(CONFIG_E500
) += "-D__NO_MATH_INLINES"
468 ifeq ($(TARGET_ARCH
),bfin
)
470 ifeq ($(UCLIBC_FORMAT_FDPIC_ELF
),y
)
471 CPU_CFLAGS-y
:=-mfdpic
472 CPU_LDFLAGS-y
+= -Wl
,-melf32bfinfd
476 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT
),y
)
477 PICFLAG
:= -mleaf-id-shared-library
481 ifeq ($(TARGET_ARCH
),frv
)
482 # Using -pie causes the program to have an interpreter, which is
483 # forbidden, so we must make do with -shared. Unfortunately,
484 # -shared by itself would get us global function descriptors
485 # and calls through PLTs, dynamic resolution of symbols, etc,
486 # which would break as well, but -Bsymbolic comes to the rescue.
487 CPU_LDFLAGS-y
+= -Wl
,-melf32frvfd
-Wl
,-Bsymbolic
490 ifeq ($(strip $(TARGET_ARCH
)),avr32
)
491 CPU_CFLAGS-
$(CONFIG_AVR32_AP7
) += -march
=ap
492 CPU_CFLAGS-
$(CONFIG_LINKRELAX
) += -mrelax
493 CPU_LDFLAGS-
$(CONFIG_LINKRELAX
) += --relax
496 ifeq ($(TARGET_ARCH
),c6x
)
498 CPU_CFLAGS-
$(CONFIG_TMS320C64X
) += -march
=c64x
499 CPU_CFLAGS-
$(CONFIG_TMS320C64XPLUS
) += -march
=c64x
+
500 CPU_CFLAGS-
$(ARCH_LITTLE_ENDIAN
)+=-mlittle-endian
501 CPU_CFLAGS-
$(ARCH_BIG_ENDIAN
)+=-mbig-endian
502 CPU_LDFLAGS-y
+= $(CPU_CFLAGS
)
505 ifeq ($(TARGET_ARCH
),arc
)
506 CPU_CFLAGS-
$(CONFIG_ARC_CPU_700
) += -mA7
507 CPU_CFLAGS-
$(CONFIG_ARC_CPU_HS
) += -mcpu
=archs
508 CPU_LDFLAGS-y
+= $(CPU_CFLAGS
) -marclinux
511 $(eval
$(call check-gcc-var
,$(PIEFLAG_NAME
)))
512 PIEFLAG
:= $(CFLAG_
$(PIEFLAG_NAME
))
514 PIEFLAG
:= $(PICFLAG
)
516 # We need to keep track of both the CC PIE flag (above) as
517 # well as the LD PIE flag (below) because we can't rely on
518 # gcc passing -pie if we used -fPIE. We need to directly use -pie
519 # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
520 $(eval
$(call cache-output-var
,LDPIEFLAG
,$(CC
) -Wl
$(comma
)--help
2>/dev
/null | grep
-q
-- -pie
&& echo
"-pie"))
522 # Check for --as-needed support in linker
523 ifndef LD_FLAG_ASNEEDED
524 _LD_FLAG_ASNEEDED
:=$(shell $(CC
) -Wl
,--help
2>/dev
/null | grep
-- --as-needed
)
525 ifneq ($(_LD_FLAG_ASNEEDED
),)
526 export LD_FLAG_ASNEEDED
:=--as-needed
529 ifndef LD_FLAG_NO_ASNEEDED
530 ifdef LD_FLAG_ASNEEDED
531 export LD_FLAG_NO_ASNEEDED
:=--no-as-needed
534 ifndef CC_FLAG_ASNEEDED
535 ifdef LD_FLAG_ASNEEDED
536 export CC_FLAG_ASNEEDED
:=-Wl
,$(LD_FLAG_ASNEEDED
)
539 ifndef CC_FLAG_NO_ASNEEDED
540 ifdef LD_FLAG_NO_ASNEEDED
541 export CC_FLAG_NO_ASNEEDED
:=-Wl
,$(LD_FLAG_NO_ASNEEDED
)
544 link.asneeded
= $(if
$(CC_FLAG_ASNEEDED
),$(if
$(CC_FLAG_NO_ASNEEDED
),$(CC_FLAG_ASNEEDED
) $(1) $(CC_FLAG_NO_ASNEEDED
)))
546 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
548 export ASNEEDED
:=$(shell $(CC
) -Wl
,--help
2>/dev
/null | grep
-q
-- --as-needed
&& echo
"AS_NEEDED ( $(UCLIBC_LDSO) )" || echo
"$(UCLIBC_LDSO)")
551 # Add a bunch of extra pedantic annoyingly strict checks
552 WARNING_FLAGS
= -Wstrict-prototypes
-Wstrict-aliasing
553 ifeq ($(EXTRA_WARNINGS
),y
)
557 -Wmissing-format-attribute \
558 -Wmissing-prototypes \
559 -Wmissing-declarations \
562 -Wold-style-declaration \
563 -Wold-style-definition \
564 -Wdeclaration-after-statement \
568 WARNING_FLAGS
+= $(WARNING_FLAGS-gcc-
$(GCC_MAJOR_VER
))
569 $(foreach w
,$(WARNING_FLAGS
),$(eval
$(call check-gcc-var
,$(w
))))
570 XWARNINGS
= $(call qstrip
,$(WARNINGS
)) $(foreach w
,$(WARNING_FLAGS
),$(CFLAG_
$(w
)))
572 CPU_CFLAGS
=$(call qstrip
,$(CPU_CFLAGS-y
))
574 # Save the tested flag in a single variable and force it to be
575 # evaluated just once. Then use that computed value.
576 $(eval
$(call check-gcc-var
,-fno-stack-protector
))
577 SSP_DISABLE_FLAGS ?
= $(CFLAG_-fno-stack-protector
)
578 ifeq ($(UCLIBC_BUILD_SSP
),y
)
579 $(eval
$(call check-gcc-var
,-fno-stack-protector-all
))
580 $(eval
$(call check-gcc-var
,-fstack-protector
))
581 $(eval
$(call check-gcc-var
,-fstack-protector-all
))
582 SSP_CFLAGS
:= $(CFLAG_-fno-stack-protector-all
)
583 SSP_CFLAGS
+= $(CFLAG_-fstack-protector
)
584 SSP_ALL_CFLAGS ?
= $(CFLAG_-fstack-protector-all
)
586 SSP_CFLAGS
:= $(SSP_DISABLE_FLAGS
)
589 # Collect all CFLAGS components
590 CFLAGS
:= $(XWARNINGS
) $(CPU_CFLAGS
) $(SSP_CFLAGS
) \
591 -nostdinc
-I
$(top_builddir
)include \
592 -I
$(top_srcdir
)include -include libc-symbols.h \
593 -I
$(top_srcdir
)libc
/sysdeps
/linux
/$(TARGET_ARCH
) \
594 -I
$(top_srcdir
)libc
/sysdeps
/linux \
595 -I
$(top_srcdir
)ldso
/ldso
/$(TARGET_ARCH
) \
596 -I
$(top_srcdir
)ldso
/include -I.
598 # We need this to be checked within libc-symbols.h
599 ifneq ($(HAVE_SHARED
),y
)
603 $(eval
$(call check-ld-var
,--warn-once
))
604 $(eval
$(call check-ld-var
,--sort-common
))
605 $(eval
$(call check-ld-var
,--discard-all
))
606 LDFLAGS_NOSTRIP
:=$(LDFLAG-fuse-ld
) $(CPU_LDFLAGS-y
) -shared \
607 -Wl
,--warn-common
$(CFLAG_-Wl--warn-once
) -Wl
,-z
,combreloc
609 ifeq ($(UCLIBC_BUILD_RELRO
),y
)
610 LDFLAGS_NOSTRIP
+=-Wl
,-z
,relro
613 ifeq ($(UCLIBC_BUILD_NOW
),y
)
614 LDFLAGS_NOSTRIP
+=-Wl
,-z
,now
617 ifeq ($(LDSO_GNU_HASH_SUPPORT
),y
)
618 # Be sure that binutils support it
619 $(eval
$(call check-ld-var
,--hash-style
=gnu
))
620 ifeq ($(LDFLAG_--hash-style
=gnu
),)
621 ifneq ($(filter-out $(clean_targets
) CLEAN_
% install_headers headers-y
,$(MAKECMDGOALS
)),)
622 $(error Your binutils do not support
--hash-style option
, while you want to use it
)
625 LDFLAGS_NOSTRIP
+= $(CFLAG_-Wl--hash-style
=gnu
)
630 CFLAGS
+= -O0
-g3
-DDEBUG
632 CFLAGS
+= $(OPTIMIZATION
)
633 CFLAGS
+= $(OPTIMIZATION-
$(GCC_MAJOR_VER
))
634 CFLAGS
+= $(OPTIMIZATION-
$(GCC_MAJOR_VER
).
$(GCC_MINOR_VER
))
635 $(eval
$(call check-ld-var
,-O2
))
636 LDFLAGS_NOSTRIP
+= $(CFLAG_-Wl-O2
)
639 LDFLAGS
:=$(LDFLAGS_NOSTRIP
) -Wl
,-z
,defs
644 STRIPTOOL
:= true
-Stripping_disabled
647 ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS
)),"")
648 CFLAGS
+= $(call qstrip
,$(UCLIBC_EXTRA_CFLAGS
))
650 ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS
)),"")
651 LDFLAGS
+= $(call qstrip
,$(UCLIBC_EXTRA_LDFLAGS
))
654 ifeq ($(UCLIBC_HAS_STDIO_FUTEXES
),y
)
655 CFLAGS
+= -D__USE_STDIO_FUTEXES__
658 ifeq ($(UCLIBC_HAS_THREADS
),y
)
659 ifeq ($(UCLIBC_HAS_THREADS_NATIVE
),y
)
661 CFLAGS
+= -DHAVE_FORCED_UNWIND
-D_LIBC_REENTRANT
663 ifeq ($(UCLIBC_HAS_LINUXTHREADS
),y
)
664 PTNAME
:= linuxthreads
667 PTDIR
:= libpthread
/$(PTNAME
)
668 # set up system dependencies include dirs (NOTE: order matters!)
669 ifeq ($(UCLIBC_HAS_THREADS_NATIVE
),y
)
670 PTINC
:= -I
$(top_builddir
)$(PTDIR
) \
671 -I
$(top_srcdir
)$(PTDIR
) \
672 $(if
$(TARGET_SUBARCH
),-I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
)/$(TARGET_SUBARCH
)) \
673 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
) \
674 -I
$(top_builddir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
675 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
676 -I
$(top_builddir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
677 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
678 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread \
679 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread
/bits \
680 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/generic
682 # Test for TLS if NPTL support was selected.
684 GCC_HAS_TLS
=$(shell \
685 echo
"extern __thread int foo;" |
$(CC
) -o
/dev
/null
-S
-xc
- 2>&1)
686 ifneq ($(GCC_HAS_TLS
),)
689 @echo
"#### Your compiler does not support TLS and you are trying to build uClibc";
690 @echo
"#### with NPTL support. Upgrade your binutils and gcc to versions which";
691 @echo
"#### support TLS for your architecture. Do not contact uClibc maintainers";
692 @echo
"#### about this problem.";
694 @echo
"#### Exiting...";
700 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux
/$(TARGET_ARCH
) \
701 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/$(TARGET_ARCH
) \
702 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/unix
/sysv
/linux \
703 -I
$(top_srcdir
)$(PTDIR
)/sysdeps
/pthread \
704 -I
$(top_srcdir
)$(PTDIR
) \
705 -I
$(top_srcdir
)libpthread
712 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
)
719 CFLAGS
+= -I
$(KERNEL_HEADERS
)
721 ifneq ($(DOASSERTS
),y
)
725 ifeq ($(SYMBOL_PREFIX
),_
)
726 CFLAGS
+=-D__UCLIBC_UNDERSCORES__
729 # Keep the check_as from being needlessly executed
730 ifeq ($(UCLIBC_BUILD_NOEXECSTACK
),y
)
731 $(eval
$(call check-as-var
,--noexecstack
))
733 ASFLAGS
+= $(ASFLAG_--noexecstack
)
735 LIBGCC_CFLAGS ?
= $(CFLAGS
) $(CPU_CFLAGS-y
)
736 $(eval
$(call cache-output-var
,LIBGCC_A
,$(CC
) $(LIBGCC_CFLAGS
) -print-libgcc-file-name
))
737 $(eval
$(call cache-output-var
,LIBGCC_EH
,$(CC
) $(LIBGCC_CFLAGS
) -print-file-name
=libgcc_eh.a
))
738 # with -O0 we (e.g. lockf) might end up with references to
739 # _Unwind_Resume, so pull in gcc_eh in this case..
740 # with a --disable-shared toolchain, libgcc_eh.a and libgcc.a are combined
741 # in libgcc.a, so check if the printed file exist, before adding to the commandline
742 LIBGCC_EH_FILE
:= $(shell if
[ -f
$(LIBGCC_EH
) ]; then echo
$(LIBGCC_EH
); fi
)
743 LIBGCC_DIR
:= $(dir $(LIBGCC_A
))
744 LIBGCC
:= $(LIBGCC_A
) $(if
$(DODEBUG
),$(LIBGCC_EH_FILE
))
746 # moved from libpthread/linuxthreads
747 ifeq ($(UCLIBC_CTOR_DTOR
),y
)
748 SHARED_START_FILES
:=$(top_builddir
)lib
/crti.o
$(LIBGCC_DIR
)crtbeginS.o
749 SHARED_END_FILES
:=$(LIBGCC_DIR
)crtendS.o
$(top_builddir
)lib
/crtn.o
752 LOCAL_INSTALL_PATH
:= $(if
$(O
),$(O
)/)install_dir
754 PTHREAD_GENERATE_MANGLE ?
= -n
"s/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*\$$/\#define \1 \2/p"