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