]>
Commit | Line | Data |
---|---|---|
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 | 20 | ifneq ($(findstring x3.7,x$(MAKE_VERSION)),) |
a4d40bdd MF |
21 | $(error Your make is too old $(MAKE_VERSION). Go get at least 3.80) |
22 | endif | |
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 |
43 | CROSS_COMPILE ?= $(CROSS) |
44 | ||
45 | CC = $(CROSS_COMPILE)gcc | |
46 | AR = $(CROSS_COMPILE)ar | |
47 | LD = $(CROSS_COMPILE)ld | |
48 | NM = $(CROSS_COMPILE)nm | |
49 | OBJDUMP = $(CROSS_COMPILE)objdump | |
50 | STRIPTOOL = $(CROSS_COMPILE)strip | |
6737908f | 51 | |
5f9dfa09 MF |
52 | INSTALL = install |
53 | LN = ln | |
54 | RM = rm -f | |
3a0333ee | 55 | TAR = tar |
4e885757 BRF |
56 | SED = sed |
57 | AWK = awk | |
49f0dd0f | 58 | |
a9d7ad63 MF |
59 | STRIP_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 | 65 | HOSTCC = gcc |
88fa5f36 | 66 | BUILD_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 |
74 | qstrip = $(strip $(subst ",,$(1))) | |
75 | #")) | |
fd37d197 | 76 | |
d874cc67 MF |
77 | # Pull in the user's uClibc configuration |
78 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | |
79 | -include $(top_builddir).config | |
80 | endif | |
47247764 | 81 | TARGET_ARCH:=$(call qstrip,$(TARGET_ARCH)) |
554b79bf BRF |
82 | ifeq ($(TARGET_ARCH),) |
83 | ARCH ?= $(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/ ) | |
90 | else | |
91 | ARCH = $(TARGET_ARCH) | |
92 | endif | |
93 | export ARCH | |
d874cc67 MF |
94 | |
95 | # Make certain these contain a final "/", but no "//"s. | |
47247764 | 96 | TARGET_SUBARCH:=$(call qstrip,$(TARGET_SUBARCH)) |
80f55879 PM |
97 | RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(RUNTIME_PREFIX))))) |
98 | DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(DEVEL_PREFIX))))) | |
99 | MULTILIB_DIR:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(MULTILIB_DIR))))) | |
47247764 | 100 | KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(KERNEL_HEADERS))))) |
4be3ace8 | 101 | export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR |
d874cc67 MF |
102 | |
103 | ||
104 | # Now config hard core | |
5f9dfa09 MF |
105 | MAJOR_VERSION := 0 |
106 | MINOR_VERSION := 9 | |
e288fdca BRF |
107 | SUBLEVEL := 34 |
108 | EXTRAVERSION :=-git | |
5f9dfa09 | 109 | VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL) |
cce1105f | 110 | ABI_VERSION := $(MAJOR_VERSION) |
6bc45b2d | 111 | ifneq ($(EXTRAVERSION),) |
76a888be | 112 | VERSION := $(VERSION)$(EXTRAVERSION) |
6bc45b2d | 113 | endif |
2c84741c | 114 | # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. |
5f9dfa09 | 115 | LC_ALL := C |
71239593 | 116 | export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION ABI_VERSION LC_ALL |
58bd16ab | 117 | |
15870aba | 118 | LIBC := libc |
71239593 | 119 | SHARED_LIBNAME := $(LIBC).so.$(ABI_VERSION) |
69cba61d | 120 | UBACKTRACE_DSO := libubacktrace.so.$(ABI_VERSION) |
44784f8a | 121 | ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 mips64 powerpc64 s390x sparc64 x86_64 ),) |
d874cc67 | 122 | UCLIBC_LDSO_NAME := ld64-uClibc |
ab600d2a | 123 | ARCH_NATIVE_BIT := 64 |
e9da7cba MF |
124 | else |
125 | UCLIBC_LDSO_NAME := ld-uClibc | |
ab600d2a | 126 | ARCH_NATIVE_BIT := 32 |
d874cc67 | 127 | endif |
71239593 | 128 | UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(ABI_VERSION) |
15870aba | 129 | NONSHARED_LIBNAME := uclibc_nonshared.a |
71239593 NC |
130 | libc := $(top_builddir)lib/$(SHARED_LIBNAME) |
131 | libc.depend := $(top_builddir)lib/$(SHARED_LIBNAME:.$(ABI_VERSION)=) | |
9381d622 | 132 | ifneq ($(ARCH_HAS_NO_SHARED),y) |
7aab619f | 133 | libdl.depend := $(top_builddir)lib/libdl.so |
9381d622 BRF |
134 | endif |
135 | ifneq ($(HAS_NO_THREADS),y) | |
7aab619f | 136 | libpthread.depend := $(top_builddir)lib/libpthread.so |
9381d622 | 137 | endif |
72c0f6a2 PM |
138 | interp := $(top_builddir)lib/interp.os |
139 | ldso := $(top_builddir)lib/$(UCLIBC_LDSO) | |
3c45ffd2 | 140 | headers_dep := $(top_builddir)include/bits/sysnum.h |
94c41e72 | 141 | sub_headers := $(headers_dep) |
15870aba | 142 | |
5937c62e | 143 | #LIBS :=$(interp) -L$(top_builddir)lib -lc |
71239593 | 144 | LIBS := $(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 | |
148 | ifndef PREFIX | |
149 | PREFIX = $(DESTDIR) | |
150 | endif | |
151 | ||
4b204436 MF |
152 | ifneq ($(HAVE_SHARED),y) |
153 | libc := | |
c57c6023 PM |
154 | interp := |
155 | ldso := | |
4b204436 MF |
156 | endif |
157 | ||
51ce75b5 BRF |
158 | comma:=, |
159 | space:= # | |
160 | ||
b18b4210 | 161 | ifeq ($(CROSS_COMPILE),) |
ae14cd49 | 162 | CROSS_COMPILE=$(call qstrip,$(CROSS_COMPILER_PREFIX)) |
05827f4c MF |
163 | endif |
164 | ||
efe79476 | 165 | # A nifty macro to make testing gcc features easier |
8c9cfb76 MF |
166 | check_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 |
169 | check_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 |
172 | check_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 | |
178 | define check-tool-var | |
c3e65564 | 179 | ifeq ($(filter $(clean_targets) CLEAN_%,$(MAKECMDGOALS)),) |
a899b909 MF |
180 | _v = $(2)_$(3) |
181 | ifndef $$(_v) | |
182 | $$(_v) := $$(call $(1),$(subst %, ,$(3))) | |
183 | export $$(_v) | |
184 | endif | |
94bf930d | 185 | endif |
a899b909 MF |
186 | endef |
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. | |
191 | define check-gcc-var | |
192 | $(call check-tool-var,check_gcc,CFLAG,$(1)) | |
193 | endef | |
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). | |
198 | define check-as-var | |
199 | $(call check-tool-var,check_as,ASFLAG,$(1)) | |
faf51f00 | 200 | _v = CFLAG_-Wa$(1) |
03a008e2 | 201 | export $$(_v) = $$(if $$(ASFLAG_$(1)),-Wa$$(comma)$$(ASFLAG_$(1))) |
a899b909 MF |
202 | endef |
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). | |
207 | define check-ld-var | |
208 | $(call check-tool-var,check_ld,LDFLAG,$(1)) | |
faf51f00 MF |
209 | _v = CFLAG_-Wl$(1) |
210 | export $$(_v) = $$(if $$(LDFLAG_$(1)),-Wl$$(comma)$$(LDFLAG_$(1))) | |
a899b909 MF |
211 | endef |
212 | # Usage: cache-output-var,<variable>,<shell command> | |
213 | # Execute <shell command> and cache the output in <variable>. | |
214 | define cache-output-var | |
215 | ifndef $(1) | |
216 | $(1) := $$(shell $(2)) | |
217 | export $(1) | |
218 | endif | |
219 | endef | |
220 | ||
221 | ||
e970fad1 | 222 | ARFLAGS:=cr |
aa966844 | 223 | |
fd37d197 | 224 | |
e348b8f7 | 225 | # Flags in OPTIMIZATION are used only for non-debug builds |
fd37d197 | 226 | |
efe79476 | 227 | OPTIMIZATION:= |
f350d5a2 | 228 | # Use '-Os' optimization if available, else use -O2, allow Config to override |
a899b909 MF |
229 | $(eval $(call check-gcc-var,-Os)) |
230 | ifneq ($(CFLAG_-Os),) | |
231 | OPTIMIZATION += $(CFLAG_-Os) | |
232 | else | |
233 | $(eval $(call check-gcc-var,-O2)) | |
234 | OPTIMIZATION += $(CFLAG_-O2) | |
235 | endif | |
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)) |
238 | OPTIMIZATION += $(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)) | |
242 | OPTIMIZATION += $(CFLAG_-fmerge-all-constants) $(CFLAG_-fstrict-aliasing) | |
f350d5a2 | 243 | |
a899b909 MF |
244 | $(eval $(call cache-output-var,GCC_VER,$(CC) -dumpversion)) |
245 | GCC_VER := $(subst ., ,$(GCC_VER)) | |
246 | GCC_MAJOR_VER ?= $(word 1,$(GCC_VER)) | |
247 | #GCC_MINOR_VER ?= $(word 2,$(GCC_VER)) | |
f350d5a2 PM |
248 | |
249 | ifeq ($(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)) |
253 | OPTIMIZATION += $(CFLAG_-fno-tree-loop-optimize) | |
f350d5a2 | 254 | # 0.34% |
a899b909 MF |
255 | $(eval $(call check-gcc-var,-fno-tree-dominator-opts)) |
256 | OPTIMIZATION += $(CFLAG_-fno-tree-dominator-opts) | |
f350d5a2 | 257 | # 0.1% |
a899b909 MF |
258 | $(eval $(call check-gcc-var,-fno-strength-reduce)) |
259 | OPTIMIZATION += $(CFLAG_-fno-strength-reduce) | |
f350d5a2 PM |
260 | endif |
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. | |
268 | CPU_CFLAGS-y := -funsigned-char -fno-builtin | |
269 | ||
a899b909 MF |
270 | $(eval $(call check-gcc-var,-fno-asm)) |
271 | CPU_CFLAGS-y += $(CFLAG_-fno-asm) | |
fd37d197 DV |
272 | |
273 | LDADD_LIBFLOAT= | |
274 | ifeq ($(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. | |
278 | ifneq ($(TARGET_ARCH),nios) | |
279 | ifneq ($(TARGET_ARCH),nios2) | |
280 | ifneq ($(TARGET_ARCH),sh) | |
46d6a248 | 281 | ifneq ($(TARGET_ARCH),c6x) |
fd37d197 DV |
282 | CPU_CFLAGS-y += -msoft-float |
283 | endif | |
284 | endif | |
285 | endif | |
46d6a248 | 286 | endif |
fd37d197 DV |
287 | ifeq ($(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 | |
291 | endif | |
292 | endif | |
293 | ||
a899b909 MF |
294 | $(eval $(call check-gcc-var,-std=gnu99)) |
295 | CPU_CFLAGS-y += $(CFLAG_-std=gnu99) | |
fd37d197 | 296 | |
dcad31e6 MF |
297 | CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library |
298 | CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data | |
299 | ||
045da529 MF |
300 | CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN) += -Wl,-EL |
301 | CPU_LDFLAGS-$(ARCH_BIG_ENDIAN) += -Wl,-EB | |
302 | ||
f0a5fcde | 303 | PICFLAG-y := -fPIC |
dcad31e6 | 304 | PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic |
46d6a248 | 305 | PICFLAG-$(UCLIBC_FORMAT_DSBT_ELF) := -mdsbt -fpic |
f2410a17 | 306 | PICFLAG := $(PICFLAG-y) |
ce5d0580 | 307 | PIEFLAG_NAME:=-fPIE |
4efa075c | 308 | |
0c6405c1 | 309 | # Some nice CPU specific optimizations |
15870aba | 310 | ifeq ($(TARGET_ARCH),i386) |
a899b909 MF |
311 | $(eval $(call check-gcc-var,-fomit-frame-pointer)) |
312 | OPTIMIZATION += $(CFLAG_-fomit-frame-pointer) | |
e348b8f7 | 313 | |
5196e42e DV |
314 | ifeq ($(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 | 321 | else |
a899b909 MF |
322 | $(eval $(call check-gcc-var,-mpreferred-stack-boundary=4)) |
323 | OPTIMIZATION += $(CFLAG_-mpreferred-stack-boundary=4) | |
5196e42e | 324 | endif |
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) | |
333 | ifeq ($(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 |
336 | endif |
337 | ifeq ($(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 |
340 | endif |
341 | ifeq ($(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 |
344 | endif |
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 | 385 | endif |
0c6405c1 | 386 | |
15870aba | 387 | ifeq ($(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) | |
392 | endif | |
393 | ||
15870aba | 394 | ifeq ($(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 |
398 | endif |
399 | ||
15870aba | 400 | ifeq ($(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 |
420 | endif |
421 | ||
40770ac3 | 422 | ifeq ($(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 |
426 | endif |
427 | ||
15870aba | 428 | ifeq ($(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 | 435 | ifeq ($(UCLIBC_HAS_FPU),y) |
e8a91ad3 | 436 | CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a |
6a2d1ca4 | 437 | CPU_CFLAGS-$(CONFIG_SH4)+=-m4 |
e8a91ad3 PM |
438 | else |
439 | CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu | |
440 | CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu | |
441 | endif | |
533d76fb EA |
442 | endif |
443 | ||
15870aba | 444 | ifeq ($(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 | 448 | endif |
163df9f2 | 449 | |
15870aba | 450 | ifeq ($(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 |
456 | endif |
457 | ||
64f11aa9 | 458 | ifeq ($(TARGET_ARCH),i960) |
72210a84 | 459 | OPTIMIZATION+=-mh -mint32 #-fsigned-char |
64f11aa9 PM |
460 | endif |
461 | ||
462 | ifeq ($(TARGET_ARCH),e1) | |
72210a84 | 463 | OPTIMIZATION+=-mgnu-param |
64f11aa9 PM |
464 | endif |
465 | ||
15870aba | 466 | ifeq ($(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 |
472 | endif |
473 | ||
39eff515 MF |
474 | ifeq ($(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 | |
479 | endif | |
480 | ||
15870aba | 481 | ifeq ($(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 |
491 | endif |
492 | ||
f1e85d44 | 493 | ifeq ($(TARGET_ARCH),bfin) |
23656d08 | 494 | SYMBOL_PREFIX=_ |
f1e85d44 BS |
495 | ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y) |
496 | CPU_CFLAGS-y:=-mfdpic | |
497 | CPU_LDFLAGS-y += -Wl,-melf32bfinfd | |
498 | PICFLAG:=-fpic | |
499 | PIEFLAG_NAME:=-fpie | |
500 | endif | |
501 | ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y) | |
502 | PICFLAG := -mleaf-id-shared-library | |
503 | endif | |
504 | endif | |
505 | ||
15870aba | 506 | ifeq ($(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 |
515 | endif | |
516 | ||
e130b681 CA |
517 | ifeq ($(strip $(TARGET_ARCH)),avr32) |
518 | CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap | |
519 | CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax | |
520 | CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax | |
521 | endif | |
522 | ||
23656d08 BS |
523 | ifeq ($(TARGET_ARCH),i960) |
524 | SYMBOL_PREFIX=_ | |
525 | endif | |
526 | ||
23656d08 BS |
527 | ifeq ($(TARGET_ARCH),v850) |
528 | SYMBOL_PREFIX=_ | |
529 | endif | |
530 | ||
46d6a248 AJ |
531 | ifeq ($(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) | |
538 | endif | |
539 | ||
a899b909 MF |
540 | $(eval $(call check-gcc-var,$(PIEFLAG_NAME))) |
541 | PIEFLAG := $(CFLAG_$(PIEFLAG_NAME)) | |
542 | ifeq ($(PIEFLAG),) | |
543 | PIEFLAG := $(PICFLAG) | |
afd3f33a | 544 | endif |
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 |
552 | ifndef LD_FLAG_ASNEEDED | |
553 | _LD_FLAG_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -- --as-needed) | |
554 | ifneq ($(_LD_FLAG_ASNEEDED),) | |
555 | export LD_FLAG_ASNEEDED:=--as-needed | |
556 | endif | |
557 | endif | |
558 | ifndef LD_FLAG_NO_ASNEEDED | |
559 | ifdef LD_FLAG_ASNEEDED | |
560 | export LD_FLAG_NO_ASNEEDED:=--no-as-needed | |
561 | endif | |
562 | endif | |
563 | ifndef CC_FLAG_ASNEEDED | |
564 | ifdef LD_FLAG_ASNEEDED | |
565 | export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED) | |
566 | endif | |
567 | endif | |
568 | ifndef CC_FLAG_NO_ASNEEDED | |
569 | ifdef LD_FLAG_NO_ASNEEDED | |
570 | export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED) | |
571 | endif | |
572 | endif | |
7da4d1e7 | 573 | link.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) |
576 | ifndef ASNEEDED | |
d9ec8005 | 577 | export 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 |
580 | ifeq ($(UCLIBC_HAS_BACKTRACE),y) |
581 | export 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 |
584 | else |
585 | export UBACKTRACE_ASNEEDED:="" | |
586 | endif | |
5eef4411 PM |
587 | endif |
588 | ||
aa966844 | 589 | # Add a bunch of extra pedantic annoyingly strict checks |
a899b909 | 590 | WARNING_FLAGS = -Wstrict-prototypes -Wstrict-aliasing |
e73b1211 | 591 | ifeq ($(EXTRA_WARNINGS),y) |
a899b909 | 592 | WARNING_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 | 605 | WARNING_FLAGS-gcc-4 += -Wdeclaration-after-statement |
e73b1211 | 606 | endif |
a899b909 MF |
607 | WARNING_FLAGS += $(WARNING_FLAGS-gcc-$(GCC_MAJOR_VER)) |
608 | $(foreach w,$(WARNING_FLAGS),$(eval $(call check-gcc-var,$(w)))) | |
609 | XWARNINGS = $(call qstrip,$(WARNINGS)) $(foreach w,$(WARNING_FLAGS),$(CFLAG_$(w))) | |
610 | ||
47247764 | 611 | CPU_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)) | |
616 | SSP_DISABLE_FLAGS ?= $(CFLAG_-fno-stack-protector) | |
c57c6023 | 617 | ifeq ($(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)) | |
621 | SSP_CFLAGS := $(CFLAG_-fno-stack-protector-all) | |
622 | SSP_CFLAGS += $(CFLAG_-fstack-protector) | |
623 | SSP_ALL_CFLAGS ?= $(CFLAG_-fstack-protector-all) | |
c57c6023 PM |
624 | else |
625 | SSP_CFLAGS := $(SSP_DISABLE_FLAGS) | |
626 | endif | |
c5598b73 | 627 | |
a899b909 | 628 | $(eval $(call check-gcc-var,-nostdlib)) |
fd37d197 DV |
629 | |
630 | # Collect all CFLAGS components | |
49d8a0e9 | 631 | CFLAGS := -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 |
638 | ifneq ($(HAVE_SHARED),y) | |
639 | CFLAGS += -DSTATIC | |
9d7a22d3 MNI |
640 | endif |
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 | 645 | LDFLAGS_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 | |
654 | ifeq ($(UCLIBC_BUILD_RELRO),y) | |
51ce75b5 | 655 | LDFLAGS_NOSTRIP+=-Wl,-z,relro |
15870aba PM |
656 | endif |
657 | ||
658 | ifeq ($(UCLIBC_BUILD_NOW),y) | |
51ce75b5 | 659 | LDFLAGS_NOSTRIP+=-Wl,-z,now |
15870aba PM |
660 | endif |
661 | ||
6630516b CA |
662 | ifeq ($(LDSO_GNU_HASH_SUPPORT),y) |
663 | # Be sure that binutils support it | |
a899b909 MF |
664 | $(eval $(call check-ld-var,--hash-style=gnu)) |
665 | ifeq ($(LDFLAG_--hash-style=gnu),) | |
c3e65564 | 666 | ifneq ($(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 | 668 | endif |
6630516b | 669 | else |
a899b909 | 670 | LDFLAGS_NOSTRIP += $(CFLAG_-Wl--hash-style=gnu) |
6630516b CA |
671 | endif |
672 | endif | |
673 | ||
51ce75b5 | 674 | LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs |
98fd3d6c | 675 | ifeq ($(DODEBUG),y) |
c94314fa | 676 | CFLAGS += -O0 -g3 -DDEBUG |
98fd3d6c | 677 | else |
64f11aa9 | 678 | CFLAGS += $(OPTIMIZATION) |
f58f2dda | 679 | endif |
66b01e60 | 680 | ifeq ($(DOSTRIP),y) |
51ce75b5 | 681 | LDFLAGS += -Wl,-s |
66b01e60 EA |
682 | else |
683 | STRIPTOOL := true -Stripping_disabled | |
98fd3d6c | 684 | endif |
45046d81 KR |
685 | ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"") |
686 | CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS)) | |
687 | endif | |
98fd3d6c | 688 | |
8789ec41 | 689 | ifeq ($(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 | 695 | ifeq ($(GCC_MAJOR_VER),3) |
8789ec41 | 696 | DOMULTI:=n |
6e3a0044 | 697 | else |
a899b909 MF |
698 | $(eval $(call check-gcc-var,--combine)) |
699 | CFLAGS += $(CFLAG_--combine) | |
6e3a0044 | 700 | endif |
8789ec41 PM |
701 | else |
702 | DOMULTI:=n | |
703 | endif | |
6e3a0044 | 704 | |
a96829da | 705 | ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"") |
47247764 | 706 | LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS)) |
a96829da BRF |
707 | endif |
708 | ||
8c7ac6fc | 709 | ifeq ($(UCLIBC_HAS_THREADS),y) |
3a7ac9c7 | 710 | ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) |
c0b31e50 | 711 | PTNAME := nptl |
ecc76282 | 712 | CFLAGS += -DHAVE_FORCED_UNWIND |
a9f5aa1c MF |
713 | else |
714 | ifeq ($(LINUXTHREADS_OLD),y) | |
715 | PTNAME := linuxthreads.old | |
c0b31e50 PM |
716 | else |
717 | PTNAME := linuxthreads | |
718 | endif | |
a9f5aa1c | 719 | endif |
49d8a0e9 | 720 | PTDIR := libpthread/$(PTNAME) |
8c7ac6fc | 721 | # set up system dependencies include dirs (NOTE: order matters!) |
3a7ac9c7 | 722 | ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) |
7453d422 BRF |
723 | PTINC:= -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 | # | |
739 | GCC_HAS_TLS=$(shell \ | |
740 | echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1) | |
741 | ifneq ($(GCC_HAS_TLS),) | |
742 | gcc_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; | |
752 | endif | |
753 | else | |
0f85f257 | 754 | PTINC := \ |
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 | 761 | endif |
a80fc77b | 762 | CFLAGS+=$(PTINC) |
0f85f257 | 763 | else |
73c81126 EA |
764 | PTNAME := |
765 | PTINC := | |
8c7ac6fc | 766 | endif |
c94314fa | 767 | CFLAGS += -I$(top_srcdir)libc/sysdeps/linux/common |
08e377aa | 768 | CFLAGS += -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 | 772 | CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX) |
fd37d197 | 773 | CFLAGS += $(CC_INC) |
4775ec64 | 774 | |
98fd3d6c | 775 | ifneq ($(DOASSERTS),y) |
86553e66 | 776 | CFLAGS+=-DNDEBUG |
0dd72555 | 777 | endif |
c5207a55 | 778 | |
23656d08 BS |
779 | ifeq ($(SYMBOL_PREFIX),_) |
780 | CFLAGS+=-D__UCLIBC_UNDERSCORES__ | |
781 | endif | |
782 | ||
8c9cfb76 | 783 | # Keep the check_as from being needlessly executed |
f8e6aa06 | 784 | ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y) |
a899b909 | 785 | $(eval $(call check-as-var,--noexecstack)) |
f8e6aa06 | 786 | endif |
a899b909 | 787 | ASFLAGS = $(ASFLAG_--noexecstack) |
4a56d69f | 788 | |
881e6dca | 789 | LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y) |
a899b909 | 790 | $(eval $(call cache-output-var,LIBGCC,$(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)) |
f149abb8 EA |
791 | LIBGCC_DIR:=$(dir $(LIBGCC)) |
792 | ||
0a7b9d5d PM |
793 | # moved from libpthread/linuxthreads |
794 | ifeq ($(UCLIBC_CTOR_DTOR),y) | |
5937c62e PM |
795 | SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o |
796 | SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o | |
0a7b9d5d | 797 | endif |
9be49589 CA |
798 | |
799 | LOCAL_INSTALL_PATH := install_dir |