]> Git Repo - uclibc-ng.git/blame - Rules.mak
do not define _ISOC99_SOURCE in specific files
[uclibc-ng.git] / Rules.mak
CommitLineData
2c8e931c 1# Rules.make for uClibc
af1112c8 2#
b74c3aa1 3# Copyright (C) 2000-2008 Erik Andersen <[email protected]>
af1112c8 4#
15870aba 5# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
af1112c8 6#
f149abb8 7
fd37d197
DV
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
18
a4d40bdd 19# check for proper make version
9c2d269c 20ifneq ($(findstring x3.7,x$(MAKE_VERSION)),)
a4d40bdd
MF
21$(error Your make is too old $(MAKE_VERSION). Go get at least 3.80)
22endif
23
5f9dfa09
MF
24#-----------------------------------------------------------
25# This file contains rules which are shared between multiple
73c81126
EA
26# Makefiles. All normal configuration options live in the
27# file named ".config". Don't mess with this file unless
5f9dfa09 28# you know what you are doing.
f149abb8
EA
29
30
5f9dfa09 31#-----------------------------------------------------------
73c81126 32# If you are running a cross compiler, you will want to set
ae14cd49 33# 'CROSS_COMPILE' to something more interesting ... Target
73c81126
EA
34# architecture is determined by asking the CC compiler what
35# arch it compiles things for, so unless your compiler is
5f9dfa09 36# broken, you should not need to specify TARGET_ARCH.
f149abb8
EA
37#
38# Most people will set this stuff on the command line, i.e.
ae14cd49 39# make CROSS_COMPILE=arm-linux-
f21f7c41 40# will build uClibc for 'arm'.
ae14cd49 41# CROSS is still supported for backward compatibily only
f149abb8 42
ae14cd49
CA
43CROSS_COMPILE ?= $(CROSS)
44
45CC = $(CROSS_COMPILE)gcc
46AR = $(CROSS_COMPILE)ar
47LD = $(CROSS_COMPILE)ld
48NM = $(CROSS_COMPILE)nm
49OBJDUMP = $(CROSS_COMPILE)objdump
50STRIPTOOL = $(CROSS_COMPILE)strip
6737908f 51
5f9dfa09
MF
52INSTALL = install
53LN = ln
54RM = rm -f
3a0333ee 55TAR = tar
4e885757
BRF
56SED = sed
57AWK = awk
49f0dd0f 58
a9d7ad63
MF
59STRIP_FLAGS ?= -x -R .note -R .comment
60
cf578c75 61## unused? if yes, remove after 0.9.31
4a2724d9 62## UNIFDEF := $(top_builddir)extra/scripts/unifdef
f2420be7 63
6737908f 64# Select the compiler needed to build binaries for your development system
5f9dfa09 65HOSTCC = gcc
88fa5f36 66BUILD_CFLAGS = -Os -Wall
af1112c8 67
5f9dfa09
MF
68#---------------------------------------------------------
69# Nothing beyond this point should ever be touched by mere
70# mortals. Unless you hang out with the gods, you should
71# probably leave all this stuff alone.
d874cc67 72
47247764
BRF
73# strip quotes
74qstrip = $(strip $(subst ",,$(1)))
75#"))
fd37d197 76
d874cc67
MF
77# Pull in the user's uClibc configuration
78ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
79-include $(top_builddir).config
80endif
47247764 81TARGET_ARCH:=$(call qstrip,$(TARGET_ARCH))
554b79bf
BRF
82ifeq ($(TARGET_ARCH),)
83ARCH ?= $(shell uname -m | $(SED) -e s/i.86/i386/ \
84 -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
85 -e s/arm.*/arm/ -e s/sa110/arm/ \
86 -e s/sh.*/sh/ \
87 -e s/s390x/s390/ -e s/parisc.*/hppa/ \
88 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
89 -e s/xtensa.*/xtensa/ )
90else
91ARCH = $(TARGET_ARCH)
92endif
93export ARCH
d874cc67
MF
94
95# Make certain these contain a final "/", but no "//"s.
47247764 96TARGET_SUBARCH:=$(call qstrip,$(TARGET_SUBARCH))
80f55879
PM
97RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(RUNTIME_PREFIX)))))
98DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(DEVEL_PREFIX)))))
99MULTILIB_DIR:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(MULTILIB_DIR)))))
47247764 100KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(KERNEL_HEADERS)))))
4be3ace8 101export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
d874cc67
MF
102
103
104# Now config hard core
5f9dfa09
MF
105MAJOR_VERSION := 0
106MINOR_VERSION := 9
e288fdca
BRF
107SUBLEVEL := 34
108EXTRAVERSION :=-git
5f9dfa09 109VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
cce1105f 110ABI_VERSION := $(MAJOR_VERSION)
6bc45b2d 111ifneq ($(EXTRAVERSION),)
76a888be 112VERSION := $(VERSION)$(EXTRAVERSION)
6bc45b2d 113endif
2c84741c 114# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
5f9dfa09 115LC_ALL := C
71239593 116export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION ABI_VERSION LC_ALL
58bd16ab 117
15870aba 118LIBC := libc
71239593 119SHARED_LIBNAME := $(LIBC).so.$(ABI_VERSION)
69cba61d 120UBACKTRACE_DSO := libubacktrace.so.$(ABI_VERSION)
44784f8a 121ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 mips64 powerpc64 s390x sparc64 x86_64 ),)
d874cc67 122UCLIBC_LDSO_NAME := ld64-uClibc
ab600d2a 123ARCH_NATIVE_BIT := 64
e9da7cba
MF
124else
125UCLIBC_LDSO_NAME := ld-uClibc
ab600d2a 126ARCH_NATIVE_BIT := 32
d874cc67 127endif
71239593 128UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(ABI_VERSION)
15870aba 129NONSHARED_LIBNAME := uclibc_nonshared.a
71239593
NC
130libc := $(top_builddir)lib/$(SHARED_LIBNAME)
131libc.depend := $(top_builddir)lib/$(SHARED_LIBNAME:.$(ABI_VERSION)=)
9381d622 132ifneq ($(ARCH_HAS_NO_SHARED),y)
7aab619f 133libdl.depend := $(top_builddir)lib/libdl.so
9381d622
BRF
134endif
135ifneq ($(HAS_NO_THREADS),y)
7aab619f 136libpthread.depend := $(top_builddir)lib/libpthread.so
9381d622 137endif
72c0f6a2
PM
138interp := $(top_builddir)lib/interp.os
139ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
3c45ffd2 140headers_dep := $(top_builddir)include/bits/sysnum.h
94c41e72 141sub_headers := $(headers_dep)
15870aba 142
5937c62e 143#LIBS :=$(interp) -L$(top_builddir)lib -lc
71239593 144LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(ABI_VERSION)=)
c75d8083 145
129b1d71
MF
146# Make sure DESTDIR and PREFIX can be used to install
147# PREFIX is a uClibcism while DESTDIR is a common GNUism
148ifndef PREFIX
149PREFIX = $(DESTDIR)
150endif
151
4b204436
MF
152ifneq ($(HAVE_SHARED),y)
153libc :=
c57c6023
PM
154interp :=
155ldso :=
4b204436
MF
156endif
157
51ce75b5
BRF
158comma:=,
159space:= #
160
b18b4210 161ifeq ($(CROSS_COMPILE),)
ae14cd49 162CROSS_COMPILE=$(call qstrip,$(CROSS_COMPILER_PREFIX))
05827f4c
MF
163endif
164
efe79476 165# A nifty macro to make testing gcc features easier
8c9cfb76
MF
166check_gcc=$(shell \
167 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
efe79476 168 then echo "$(1)"; else echo "$(2)"; fi)
8c9cfb76
MF
169check_as=$(shell \
170 if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
75ca73f4 171 then echo "-Wa,$(1)"; fi)
749dbd6e
PK
172check_ld=$(shell \
173 if $(LD) $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1; \
174 then echo "$(1)"; fi)
efe79476 175
a899b909
MF
176# Use variable indirection here so that we can have variable
177# names with fun chars in them like equal signs
178define check-tool-var
c3e65564 179ifeq ($(filter $(clean_targets) CLEAN_%,$(MAKECMDGOALS)),)
a899b909
MF
180_v = $(2)_$(3)
181ifndef $$(_v)
182$$(_v) := $$(call $(1),$(subst %, ,$(3)))
183export $$(_v)
184endif
94bf930d 185endif
a899b909
MF
186endef
187
188# Usage: check-gcc-var,<flag>
189# Check the C compiler to see if it supports <flag>.
190# Export the variable CFLAG_<flag> if it does.
191define check-gcc-var
192$(call check-tool-var,check_gcc,CFLAG,$(1))
193endef
194# Usage: check-as-var,<flag>
195# Check the assembler to see if it supports <flag>. Export the
196# variable ASFLAG_<flag> if it does (for invoking the assembler),
197# as well CFLAG_-Wa<flag> (for invoking the compiler driver).
198define check-as-var
199$(call check-tool-var,check_as,ASFLAG,$(1))
faf51f00 200_v = CFLAG_-Wa$(1)
03a008e2 201export $$(_v) = $$(if $$(ASFLAG_$(1)),-Wa$$(comma)$$(ASFLAG_$(1)))
a899b909
MF
202endef
203# Usage: check-ld-var,<flag>
204# Check the linker to see if it supports <flag>. Export the
205# variable LDFLAG_<flag> if it does (for invoking the linker),
206# as well CFLAG_-Wl<flag> (for invoking the compiler driver).
207define check-ld-var
208$(call check-tool-var,check_ld,LDFLAG,$(1))
faf51f00
MF
209_v = CFLAG_-Wl$(1)
210export $$(_v) = $$(if $$(LDFLAG_$(1)),-Wl$$(comma)$$(LDFLAG_$(1)))
a899b909
MF
211endef
212# Usage: cache-output-var,<variable>,<shell command>
213# Execute <shell command> and cache the output in <variable>.
214define cache-output-var
215ifndef $(1)
216$(1) := $$(shell $(2))
217export $(1)
218endif
219endef
220
221
e970fad1 222ARFLAGS:=cr
aa966844 223
fd37d197 224
e348b8f7 225# Flags in OPTIMIZATION are used only for non-debug builds
fd37d197 226
efe79476 227OPTIMIZATION:=
f350d5a2 228# Use '-Os' optimization if available, else use -O2, allow Config to override
a899b909
MF
229$(eval $(call check-gcc-var,-Os))
230ifneq ($(CFLAG_-Os),)
231OPTIMIZATION += $(CFLAG_-Os)
232else
233$(eval $(call check-gcc-var,-O2))
234OPTIMIZATION += $(CFLAG_-O2)
235endif
f350d5a2 236# Use the gcc 3.4 -funit-at-a-time optimization when available
a899b909
MF
237$(eval $(call check-gcc-var,-funit-at-a-time))
238OPTIMIZATION += $(CFLAG_-funit-at-a-time)
cf8e5963 239# shrinks code by about 0.1%
a899b909
MF
240$(eval $(call check-gcc-var,-fmerge-all-constants))
241$(eval $(call check-gcc-var,-fstrict-aliasing))
242OPTIMIZATION += $(CFLAG_-fmerge-all-constants) $(CFLAG_-fstrict-aliasing)
f350d5a2 243
a899b909
MF
244$(eval $(call cache-output-var,GCC_VER,$(CC) -dumpversion))
245GCC_VER := $(subst ., ,$(GCC_VER))
246GCC_MAJOR_VER ?= $(word 1,$(GCC_VER))
247#GCC_MINOR_VER ?= $(word 2,$(GCC_VER))
f350d5a2
PM
248
249ifeq ($(GCC_MAJOR_VER),4)
250# shrinks code, results are from 4.0.2
251# 0.36%
a899b909
MF
252$(eval $(call check-gcc-var,-fno-tree-loop-optimize))
253OPTIMIZATION += $(CFLAG_-fno-tree-loop-optimize)
f350d5a2 254# 0.34%
a899b909
MF
255$(eval $(call check-gcc-var,-fno-tree-dominator-opts))
256OPTIMIZATION += $(CFLAG_-fno-tree-dominator-opts)
f350d5a2 257# 0.1%
a899b909
MF
258$(eval $(call check-gcc-var,-fno-strength-reduce))
259OPTIMIZATION += $(CFLAG_-fno-strength-reduce)
f350d5a2
PM
260endif
261
fd37d197
DV
262
263# CPU_CFLAGS-y contain options which are not warnings,
264# not include or library paths, and not optimizations.
265
266# Why -funsigned-char: I hunted a bug related to incorrect
267# sign extension of 'char' type for 10 hours straight. Not fun.
268CPU_CFLAGS-y := -funsigned-char -fno-builtin
269
a899b909
MF
270$(eval $(call check-gcc-var,-fno-asm))
271CPU_CFLAGS-y += $(CFLAG_-fno-asm)
fd37d197
DV
272
273LDADD_LIBFLOAT=
274ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
275# If -msoft-float isn't supported, we want an error anyway.
276# Hmm... might need to revisit this for arm since it has 2 different
277# soft float encodings.
278ifneq ($(TARGET_ARCH),nios)
279ifneq ($(TARGET_ARCH),nios2)
280ifneq ($(TARGET_ARCH),sh)
46d6a248 281ifneq ($(TARGET_ARCH),c6x)
fd37d197
DV
282CPU_CFLAGS-y += -msoft-float
283endif
284endif
285endif
46d6a248 286endif
fd37d197
DV
287ifeq ($(TARGET_ARCH),arm)
288# No longer needed with current toolchains, but leave it here for now.
289# If anyone is actually still using gcc 2.95 (say), they can uncomment it.
290# LDADD_LIBFLOAT=-lfloat
291endif
292endif
293
a899b909
MF
294$(eval $(call check-gcc-var,-std=gnu99))
295CPU_CFLAGS-y += $(CFLAG_-std=gnu99)
fd37d197 296
dcad31e6
MF
297CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
298CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
299
045da529
MF
300CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN) += -Wl,-EL
301CPU_LDFLAGS-$(ARCH_BIG_ENDIAN) += -Wl,-EB
302
f0a5fcde 303PICFLAG-y := -fPIC
dcad31e6 304PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
46d6a248 305PICFLAG-$(UCLIBC_FORMAT_DSBT_ELF) := -mdsbt -fpic
f2410a17 306PICFLAG := $(PICFLAG-y)
ce5d0580 307PIEFLAG_NAME:=-fPIE
4efa075c 308
0c6405c1 309# Some nice CPU specific optimizations
15870aba 310ifeq ($(TARGET_ARCH),i386)
a899b909
MF
311$(eval $(call check-gcc-var,-fomit-frame-pointer))
312 OPTIMIZATION += $(CFLAG_-fomit-frame-pointer)
e348b8f7 313
5196e42e
DV
314ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586)$(CONFIG_586MMX),y)
315 # Non-SSE capable processor.
e348b8f7
DV
316 # NB: this may make SSE insns segfault!
317 # -O1 -march=pentium3, -Os -msse etc are known to be affected.
5196e42e 318 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
64577cf4
DV
319 # -m32 is needed if host is 64-bit
320 OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
5196e42e 321else
a899b909
MF
322$(eval $(call check-gcc-var,-mpreferred-stack-boundary=4))
323 OPTIMIZATION += $(CFLAG_-mpreferred-stack-boundary=4)
5196e42e 324endif
e348b8f7
DV
325
326 # Choice of alignment (please document why!)
327 # -falign-labels: in-line labels
328 # (reachable by normal code flow, aligning will insert nops
329 # which will be executed - may even make things slower)
330 # -falign-jumps: reachable only by a jump
331 # Generic: no alignment at all (smallest code)
332 GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
333ifeq ($(CONFIG_K7),y)
9f59aad1
DV
334 # Align functions to four bytes, use default for jumps and loops (why?)
335 GCC_FALIGN=$(call check_gcc,-falign-functions=4 -falign-labels=1,-malign-functions=4)
e348b8f7
DV
336endif
337ifeq ($(CONFIG_CRUSOE),y)
9f59aad1
DV
338 # Use compiler's default for functions, jumps and loops (why?)
339 GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
e348b8f7
DV
340endif
341ifeq ($(CONFIG_CYRIXIII),y)
9f59aad1
DV
342 # Use compiler's default for functions, jumps and loops (why?)
343 GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
e348b8f7
DV
344endif
345 OPTIMIZATION+=$(GCC_FALIGN)
346
347 # Putting each function and data object into its own section
348 # allows for kbytes of less text if users link against static uclibc
349 # using ld --gc-sections.
350 # ld 2.18 can't do that (yet?) for shared libraries, so we itself
351 # do not use --gc-sections at shared lib link time.
352 # However, in combination with sections being sorted by alignment
353 # it does result in much reduced padding:
354 # text data bss dec hex
355 # 235319 1472 5992 242783 3b45f old.so
356 # 234104 1472 5980 241556 3af94 new.so
357 # Without -ffunction-sections, all functions will get aligned
358 # to 4 byte boundary by as/ld. This is arguably a bug in as.
359 # It specifies 4 byte align for .text even if not told to do so:
360 # Idx Name Size VMA LMA File off Algn
361 # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
a899b909
MF
362 CPU_CFLAGS-y += $(CFLAG_-ffunction-sections) $(CFLAG_-fdata-sections)
363 CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-common)
a4421e60
MF
364$(eval $(call check-ld-var,--sort-section=alignment))
365 CPU_LDFLAGS-y += $(CFLAG_-Wl--sort-section=alignment)
e348b8f7 366
29c5e0ad
MF
367 CPU_LDFLAGS-y+=-m32
368 CPU_CFLAGS-y+=-m32
6a2d1ca4
EA
369 CPU_CFLAGS-$(CONFIG_386)+=-march=i386
370 CPU_CFLAGS-$(CONFIG_486)+=-march=i486
bbab258a 371 CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
6a2d1ca4
EA
372 CPU_CFLAGS-$(CONFIG_586)+=-march=i586
373 CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
374 CPU_CFLAGS-$(CONFIG_686)+=-march=i686
bbab258a 375 CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
6a2d1ca4
EA
376 CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
377 CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
378 CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
e348b8f7
DV
379 CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686)
380 CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686
6a2d1ca4
EA
381 CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
382 CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
e348b8f7 383 CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486)
bbab258a 384 CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
06d634ea 385endif
0c6405c1 386
15870aba 387ifeq ($(TARGET_ARCH),sparc)
4147ffbc
MF
388 CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
389 CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
390 CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
391 CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
392endif
393
15870aba 394ifeq ($(TARGET_ARCH),arm)
6a2d1ca4
EA
395 CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
396 CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
bda61174 397 CPU_CFLAGS-$(COMPILE_IN_THUMB_MODE)+=-mthumb
0c6405c1
EA
398endif
399
15870aba 400ifeq ($(TARGET_ARCH),mips)
72210a84 401 OPTIMIZATION+=-mno-split-addresses
f6552f74
MNI
402 CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
403 CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
404 CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
405 CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
406 CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
959cac18 407 CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32R2)+=-march=mips32r2 -mtune=mips32r2
f6552f74 408 CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
1da8fd92 409 ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
51ce75b5
BRF
410 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
411 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
1da8fd92
EA
412 endif
413 ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
51ce75b5
BRF
414 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
415 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
1da8fd92
EA
416 endif
417 CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
418 CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
419 CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
f6552f74
MNI
420endif
421
40770ac3 422ifeq ($(TARGET_ARCH),nios)
72210a84 423 OPTIMIZATION+=-funaligned-struct-hack
51ce75b5
BRF
424 CPU_LDFLAGS-y+=-Wl,-m32
425 CPU_CFLAGS-y+=-Wl,-m32
40770ac3
MF
426endif
427
15870aba 428ifeq ($(TARGET_ARCH),sh)
a899b909
MF
429$(eval $(call check-gcc-var,-mprefergot))
430 OPTIMIZATION += $(CFLAG_-mprefergot)
6a2d1ca4
EA
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
4d1b9395 435ifeq ($(UCLIBC_HAS_FPU),y)
e8a91ad3 436 CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
6a2d1ca4 437 CPU_CFLAGS-$(CONFIG_SH4)+=-m4
e8a91ad3
PM
438else
439 CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
440 CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
441endif
533d76fb
EA
442endif
443
15870aba 444ifeq ($(TARGET_ARCH),sh64)
6a2d1ca4
EA
445 CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
446 CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
447 CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
5a2610fb 448endif
163df9f2 449
15870aba 450ifeq ($(TARGET_ARCH),h8300)
23656d08 451 SYMBOL_PREFIX=_
51ce75b5
BRF
452 CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
453 CPU_LDFLAGS-$(CONFIG_H8S) += -Wl,-ms8300s
c5598b73
MF
454 CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
455 CPU_CFLAGS-$(CONFIG_H8S) += -ms -mint32
de2abcca
EA
456endif
457
64f11aa9 458ifeq ($(TARGET_ARCH),i960)
72210a84 459 OPTIMIZATION+=-mh -mint32 #-fsigned-char
64f11aa9
PM
460endif
461
462ifeq ($(TARGET_ARCH),e1)
72210a84 463 OPTIMIZATION+=-mgnu-param
64f11aa9
PM
464endif
465
15870aba 466ifeq ($(TARGET_ARCH),cris)
51ce75b5
BRF
467 CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
468 CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
6a2d1ca4 469 CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
783a979b 470 PICFLAG:=-fpic
ce5d0580 471 PIEFLAG_NAME:=-fpie
783a979b
JT
472endif
473
39eff515
MF
474ifeq ($(TARGET_ARCH),m68k)
475 # -fPIC is only supported for 68020 and above. It is not supported
476 # for 68000, 68010, or Coldfire.
477 PICFLAG:=-fpic
478 PIEFLAG_NAME:=-fpie
479endif
480
15870aba 481ifeq ($(TARGET_ARCH),powerpc)
783a979b
JT
482# PowerPC can hold 8192 entries in its GOT with -fpic which is more than
483# enough. Therefore use -fpic which will reduce code size and generates
484# faster code.
485 PICFLAG:=-fpic
ce5d0580 486 PIEFLAG_NAME:=-fpie
e26ed573
JT
487 PPC_HAS_REL16:=$(shell echo -e "\t.text\n\taddis 11,30,_GLOBAL_OFFSET_TABLE_-.@ha" | $(CC) -c -x assembler -o /dev/null - 2> /dev/null && echo -n y || echo -n n)
488 CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
feeb0301 489 CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
e04c4c3c 490
afb1cd9b
TA
491endif
492
f1e85d44 493ifeq ($(TARGET_ARCH),bfin)
23656d08 494 SYMBOL_PREFIX=_
f1e85d44
BS
495ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
496 CPU_CFLAGS-y:=-mfdpic
497 CPU_LDFLAGS-y += -Wl,-melf32bfinfd
498 PICFLAG:=-fpic
499 PIEFLAG_NAME:=-fpie
500endif
501ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
502 PICFLAG := -mleaf-id-shared-library
503endif
504endif
505
15870aba 506ifeq ($(TARGET_ARCH),frv)
51ce75b5 507 CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
afd3f33a
MF
508 # Using -pie causes the program to have an interpreter, which is
509 # forbidden, so we must make do with -shared. Unfortunately,
510 # -shared by itself would get us global function descriptors
511 # and calls through PLTs, dynamic resolution of symbols, etc,
512 # which would break as well, but -Bsymbolic comes to the rescue.
8b49628c 513 export LDPIEFLAG:=-shared -Wl,-Bsymbolic
baa67289
EA
514 UCLIBC_LDSO=ld.so.1
515endif
516
e130b681
CA
517ifeq ($(strip $(TARGET_ARCH)),avr32)
518 CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap
519 CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax
520 CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
521endif
522
23656d08
BS
523ifeq ($(TARGET_ARCH),i960)
524 SYMBOL_PREFIX=_
525endif
526
23656d08
BS
527ifeq ($(TARGET_ARCH),v850)
528 SYMBOL_PREFIX=_
529endif
530
46d6a248
AJ
531ifeq ($(TARGET_ARCH),c6x)
532 PIEFLAG:=
533 CPU_CFLAGS-$(CONFIG_TMS320C64X) += -march=c64x
534 CPU_CFLAGS-$(CONFIG_TMS320C64XPLUS) += -march=c64x+
535 CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
536 CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
537 CPU_LDFLAGS-y += $(CPU_CFLAGS)
538endif
539
a899b909
MF
540$(eval $(call check-gcc-var,$(PIEFLAG_NAME)))
541PIEFLAG := $(CFLAG_$(PIEFLAG_NAME))
542ifeq ($(PIEFLAG),)
543PIEFLAG := $(PICFLAG)
afd3f33a 544endif
73c81126
EA
545# We need to keep track of both the CC PIE flag (above) as
546# well as the LD PIE flag (below) because we can't rely on
9324e666
BRF
547# gcc passing -pie if we used -fPIE. We need to directly use -pie
548# instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
a899b909 549$(eval $(call cache-output-var,LDPIEFLAG,$(LD) --help 2>/dev/null | grep -q -- -pie && echo "-pie"))
ce5d0580 550
db5c5752
BRF
551# Check for --as-needed support in linker
552ifndef LD_FLAG_ASNEEDED
553_LD_FLAG_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -- --as-needed)
554ifneq ($(_LD_FLAG_ASNEEDED),)
555export LD_FLAG_ASNEEDED:=--as-needed
556endif
557endif
558ifndef LD_FLAG_NO_ASNEEDED
559ifdef LD_FLAG_ASNEEDED
560export LD_FLAG_NO_ASNEEDED:=--no-as-needed
561endif
562endif
563ifndef CC_FLAG_ASNEEDED
564ifdef LD_FLAG_ASNEEDED
565export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED)
566endif
567endif
568ifndef CC_FLAG_NO_ASNEEDED
569ifdef LD_FLAG_NO_ASNEEDED
570export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED)
571endif
572endif
7da4d1e7 573link.asneeded = $(if $(findstring yy,$(CC_FLAG_ASNEEDED)$(CC_FLAG_NO_ASNEEDED)),$(CC_FLAG_ASNEEDED) $(1) $(CC_FLAG_NO_ASNEEDED))
db5c5752 574
5eef4411
PM
575# Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
576ifndef ASNEEDED
d9ec8005 577export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
01c125c3 578
37eb913e 579# Only used in installed libc.so linker script
01c125c3
KC
580ifeq ($(UCLIBC_HAS_BACKTRACE),y)
581export UBACKTRACE_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && \
582 echo "GROUP ( AS_NEEDED ( $(UBACKTRACE_DSO) ) )" || \
583 echo "GROUP ( $(UBACKTRACE_DSO) )")
37eb913e
SC
584else
585export UBACKTRACE_ASNEEDED:=""
586endif
5eef4411
PM
587endif
588
aa966844 589# Add a bunch of extra pedantic annoyingly strict checks
a899b909 590WARNING_FLAGS = -Wstrict-prototypes -Wstrict-aliasing
e73b1211 591ifeq ($(EXTRA_WARNINGS),y)
a899b909 592WARNING_FLAGS += \
0d289184
BRF
593 -Wformat=2 \
594 -Wmissing-noreturn \
595 -Wmissing-format-attribute \
596 -Wmissing-prototypes \
597 -Wmissing-declarations \
598 -Wnested-externs \
599 -Wnonnull \
600 -Wold-style-declaration \
601 -Wold-style-definition \
602 -Wshadow \
a899b909 603 -Wundef
fd37d197 604# Works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
a899b909 605WARNING_FLAGS-gcc-4 += -Wdeclaration-after-statement
e73b1211 606endif
a899b909
MF
607WARNING_FLAGS += $(WARNING_FLAGS-gcc-$(GCC_MAJOR_VER))
608$(foreach w,$(WARNING_FLAGS),$(eval $(call check-gcc-var,$(w))))
609XWARNINGS = $(call qstrip,$(WARNINGS)) $(foreach w,$(WARNING_FLAGS),$(CFLAG_$(w)))
610
47247764 611CPU_CFLAGS=$(call qstrip,$(CPU_CFLAGS-y))
53d8027c 612
a899b909
MF
613# Save the tested flag in a single variable and force it to be
614# evaluated just once. Then use that computed value.
615$(eval $(call check-gcc-var,-fno-stack-protector))
616SSP_DISABLE_FLAGS ?= $(CFLAG_-fno-stack-protector)
c57c6023 617ifeq ($(UCLIBC_BUILD_SSP),y)
a899b909
MF
618$(eval $(call check-gcc-var,-fno-stack-protector-all))
619$(eval $(call check-gcc-var,-fstack-protector))
620$(eval $(call check-gcc-var,-fstack-protector-all))
621SSP_CFLAGS := $(CFLAG_-fno-stack-protector-all)
622SSP_CFLAGS += $(CFLAG_-fstack-protector)
623SSP_ALL_CFLAGS ?= $(CFLAG_-fstack-protector-all)
c57c6023
PM
624else
625SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
626endif
c5598b73 627
a899b909 628$(eval $(call check-gcc-var,-nostdlib))
fd37d197
DV
629
630# Collect all CFLAGS components
49d8a0e9 631CFLAGS := -include $(top_srcdir)include/libc-symbols.h \
c57c6023 632 $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
49d8a0e9 633 -nostdinc -I$(top_builddir)include -I$(top_srcdir)include -I. \
828ba271 634 -I$(top_srcdir)libc/sysdeps/linux \
1030faf5 635 -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)
8ceaf7c7 636
c57c6023
PM
637# We need this to be checked within libc-symbols.h
638ifneq ($(HAVE_SHARED),y)
639CFLAGS += -DSTATIC
9d7a22d3
MNI
640endif
641
a899b909
MF
642$(eval $(call check-ld-var,--warn-once))
643$(eval $(call check-ld-var,--sort-common))
644$(eval $(call check-ld-var,--discard-all))
8b49628c 645LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -shared \
a899b909 646 -Wl,--warn-common $(CFLAG_-Wl--warn-once) -Wl,-z,combreloc
89736cf6 647# binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
a899b909
MF
648#$(eval $(call check-ld-var,--gc-sections))
649#LDFLAGS_NOSTRIP += $(LDFLAG_--gc-sections)
650
651$(eval $(call check-gcc-var,-fdata-sections))
652$(eval $(call check-gcc-var,-ffunction-sections))
15870aba
PM
653
654ifeq ($(UCLIBC_BUILD_RELRO),y)
51ce75b5 655LDFLAGS_NOSTRIP+=-Wl,-z,relro
15870aba
PM
656endif
657
658ifeq ($(UCLIBC_BUILD_NOW),y)
51ce75b5 659LDFLAGS_NOSTRIP+=-Wl,-z,now
15870aba
PM
660endif
661
6630516b
CA
662ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
663# Be sure that binutils support it
a899b909
MF
664$(eval $(call check-ld-var,--hash-style=gnu))
665ifeq ($(LDFLAG_--hash-style=gnu),)
c3e65564 666ifneq ($(filter-out $(clean_targets) CLEAN_% install_headers headers-y,$(MAKECMDGOALS)),)
47247764 667$(error Your binutils do not support --hash-style option, while you want to use it)
3760ed87 668endif
6630516b 669else
a899b909 670LDFLAGS_NOSTRIP += $(CFLAG_-Wl--hash-style=gnu)
6630516b
CA
671endif
672endif
673
51ce75b5 674LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
98fd3d6c 675ifeq ($(DODEBUG),y)
c94314fa 676CFLAGS += -O0 -g3 -DDEBUG
98fd3d6c 677else
64f11aa9 678CFLAGS += $(OPTIMIZATION)
f58f2dda 679endif
66b01e60 680ifeq ($(DOSTRIP),y)
51ce75b5 681LDFLAGS += -Wl,-s
66b01e60
EA
682else
683STRIPTOOL := true -Stripping_disabled
98fd3d6c 684endif
45046d81
KR
685ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
686CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS))
687endif
98fd3d6c 688
8789ec41 689ifeq ($(DOMULTI),y)
6e3a0044
PM
690# we try to compile all sources at once into an object (IMA), but
691# gcc-3.3.x does not support it
47d8fab8 692# gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
6e3a0044
PM
693# gcc-4.0.x supports it, supports the --combine flag, but does not need it
694# gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
f350d5a2 695ifeq ($(GCC_MAJOR_VER),3)
8789ec41 696DOMULTI:=n
6e3a0044 697else
a899b909
MF
698$(eval $(call check-gcc-var,--combine))
699CFLAGS += $(CFLAG_--combine)
6e3a0044 700endif
8789ec41
PM
701else
702DOMULTI:=n
703endif
6e3a0044 704
a96829da 705ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
47247764 706LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS))
a96829da
BRF
707endif
708
8c7ac6fc 709ifeq ($(UCLIBC_HAS_THREADS),y)
3a7ac9c7 710ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
c0b31e50 711 PTNAME := nptl
ecc76282 712 CFLAGS += -DHAVE_FORCED_UNWIND
a9f5aa1c
MF
713else
714ifeq ($(LINUXTHREADS_OLD),y)
715 PTNAME := linuxthreads.old
c0b31e50
PM
716else
717 PTNAME := linuxthreads
718endif
a9f5aa1c 719endif
49d8a0e9 720PTDIR := libpthread/$(PTNAME)
8c7ac6fc 721# set up system dependencies include dirs (NOTE: order matters!)
3a7ac9c7 722ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
7453d422
BRF
723PTINC:= -I$(top_builddir)$(PTDIR) \
724 -I$(top_srcdir)$(PTDIR) \
9381d622 725 $(if $(TARGET_ARCH),-I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/$(TARGET_SUBARCH)) \
49d8a0e9 726 -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
7453d422 727 -I$(top_builddir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
49d8a0e9 728 -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
7453d422 729 -I$(top_builddir)$(PTDIR)/sysdeps/unix/sysv/linux \
49d8a0e9
BRF
730 -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
731 -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
7453d422 732 -I$(top_srcdir)$(PTDIR)/sysdeps/pthread/bits \
871ea0e8 733 -I$(top_srcdir)$(PTDIR)/sysdeps/generic \
7453d422 734 -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \
7fec9f92 735 -I$(top_srcdir)ldso/include
a6487435
SH
736#
737# Test for TLS if NPTL support was selected.
738#
739GCC_HAS_TLS=$(shell \
740 echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
741ifneq ($(GCC_HAS_TLS),)
742gcc_tls_test_fail:
743 @echo "####";
744 @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
745 @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
746 @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
747 @echo "#### about this problem.";
748 @echo "####";
749 @echo "#### Exiting...";
750 @echo "####";
751 @exit 1;
752endif
753else
0f85f257 754PTINC := \
49d8a0e9
BRF
755 -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
756 -I$(top_srcdir)$(PTDIR)/sysdeps/$(TARGET_ARCH) \
757 -I$(top_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux \
758 -I$(top_srcdir)$(PTDIR)/sysdeps/pthread \
759 -I$(top_srcdir)$(PTDIR) \
760 -I$(top_srcdir)libpthread
a6487435 761endif
a80fc77b 762CFLAGS+=$(PTINC)
0f85f257 763else
73c81126
EA
764 PTNAME :=
765 PTINC :=
8c7ac6fc 766endif
c94314fa 767CFLAGS += -I$(top_srcdir)libc/sysdeps/linux/common
08e377aa 768CFLAGS += -I$(KERNEL_HEADERS)
8c7ac6fc 769
18f27be3 770#CFLAGS += -iwithprefix include-fixed -iwithprefix include
80576869 771$(eval $(call cache-output-var,CC_IPREFIX,$(CC) -print-file-name=include))
651d0688 772CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
fd37d197 773CFLAGS += $(CC_INC)
4775ec64 774
98fd3d6c 775ifneq ($(DOASSERTS),y)
86553e66 776CFLAGS+=-DNDEBUG
0dd72555 777endif
c5207a55 778
23656d08
BS
779ifeq ($(SYMBOL_PREFIX),_)
780CFLAGS+=-D__UCLIBC_UNDERSCORES__
781endif
782
8c9cfb76 783# Keep the check_as from being needlessly executed
f8e6aa06 784ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
a899b909 785$(eval $(call check-as-var,--noexecstack))
f8e6aa06 786endif
a899b909 787ASFLAGS = $(ASFLAG_--noexecstack)
4a56d69f 788
881e6dca 789LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
a899b909 790$(eval $(call cache-output-var,LIBGCC,$(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name))
f149abb8
EA
791LIBGCC_DIR:=$(dir $(LIBGCC))
792
0a7b9d5d
PM
793# moved from libpthread/linuxthreads
794ifeq ($(UCLIBC_CTOR_DTOR),y)
5937c62e
PM
795SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
796SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
0a7b9d5d 797endif
9be49589
CA
798
799LOCAL_INSTALL_PATH := install_dir
This page took 0.301504 seconds and 4 git commands to generate.