OSDN Git Service

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