OSDN Git Service

use -EB/-EL for all targets
[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' 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=arm-linux-
40 # will build uClibc for 'arm'.
41
42 ifndef CROSS
43 CROSS=
44 endif
45 CC         = $(CROSS)gcc
46 AR         = $(CROSS)ar
47 LD         = $(CROSS)ld
48 NM         = $(CROSS)nm
49 STRIPTOOL  = $(CROSS)strip
50
51 INSTALL    = install
52 LN         = ln
53 RM         = rm -f
54 TAR        = tar
55 SED        = sed
56 AWK        = awk
57
58 STRIP_FLAGS ?= -x -R .note -R .comment
59
60 ## unused? if yes, remove after 0.9.31
61 ## UNIFDEF := $(top_builddir)extra/scripts/unifdef -UUCLIBC_INTERNAL
62
63 # Select the compiler needed to build binaries for your development system
64 HOSTCC     = gcc
65 BUILD_CFLAGS = -Os -Wall
66 export ARCH := $(shell uname -m | $(SED) -e s/i.86/i386/ \
67                                   -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
68                                   -e s/arm.*/arm/ -e s/sa110/arm/ \
69                                   -e s/sh.*/sh/ \
70                                   -e s/s390x/s390/ -e s/parisc.*/hppa/ \
71                                   -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
72                                   -e s/xtensa.*/xtensa/ )
73
74
75 #---------------------------------------------------------
76 # Nothing beyond this point should ever be touched by mere
77 # mortals.  Unless you hang out with the gods, you should
78 # probably leave all this stuff alone.
79
80
81 # Pull in the user's uClibc configuration
82 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
83 -include $(top_builddir).config
84 endif
85
86 # Make certain these contain a final "/", but no "//"s.
87 TARGET_ARCH:=$(shell grep -s '^TARGET_ARCH' $(top_builddir)/.config | $(SED) -e 's/^TARGET_ARCH=//' -e 's/"//g')
88 TARGET_ARCH:=$(strip $(subst ",, $(strip $(TARGET_ARCH))))
89 TARGET_SUBARCH:=$(shell grep -s '^TARGET_SUBARCH' $(top_builddir)/.config | $(SED) -e 's/^TARGET_SUBARCH=//' -e 's/"//g')
90 TARGET_SUBARCH:=$(strip $(subst ",, $(strip $(TARGET_SUBARCH))))
91 RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
92 DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))
93 KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(KERNEL_HEADERS))))))
94 export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS
95
96
97 # Now config hard core
98 MAJOR_VERSION := 0
99 MINOR_VERSION := 9
100 SUBLEVEL      := 30
101 EXTRAVERSION  :=-svn
102 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
103 ifneq ($(EXTRAVERSION),)
104 VERSION       := $(VERSION)$(EXTRAVERSION)
105 endif
106 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
107 LC_ALL := C
108 export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_ALL
109
110 LIBC := libc
111 SHARED_MAJORNAME := $(LIBC).so.$(MAJOR_VERSION)
112 ifneq ($(findstring  $(TARGET_ARCH) , hppa64 ia64 mips64 powerpc64 s390x sparc64 x86_64 ),)
113 UCLIBC_LDSO_NAME := ld64-uClibc
114 ARCH_NATIVE_BIT := 64
115 else
116 UCLIBC_LDSO_NAME := ld-uClibc
117 ARCH_NATIVE_BIT := 32
118 endif
119 UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(MAJOR_VERSION)
120 NONSHARED_LIBNAME := uclibc_nonshared.a
121 libc := $(top_builddir)lib/$(SHARED_MAJORNAME)
122 libc.depend := $(top_builddir)lib/$(SHARED_MAJORNAME:.$(MAJOR_VERSION)=)
123 interp := $(top_builddir)lib/interp.os
124 ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
125 headers_dep := $(top_builddir)include/bits/sysnum.h
126 sub_headers := $(headers_dep)
127
128 #LIBS :=$(interp) -L$(top_builddir)lib -lc
129 LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(MAJOR_VERSION)=)
130
131 # Make sure DESTDIR and PREFIX can be used to install
132 # PREFIX is a uClibcism while DESTDIR is a common GNUism
133 ifndef PREFIX
134 PREFIX = $(DESTDIR)
135 endif
136
137 ifneq ($(HAVE_SHARED),y)
138 libc :=
139 interp :=
140 ldso :=
141 endif
142
143 comma:=,
144 space:= #
145
146 ifndef CROSS
147 CROSS=$(strip $(subst ",, $(CROSS_COMPILER_PREFIX)))
148 endif
149
150 # A nifty macro to make testing gcc features easier
151 check_gcc=$(shell \
152         if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
153         then echo "$(1)"; else echo "$(2)"; fi)
154 check_as=$(shell \
155         if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
156         then echo "-Wa,$(1)"; fi)
157 check_ld=$(shell \
158         if $(LD) $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1; \
159         then echo "$(1)"; fi)
160
161 ARFLAGS:=cr
162
163
164 # Flags in OPTIMIZATION are used only for non-debug builds
165
166 OPTIMIZATION:=
167 # Use '-Os' optimization if available, else use -O2, allow Config to override
168 OPTIMIZATION+=$(call check_gcc,-Os,-O2)
169 # Use the gcc 3.4 -funit-at-a-time optimization when available
170 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
171
172 GCC_MAJOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1)
173 #GCC_MINOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 2)
174
175 ifeq ($(GCC_MAJOR_VER),4)
176 # shrinks code, results are from 4.0.2
177 # 0.36%
178 OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
179 # 0.34%
180 OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
181 # 0.1%
182 OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
183 endif
184
185
186 # CPU_CFLAGS-y contain options which are not warnings,
187 # not include or library paths, and not optimizations.
188
189 # Why -funsigned-char: I hunted a bug related to incorrect
190 # sign extension of 'char' type for 10 hours straight. Not fun.
191 CPU_CFLAGS-y := -funsigned-char -fno-builtin
192
193 CPU_CFLAGS-y += $(call check_gcc,-fno-asm,)
194
195 LDADD_LIBFLOAT=
196 ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
197 # If -msoft-float isn't supported, we want an error anyway.
198 # Hmm... might need to revisit this for arm since it has 2 different
199 # soft float encodings.
200 ifneq ($(TARGET_ARCH),nios)
201 ifneq ($(TARGET_ARCH),nios2)
202 ifneq ($(TARGET_ARCH),sh)
203 CPU_CFLAGS-y += -msoft-float
204 endif
205 endif
206 endif
207 ifeq ($(TARGET_ARCH),arm)
208 # No longer needed with current toolchains, but leave it here for now.
209 # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
210 #    LDADD_LIBFLOAT=-lfloat
211 endif
212 endif
213
214 CPU_CFLAGS-y += $(call check_gcc,-std=gnu99,)
215
216 CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
217 CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
218
219 CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN) += -Wl,-EL
220 CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)    += -Wl,-EB
221
222 PICFLAG-y := -fPIC
223 PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
224 PICFLAG := $(PICFLAG-y)
225 PIEFLAG_NAME:=-fPIE
226
227 # Some nice CPU specific optimizations
228 ifeq ($(TARGET_ARCH),i386)
229         OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
230
231 ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586)$(CONFIG_586MMX),y)
232         # Non-SSE capable processor.
233         # NB: this may make SSE insns segfault!
234         # -O1 -march=pentium3, -Os -msse etc are known to be affected.
235         # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
236         # -m32 is needed if host is 64-bit
237         OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
238 else
239         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=4,)
240 endif
241
242         # Choice of alignment (please document why!)
243         #  -falign-labels: in-line labels
244         #  (reachable by normal code flow, aligning will insert nops
245         #  which will be executed - may even make things slower)
246         #  -falign-jumps: reachable only by a jump
247         # Generic: no alignment at all (smallest code)
248         GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
249 ifeq ($(CONFIG_K7),y)
250         # Align functions to four bytes, use default for jumps and loops (why?)
251         GCC_FALIGN=$(call check_gcc,-falign-functions=4 -falign-labels=1,-malign-functions=4)
252 endif
253 ifeq ($(CONFIG_CRUSOE),y)
254         # Use compiler's default for functions, jumps and loops (why?)
255         GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
256 endif
257 ifeq ($(CONFIG_CYRIXIII),y)
258         # Use compiler's default for functions, jumps and loops (why?)
259         GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
260 endif
261         OPTIMIZATION+=$(GCC_FALIGN)
262
263         # Putting each function and data object into its own section
264         # allows for kbytes of less text if users link against static uclibc
265         # using ld --gc-sections.
266         # ld 2.18 can't do that (yet?) for shared libraries, so we itself
267         # do not use --gc-sections at shared lib link time.
268         # However, in combination with sections being sorted by alignment
269         # it does result in much reduced padding:
270         #   text    data     bss     dec     hex
271         # 235319    1472    5992  242783   3b45f old.so
272         # 234104    1472    5980  241556   3af94 new.so
273         # Without -ffunction-sections, all functions will get aligned
274         # to 4 byte boundary by as/ld. This is arguably a bug in as.
275         # It specifies 4 byte align for .text even if not told to do so:
276         # Idx Name          Size      VMA       LMA       File off  Algn
277         #   0 .text         xxxxxxxx  00000000  00000000  xxxxxxxx  2**2 <===!
278         CPU_CFLAGS-y  += $(call check_gcc,-ffunction-sections -fdata-sections,)
279 ifneq ($(call check_ld,--sort-common,),)
280         CPU_LDFLAGS-y += -Wl,--sort-common
281 endif
282 ifneq ($(call check_ld,--sort-section alignment),)
283         CPU_LDFLAGS-y += -Wl,--sort-section,alignment
284 endif
285
286         CPU_LDFLAGS-y+=-m32
287         CPU_CFLAGS-y+=-m32
288         CPU_CFLAGS-$(CONFIG_386)+=-march=i386
289         CPU_CFLAGS-$(CONFIG_486)+=-march=i486
290         CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
291         CPU_CFLAGS-$(CONFIG_586)+=-march=i586
292         CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
293         CPU_CFLAGS-$(CONFIG_686)+=-march=i686
294         CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
295         CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
296         CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
297         CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
298         CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686)
299         CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686
300         CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
301         CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
302         CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486)
303         CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
304 endif
305
306 ifeq ($(TARGET_ARCH),sparc)
307         CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
308         CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
309         CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
310         CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
311 endif
312
313 ifeq ($(TARGET_ARCH),arm)
314         OPTIMIZATION+=-fstrict-aliasing
315         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
316         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
317         CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
318         CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
319         CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
320         CPU_CFLAGS-$(CONFIG_ARM7TDMI)+=-mtune=arm7tdmi -march=armv4t
321         CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4t
322         CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4t
323         CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4t
324         CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5t
325         CPU_CFLAGS-$(CONFIG_ARM10T)+=-mtune=arm10tdmi -march=armv5t
326         CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
327         CPU_CFLAGS-$(CONFIG_ARM1176JZ_S)+=-mtune=arm1176jz-s -march=armv6
328         CPU_CFLAGS-$(CONFIG_ARM1176JZF_S)+=-mtune=arm1176jzf-s -march=armv6
329         CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
330         CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
331         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
332         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv5te -Wa,-mcpu=xscale
333         CPU_CFLAGS-$(CONFIG_ARM_IWMMXT)+=-march=iwmmxt -Wa,-mcpu=iwmmxt -mabi=iwmmxt
334         CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M3)+=-mcpu=cortex-m3 -mthumb
335         CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M1)+=-mcpu=cortex-m1 -mthumb
336 endif
337
338 ifeq ($(TARGET_ARCH),mips)
339         CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
340         CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
341         CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
342         CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
343         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
344         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32R2)+=-march=mips32r2 -mtune=mips32r2
345         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
346         ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
347                 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
348                 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
349         endif
350         ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
351                 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
352                 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
353         endif
354         CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
355         CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
356         CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
357 endif
358
359 ifeq ($(TARGET_ARCH),nios)
360         CPU_LDFLAGS-y+=-Wl,-m32
361         CPU_CFLAGS-y+=-Wl,-m32
362 endif
363
364 ifeq ($(TARGET_ARCH),sh)
365         OPTIMIZATION+=-fstrict-aliasing
366         OPTIMIZATION+= $(call check_gcc,-mprefergot,)
367         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
368         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
369         CPU_CFLAGS-$(CONFIG_SH2)+=-m2
370         CPU_CFLAGS-$(CONFIG_SH3)+=-m3
371 ifeq ($(UCLIBC_HAS_FPU),y)
372         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
373         CPU_CFLAGS-$(CONFIG_SH4)+=-m4
374 else
375         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
376         CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
377 endif
378 endif
379
380 ifeq ($(TARGET_ARCH),sh64)
381         OPTIMIZATION+=-fstrict-aliasing
382         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
383         CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
384         CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
385 endif
386
387 ifeq ($(TARGET_ARCH),h8300)
388         SYMBOL_PREFIX=_
389         CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
390         CPU_LDFLAGS-$(CONFIG_H8S)   += -Wl,-ms8300s
391         CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
392         CPU_CFLAGS-$(CONFIG_H8S)    += -ms -mint32
393 endif
394
395 ifeq ($(TARGET_ARCH),cris)
396         CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
397         CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
398         CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
399         PICFLAG:=-fpic
400         PIEFLAG_NAME:=-fpie
401 endif
402
403 ifeq ($(TARGET_ARCH),m68k)
404         # -fPIC is only supported for 68020 and above.  It is not supported
405         # for 68000, 68010, or Coldfire.
406         PICFLAG:=-fpic
407         PIEFLAG_NAME:=-fpie
408 endif
409
410 ifeq ($(TARGET_ARCH),powerpc)
411 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
412 # enough. Therefore use -fpic which will reduce code size and generates
413 # faster code.
414         PICFLAG:=-fpic
415         PIEFLAG_NAME:=-fpie
416         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)
417         CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
418         CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
419
420 endif
421
422 ifeq ($(TARGET_ARCH),bfin)
423         SYMBOL_PREFIX=_
424 ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
425         CPU_CFLAGS-y:=-mfdpic
426         CPU_LDFLAGS-y += -Wl,-melf32bfinfd
427         PICFLAG:=-fpic
428         PIEFLAG_NAME:=-fpie
429 endif
430 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
431         PICFLAG := -mleaf-id-shared-library
432 endif
433 endif
434
435 ifeq ($(TARGET_ARCH),frv)
436         CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
437         # Using -pie causes the program to have an interpreter, which is
438         # forbidden, so we must make do with -shared.  Unfortunately,
439         # -shared by itself would get us global function descriptors
440         # and calls through PLTs, dynamic resolution of symbols, etc,
441         # which would break as well, but -Bsymbolic comes to the rescue.
442         export LDPIEFLAG:=-shared -Wl,-Bsymbolic
443         UCLIBC_LDSO=ld.so.1
444 endif
445
446 ifeq ($(strip $(TARGET_ARCH)),avr32)
447        CPU_CFLAGS-$(CONFIG_AVR32_AP7)  += -march=ap
448        CPU_CFLAGS-$(CONFIG_LINKRELAX)  += -mrelax
449        CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
450 endif
451
452 ifeq ($(TARGET_ARCH),i960)
453       SYMBOL_PREFIX=_
454 endif
455
456 ifeq ($(TARGET_ARCH),microblaze)
457       SYMBOL_PREFIX=_
458 endif
459
460 ifeq ($(TARGET_ARCH),v850)
461       SYMBOL_PREFIX=_
462 endif
463
464 # Keep the check_gcc from being needlessly executed
465 ifndef PIEFLAG
466 export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
467 endif
468 # We need to keep track of both the CC PIE flag (above) as
469 # well as the LD PIE flag (below) because we can't rely on
470 # gcc passing -pie if we used -fPIE. We need to directly use -pie
471 # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
472 ifndef LDPIEFLAG
473 export LDPIEFLAG:=$(shell $(LD) --help 2>/dev/null | grep -q -- -pie && echo "-pie")
474 endif
475
476 # Check for --as-needed support in linker
477 ifndef LD_FLAG_ASNEEDED
478 _LD_FLAG_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -- --as-needed)
479 ifneq ($(_LD_FLAG_ASNEEDED),)
480 export LD_FLAG_ASNEEDED:=--as-needed
481 endif
482 endif
483 ifndef LD_FLAG_NO_ASNEEDED
484 ifdef LD_FLAG_ASNEEDED
485 export LD_FLAG_NO_ASNEEDED:=--no-as-needed
486 endif
487 endif
488 ifndef CC_FLAG_ASNEEDED
489 ifdef LD_FLAG_ASNEEDED
490 export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED)
491 endif
492 endif
493 ifndef CC_FLAG_NO_ASNEEDED
494 ifdef LD_FLAG_NO_ASNEEDED
495 export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED)
496 endif
497 endif
498 link.asneeded = $(if $(and $(CC_FLAG_ASNEEDED),$(CC_FLAG_NO_ASNEEDED)),$(CC_FLAG_ASNEEDED) $(1) $(CC_FLAG_NO_ASNEEDED))
499
500 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
501 ifndef ASNEEDED
502 export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
503 endif
504
505 # Add a bunch of extra pedantic annoyingly strict checks
506 XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -fno-strict-aliasing
507 ifeq ($(EXTRA_WARNINGS),y)
508 XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
509 XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
510 XWARNINGS+=-Wnonnull -Wundef
511 # Works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
512 #XWARNINGS+=-Wdeclaration-after-statement
513 endif
514 # Seems to be unused (no ARCH_CFLAGS anywhere), delete?
515 # if yes, remove after 0.9.31
516 XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
517 CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
518
519 SSP_DISABLE_FLAGS ?= $(call check_gcc,-fno-stack-protector,)
520 ifeq ($(UCLIBC_BUILD_SSP),y)
521 SSP_CFLAGS := $(call check_gcc,-fno-stack-protector-all,)
522 SSP_CFLAGS += $(call check_gcc,-fstack-protector,)
523 SSP_ALL_CFLAGS ?= $(call check_gcc,-fstack-protector-all,)
524 else
525 SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
526 endif
527
528 NOSTDLIB_CFLAGS:=$(call check_gcc,-nostdlib,)
529
530 # Collect all CFLAGS components
531 CFLAGS := -include $(top_builddir)include/libc-symbols.h \
532         $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
533         -nostdinc -I$(top_builddir)include -I. \
534         -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)
535 ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
536 CFLAGS += $(subst ",, $(UCLIBC_EXTRA_CFLAGS))
537 endif
538
539 # Please let us see private headers' parts
540 # Deprecated: _LIBC serves the same purpose
541 CFLAGS += -DUCLIBC_INTERNAL
542
543 # We need this to be checked within libc-symbols.h
544 ifneq ($(HAVE_SHARED),y)
545 CFLAGS += -DSTATIC
546 endif
547
548 LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -shared \
549         -Wl,--warn-common -Wl,--warn-once -Wl,-z,combreloc
550 # binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
551 #LDFLAGS_NOSTRIP+=$(call check_ld,--gc-sections)
552
553 ifeq ($(UCLIBC_BUILD_RELRO),y)
554 LDFLAGS_NOSTRIP+=-Wl,-z,relro
555 endif
556
557 ifeq ($(UCLIBC_BUILD_NOW),y)
558 LDFLAGS_NOSTRIP+=-Wl,-z,now
559 endif
560
561 ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
562 # Be sure that binutils support it
563 LDFLAGS_GNUHASH:=$(call check_ld,--hash-style=gnu)
564 ifeq ($(LDFLAGS_GNUHASH),)
565 ifneq ($(filter-out install_headers headers-y,$(MAKECMDGOALS)),)
566 $(error Your binutils don't support --hash-style option, while you want to use it)
567 endif
568 else
569 LDFLAGS_NOSTRIP += -Wl,$(LDFLAGS_GNUHASH)
570 endif
571 endif
572
573 LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
574 ifeq ($(DODEBUG),y)
575 CFLAGS += -O0 -g3
576 else
577 CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
578 endif
579 ifeq ($(DOSTRIP),y)
580 LDFLAGS += -Wl,-s
581 else
582 STRIPTOOL := true -Stripping_disabled
583 endif
584
585 ifeq ($(DOMULTI),y)
586 # we try to compile all sources at once into an object (IMA), but
587 # gcc-3.3.x does not support it
588 # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
589 # gcc-4.0.x supports it, supports the --combine flag, but does not need it
590 # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
591 ifeq ($(GCC_MAJOR_VER),3)
592 DOMULTI:=n
593 else
594 CFLAGS+=$(call check_gcc,--combine,)
595 endif
596 else
597 DOMULTI:=n
598 endif
599
600 ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
601 LDFLAGS += $(subst ",, $(UCLIBC_EXTRA_LDFLAGS))
602 endif
603
604 ifeq ($(UCLIBC_HAS_THREADS),y)
605 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
606         PTNAME := nptl
607 else
608 ifeq ($(LINUXTHREADS_OLD),y)
609         PTNAME := linuxthreads.old
610 else
611         PTNAME := linuxthreads
612 endif
613 endif
614 PTDIR := $(top_builddir)libpthread/$(PTNAME)
615 # set up system dependencies include dirs (NOTE: order matters!)
616 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
617 PTINC:= -I$(PTDIR)                                              \
618         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)       \
619         -I$(PTDIR)/sysdeps/$(TARGET_ARCH)                       \
620         -I$(PTDIR)/sysdeps/unix/sysv/linux                      \
621         -I$(PTDIR)/sysdeps/pthread                              \
622         -I$(PTDIR)/sysdeps/pthread/bits                         \
623         -I$(PTDIR)/sysdeps/generic                              \
624         -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH)                 \
625         -I$(top_srcdir)ldso/include
626 #
627 # Test for TLS if NPTL support was selected.
628 #
629 GCC_HAS_TLS=$(shell \
630         echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
631 ifneq ($(GCC_HAS_TLS),)
632 gcc_tls_test_fail:
633         @echo "####";
634         @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
635         @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
636         @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
637         @echo "#### about this problem.";
638         @echo "####";
639         @echo "#### Exiting...";
640         @echo "####";
641         @exit 1;
642 endif
643 else
644 PTINC := \
645         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
646         -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
647         -I$(PTDIR)/sysdeps/unix/sysv/linux \
648         -I$(PTDIR)/sysdeps/pthread \
649         -I$(PTDIR) \
650         -I$(top_builddir)libpthread
651 endif
652 CFLAGS+=$(PTINC)
653 else
654         PTNAME :=
655         PTINC  :=
656 endif
657 CFLAGS += -I$(KERNEL_HEADERS)
658
659 #CFLAGS += -iwithprefix include-fixed -iwithprefix include
660 CC_IPREFIX := $(shell $(CC) --print-file-name=include)
661 CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
662 CFLAGS += $(CC_INC)
663
664 ifneq ($(DOASSERTS),y)
665 CFLAGS+=-DNDEBUG
666 endif
667
668 ifeq ($(SYMBOL_PREFIX),_)
669 CFLAGS+=-D__UCLIBC_UNDERSCORES__
670 endif
671
672 # Keep the check_as from being needlessly executed
673 ifndef ASFLAGS_NOEXEC
674 ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
675 export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
676 else
677 export ASFLAGS_NOEXEC :=
678 endif
679 endif
680 ASFLAGS = $(ASFLAGS_NOEXEC)
681
682 LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
683 LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
684 LIBGCC_DIR:=$(dir $(LIBGCC))
685
686 # moved from libpthread/linuxthreads
687 ifeq ($(UCLIBC_CTOR_DTOR),y)
688 SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
689 SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
690 endif
691
692 LOCAL_INSTALL_PATH := install_dir