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