OSDN Git Service

Partially revent "make utils" fix. This version is less intrusive,
[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 PICFLAG-y := -fPIC
220 PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
221 PICFLAG := $(PICFLAG-y)
222 PIEFLAG_NAME:=-fPIE
223
224 # Some nice CPU specific optimizations
225 ifeq ($(TARGET_ARCH),i386)
226         OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
227
228 ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586)$(CONFIG_586MMX),y)
229         # Non-SSE capable processor.
230         # NB: this may make SSE insns segfault!
231         # -O1 -march=pentium3, -Os -msse etc are known to be affected.
232         # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
233         # -m32 is needed if host is 64-bit
234         OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
235 else
236         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=4,)
237 endif
238
239         # Choice of alignment (please document why!)
240         #  -falign-labels: in-line labels
241         #  (reachable by normal code flow, aligning will insert nops
242         #  which will be executed - may even make things slower)
243         #  -falign-jumps: reachable only by a jump
244         # Generic: no alignment at all (smallest code)
245         GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
246 ifeq ($(CONFIG_K7),y)
247         # Align functions to four bytes, use default for jumps and loops (why?)
248         GCC_FALIGN=$(call check_gcc,-falign-functions=4 -falign-labels=1,-malign-functions=4)
249 endif
250 ifeq ($(CONFIG_CRUSOE),y)
251         # Use compiler's default for functions, jumps and loops (why?)
252         GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
253 endif
254 ifeq ($(CONFIG_CYRIXIII),y)
255         # Use compiler's default for functions, jumps and loops (why?)
256         GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
257 endif
258         OPTIMIZATION+=$(GCC_FALIGN)
259
260         # Putting each function and data object into its own section
261         # allows for kbytes of less text if users link against static uclibc
262         # using ld --gc-sections.
263         # ld 2.18 can't do that (yet?) for shared libraries, so we itself
264         # do not use --gc-sections at shared lib link time.
265         # However, in combination with sections being sorted by alignment
266         # it does result in much reduced padding:
267         #   text    data     bss     dec     hex
268         # 235319    1472    5992  242783   3b45f old.so
269         # 234104    1472    5980  241556   3af94 new.so
270         # Without -ffunction-sections, all functions will get aligned
271         # to 4 byte boundary by as/ld. This is arguably a bug in as.
272         # It specifies 4 byte align for .text even if not told to do so:
273         # Idx Name          Size      VMA       LMA       File off  Algn
274         #   0 .text         xxxxxxxx  00000000  00000000  xxxxxxxx  2**2 <===!
275         CPU_CFLAGS-y  += $(call check_gcc,-ffunction-sections -fdata-sections,)
276 ifneq ($(call check_ld,--sort-common,),)
277         CPU_LDFLAGS-y += -Wl,--sort-common
278 endif
279 ifneq ($(call check_ld,--sort-section alignment),)
280         CPU_LDFLAGS-y += -Wl,--sort-section,alignment
281 endif
282
283         CPU_LDFLAGS-y+=-m32
284         CPU_CFLAGS-y+=-m32
285         CPU_CFLAGS-$(CONFIG_386)+=-march=i386
286         CPU_CFLAGS-$(CONFIG_486)+=-march=i486
287         CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
288         CPU_CFLAGS-$(CONFIG_586)+=-march=i586
289         CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
290         CPU_CFLAGS-$(CONFIG_686)+=-march=i686
291         CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
292         CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
293         CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
294         CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
295         CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686)
296         CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686
297         CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
298         CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
299         CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486)
300         CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
301 endif
302
303 ifeq ($(TARGET_ARCH),sparc)
304         CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
305         CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
306         CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
307         CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
308 endif
309
310 ifeq ($(TARGET_ARCH),arm)
311         OPTIMIZATION+=-fstrict-aliasing
312         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
313         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
314         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
315         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
316         CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
317         CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
318         CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
319         CPU_CFLAGS-$(CONFIG_ARM7TDMI)+=-mtune=arm7tdmi -march=armv4t
320         CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4t
321         CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4t
322         CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4t
323         CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5t
324         CPU_CFLAGS-$(CONFIG_ARM10T)+=-mtune=arm10tdmi -march=armv5t
325         CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
326         CPU_CFLAGS-$(CONFIG_ARM1176JZ_S)+=-mtune=arm1176jz-s -march=armv6
327         CPU_CFLAGS-$(CONFIG_ARM1176JZF_S)+=-mtune=arm1176jzf-s -march=armv6
328         CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
329         CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
330         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
331         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv5te -Wa,-mcpu=xscale
332         CPU_CFLAGS-$(CONFIG_ARM_IWMMXT)+=-march=iwmmxt -Wa,-mcpu=iwmmxt -mabi=iwmmxt
333         CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M3)+=-mcpu=cortex-m3 -mthumb
334         CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M1)+=-mcpu=cortex-m1 -mthumb
335 endif
336
337 ifeq ($(TARGET_ARCH),mips)
338         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
339         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
340         CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
341         CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
342         CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
343         CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
344         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
345         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32R2)+=-march=mips32r2 -mtune=mips32r2
346         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
347         ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
348                 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
349                 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
350         endif
351         ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
352                 CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
353                 CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
354         endif
355         CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
356         CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
357         CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
358 endif
359
360 ifeq ($(TARGET_ARCH),nios)
361         CPU_LDFLAGS-y+=-Wl,-m32
362         CPU_CFLAGS-y+=-Wl,-m32
363 endif
364
365 ifeq ($(TARGET_ARCH),sh)
366         OPTIMIZATION+=-fstrict-aliasing
367         OPTIMIZATION+= $(call check_gcc,-mprefergot,)
368         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
369         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
370         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
371         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
372         CPU_CFLAGS-$(CONFIG_SH2)+=-m2
373         CPU_CFLAGS-$(CONFIG_SH3)+=-m3
374 ifeq ($(UCLIBC_HAS_FLOATS),y)
375         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
376         CPU_CFLAGS-$(CONFIG_SH4)+=-m4
377 else
378         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
379         CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
380 endif
381 endif
382
383 ifeq ($(TARGET_ARCH),sh64)
384         OPTIMIZATION+=-fstrict-aliasing
385         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):=-Wl,-EL
386         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):=-Wl,-EB
387         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
388         CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
389         CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
390 endif
391
392 ifeq ($(TARGET_ARCH),h8300)
393         SYMBOL_PREFIX=_
394         CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
395         CPU_LDFLAGS-$(CONFIG_H8S)   += -Wl,-ms8300s
396         CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
397         CPU_CFLAGS-$(CONFIG_H8S)    += -ms -mint32
398 endif
399
400 ifeq ($(TARGET_ARCH),cris)
401         CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
402         CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
403         CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
404         PICFLAG:=-fpic
405         PIEFLAG_NAME:=-fpie
406 endif
407
408 ifeq ($(TARGET_ARCH),m68k)
409         # -fPIC is only supported for 68020 and above.  It is not supported
410         # for 68000, 68010, or Coldfire.
411         PICFLAG:=-fpic
412         PIEFLAG_NAME:=-fpie
413 endif
414
415 ifeq ($(TARGET_ARCH),powerpc)
416 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
417 # enough. Therefore use -fpic which will reduce code size and generates
418 # faster code.
419         PICFLAG:=-fpic
420         PIEFLAG_NAME:=-fpie
421         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)
422         CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
423         CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES"
424
425 endif
426
427 ifeq ($(TARGET_ARCH),bfin)
428         SYMBOL_PREFIX=_
429 ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
430         CPU_CFLAGS-y:=-mfdpic
431         CPU_LDFLAGS-y += -Wl,-melf32bfinfd
432         PICFLAG:=-fpic
433         PIEFLAG_NAME:=-fpie
434 endif
435 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
436         PICFLAG := -mleaf-id-shared-library
437 endif
438 endif
439
440 ifeq ($(TARGET_ARCH),frv)
441         CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
442         # Using -pie causes the program to have an interpreter, which is
443         # forbidden, so we must make do with -shared.  Unfortunately,
444         # -shared by itself would get us global function descriptors
445         # and calls through PLTs, dynamic resolution of symbols, etc,
446         # which would break as well, but -Bsymbolic comes to the rescue.
447         export LDPIEFLAG:=-Wl,-shared -Wl,-Bsymbolic
448         UCLIBC_LDSO=ld.so.1
449 endif
450
451 ifeq ($(strip $(TARGET_ARCH)),avr32)
452        CPU_CFLAGS-$(CONFIG_AVR32_AP7)  += -march=ap
453        CPU_CFLAGS-$(CONFIG_LINKRELAX)  += -mrelax
454        CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
455 endif
456
457 ifeq ($(TARGET_ARCH),i960)
458       SYMBOL_PREFIX=_
459 endif
460
461 ifeq ($(TARGET_ARCH),microblaze)
462       SYMBOL_PREFIX=_
463 endif
464
465 ifeq ($(TARGET_ARCH),v850)
466       SYMBOL_PREFIX=_
467 endif
468
469 # Keep the check_gcc from being needlessly executed
470 ifndef PIEFLAG
471 export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
472 endif
473 # We need to keep track of both the CC PIE flag (above) as
474 # well as the LD PIE flag (below) because we can't rely on
475 # gcc passing -pie if we used -fPIE. We need to directly use -pie
476 # instead of -Wl,-pie as gcc picks up the wrong startfile/endfile
477 ifndef LDPIEFLAG
478 export LDPIEFLAG:=$(shell $(LD) --help 2>/dev/null | grep -q -- -pie && echo "-pie")
479 endif
480
481 # Check for --as-needed support in linker
482 ifndef LD_FLAG_ASNEEDED
483 _LD_FLAG_ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -- --as-needed)
484 ifneq ($(_LD_FLAG_ASNEEDED),)
485 export LD_FLAG_ASNEEDED:=--as-needed
486 endif
487 endif
488 ifndef LD_FLAG_NO_ASNEEDED
489 ifdef LD_FLAG_ASNEEDED
490 export LD_FLAG_NO_ASNEEDED:=--no-as-needed
491 endif
492 endif
493 ifndef CC_FLAG_ASNEEDED
494 ifdef LD_FLAG_ASNEEDED
495 export CC_FLAG_ASNEEDED:=-Wl,$(LD_FLAG_ASNEEDED)
496 endif
497 endif
498 ifndef CC_FLAG_NO_ASNEEDED
499 ifdef LD_FLAG_NO_ASNEEDED
500 export CC_FLAG_NO_ASNEEDED:=-Wl,$(LD_FLAG_NO_ASNEEDED)
501 endif
502 endif
503 link.asneeded = $(if $(and $(CC_FLAG_ASNEEDED),$(CC_FLAG_NO_ASNEEDED)),$(CC_FLAG_ASNEEDED) $(1) $(CC_FLAG_NO_ASNEEDED))
504
505 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
506 ifndef ASNEEDED
507 export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
508 endif
509
510 # Add a bunch of extra pedantic annoyingly strict checks
511 XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -fno-strict-aliasing
512 ifeq ($(EXTRA_WARNINGS),y)
513 XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
514 XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
515 XWARNINGS+=-Wnonnull -Wundef
516 # Works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
517 #XWARNINGS+=-Wdeclaration-after-statement
518 endif
519 # Seems to be unused (no ARCH_CFLAGS anywhere), delete?
520 # if yes, remove after 0.9.31
521 XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
522 CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
523
524 SSP_DISABLE_FLAGS ?= $(call check_gcc,-fno-stack-protector,)
525 ifeq ($(UCLIBC_BUILD_SSP),y)
526 SSP_CFLAGS := $(call check_gcc,-fno-stack-protector-all,)
527 SSP_CFLAGS += $(call check_gcc,-fstack-protector,)
528 SSP_ALL_CFLAGS ?= $(call check_gcc,-fstack-protector-all,)
529 else
530 SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
531 endif
532
533 NOSTDLIB_CFLAGS:=$(call check_gcc,-nostdlib,)
534
535 # Collect all CFLAGS components
536 CFLAGS := -include $(top_builddir)include/libc-symbols.h \
537         $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
538         -nostdinc -I$(top_builddir)include -I. \
539         -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)
540 ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
541 CFLAGS += $(subst ",, $(UCLIBC_EXTRA_CFLAGS))
542 endif
543
544 # Please let us see private headers' parts
545 # Deprecated: _LIBC serves the same purpose
546 CFLAGS += -DUCLIBC_INTERNAL
547
548 # We need this to be checked within libc-symbols.h
549 ifneq ($(HAVE_SHARED),y)
550 CFLAGS += -DSTATIC
551 endif
552
553 LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -Wl,-shared \
554         -Wl,--warn-common -Wl,--warn-once -Wl,-z,combreloc
555 # binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
556 #LDFLAGS_NOSTRIP+=$(call check_ld,--gc-sections)
557
558 ifeq ($(UCLIBC_BUILD_RELRO),y)
559 LDFLAGS_NOSTRIP+=-Wl,-z,relro
560 endif
561
562 ifeq ($(UCLIBC_BUILD_NOW),y)
563 LDFLAGS_NOSTRIP+=-Wl,-z,now
564 endif
565
566 ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
567 # Be sure that binutils support it
568 LDFLAGS_GNUHASH:=$(call check_ld,--hash-style=gnu)
569 ifeq ($(LDFLAGS_GNUHASH),)
570 $(error Your binutils don't support --hash-style option, while you want to use it)
571 else
572 LDFLAGS_NOSTRIP += -Wl,$(LDFLAGS_GNUHASH)
573 endif
574 endif
575
576 LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
577 ifeq ($(DODEBUG),y)
578 CFLAGS += -O0 -g3
579 else
580 CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
581 endif
582 ifeq ($(DOSTRIP),y)
583 LDFLAGS += -Wl,-s
584 else
585 STRIPTOOL := true -Stripping_disabled
586 endif
587
588 ifeq ($(DOMULTI),y)
589 # we try to compile all sources at once into an object (IMA), but
590 # gcc-3.3.x does not support it
591 # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
592 # gcc-4.0.x supports it, supports the --combine flag, but does not need it
593 # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
594 ifeq ($(GCC_MAJOR_VER),3)
595 DOMULTI:=n
596 else
597 CFLAGS+=$(call check_gcc,--combine,)
598 endif
599 else
600 DOMULTI:=n
601 endif
602
603 ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
604 LDFLAGS += $(subst ",, $(UCLIBC_EXTRA_LDFLAGS))
605 endif
606
607 ifeq ($(UCLIBC_HAS_THREADS),y)
608 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
609         PTNAME := nptl
610 else
611 ifeq ($(LINUXTHREADS_OLD),y)
612         PTNAME := linuxthreads.old
613 else
614         PTNAME := linuxthreads
615 endif
616 endif
617 PTDIR := $(top_builddir)libpthread/$(PTNAME)
618 # set up system dependencies include dirs (NOTE: order matters!)
619 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
620 PTINC:= -I$(PTDIR)                                              \
621         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)       \
622         -I$(PTDIR)/sysdeps/$(TARGET_ARCH)                       \
623         -I$(PTDIR)/sysdeps/unix/sysv/linux                      \
624         -I$(PTDIR)/sysdeps/pthread                              \
625         -I$(PTDIR)/sysdeps/pthread/bits                         \
626         -I$(PTDIR)/sysdeps/generic                              \
627         -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH)                 \
628         -I$(top_srcdir)ldso/include
629 #
630 # Test for TLS if NPTL support was selected.
631 #
632 GCC_HAS_TLS=$(shell \
633         echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
634 ifneq ($(GCC_HAS_TLS),)
635 gcc_tls_test_fail:
636         @echo "####";
637         @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
638         @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
639         @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
640         @echo "#### about this problem.";
641         @echo "####";
642         @echo "#### Exiting...";
643         @echo "####";
644         @exit 1;
645 endif
646 else
647 PTINC := \
648         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
649         -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
650         -I$(PTDIR)/sysdeps/unix/sysv/linux \
651         -I$(PTDIR)/sysdeps/pthread \
652         -I$(PTDIR) \
653         -I$(top_builddir)libpthread
654 endif
655 CFLAGS+=$(PTINC)
656 else
657         PTNAME :=
658         PTINC  :=
659 endif
660 CFLAGS += -I$(KERNEL_HEADERS)
661
662 #CFLAGS += -iwithprefix include-fixed -iwithprefix include
663 CC_IPREFIX := $(shell $(CC) --print-file-name=include)
664 CC_INC := -I$(dir $(CC_IPREFIX))include-fixed -I$(CC_IPREFIX)
665 CFLAGS += $(CC_INC)
666
667 ifneq ($(DOASSERTS),y)
668 CFLAGS+=-DNDEBUG
669 endif
670
671 ifeq ($(SYMBOL_PREFIX),_)
672 CFLAGS+=-D__UCLIBC_UNDERSCORES__
673 endif
674
675 # Keep the check_as from being needlessly executed
676 ifndef ASFLAGS_NOEXEC
677 ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
678 export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
679 else
680 export ASFLAGS_NOEXEC :=
681 endif
682 endif
683 ASFLAGS = $(ASFLAGS_NOEXEC)
684
685 LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
686 LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
687 LIBGCC_DIR:=$(dir $(LIBGCC))
688
689 # moved from libpthread/linuxthreads
690 ifeq ($(UCLIBC_CTOR_DTOR),y)
691 SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
692 SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
693 endif
694
695 LOCAL_INSTALL_PATH := install_dir