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