OSDN Git Service

we get d_type from the kernel so use it
[uclinux-h8/uClibc.git] / Rules.mak
1 # Rules.make for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
5 #
6 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 #
8
9 #-----------------------------------------------------------
10 # This file contains rules which are shared between multiple
11 # Makefiles.  All normal configuration options live in the 
12 # file named ".config".  Don't mess with this file unless 
13 # you know what you are doing.
14
15
16 #-----------------------------------------------------------
17 # If you are running a cross compiler, you will want to set 
18 # 'CROSS' to something more interesting ...  Target 
19 # architecture is determined by asking the CC compiler what 
20 # arch it compiles things for, so unless your compiler is 
21 # broken, you should not need to specify TARGET_ARCH.
22 #
23 # Most people will set this stuff on the command line, i.e.
24 #        make CROSS=arm-linux-
25 # will build uClibc for 'arm'.
26
27 ifndef CROSS
28 CROSS=
29 endif
30 CC         = $(CROSS)gcc
31 AR         = $(CROSS)ar
32 LD         = $(CROSS)ld
33 NM         = $(CROSS)nm
34 STRIPTOOL  = $(CROSS)strip
35
36 INSTALL    = install
37 LN         = ln
38 RM         = rm -f
39 TAR        = tar
40
41 STRIP_FLAGS ?= -x -R .note -R .comment
42
43 # Select the compiler needed to build binaries for your development system
44 HOSTCC     = gcc
45 BUILD_CFLAGS = -O2 -Wall
46
47
48 #---------------------------------------------------------
49 # Nothing beyond this point should ever be touched by mere
50 # mortals.  Unless you hang out with the gods, you should
51 # probably leave all this stuff alone.
52
53 # Pull in the user's uClibc configuration
54 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
55 -include $(top_builddir).config
56 endif
57
58 # Make certain these contain a final "/", but no "//"s.
59 TARGET_ARCH:=$(shell grep -s '^TARGET_ARCH' $(top_builddir)/.config | sed -e 's/^TARGET_ARCH=//' -e 's/"//g')
60 TARGET_ARCH:=$(strip $(subst ",, $(strip $(TARGET_ARCH))))
61 RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
62 DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))
63 KERNEL_SOURCE:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(KERNEL_SOURCE))))))
64 export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_SOURCE
65
66
67 # Now config hard core
68 MAJOR_VERSION := 0
69 MINOR_VERSION := 9
70 SUBLEVEL      := 28
71 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
72 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
73 LC_ALL := C
74 export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_ALL
75
76 LIBC := libc
77 SHARED_MAJORNAME := $(LIBC).so.$(MAJOR_VERSION)
78 UCLIBC_LDSO_NAME := ld-uClibc
79 ifeq ($(TARGET_ARCH),x86_64)
80 UCLIBC_LDSO_NAME := ld64-uClibc
81 endif
82 UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(MAJOR_VERSION)
83 NONSHARED_LIBNAME := uclibc_nonshared.a
84 libc := $(top_builddir)lib/$(SHARED_MAJORNAME)
85 interp := $(top_builddir)lib/interp.os
86 ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
87 headers_dep := $(top_builddir)include/bits/sysnum.h
88
89 #LIBS :=$(interp) -L$(top_builddir)lib -lc
90 LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(MAJOR_VERSION)=)
91
92 # Make sure DESTDIR and PREFIX can be used to install
93 # PREFIX is a uClibcism while DESTDIR is a common GNUism
94 ifndef PREFIX
95 PREFIX = $(DESTDIR)
96 endif
97
98 ifneq ($(HAVE_SHARED),y)
99 libc :=
100 interp :=
101 ldso :=
102 endif
103
104 ifndef CROSS
105 CROSS=$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
106 endif
107
108 # A nifty macro to make testing gcc features easier
109 check_gcc=$(shell \
110         if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
111         then echo "$(1)"; else echo "$(2)"; fi)
112 check_as=$(shell \
113         if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
114         then echo "-Wa,$(1)"; fi)
115
116 # Setup some shortcuts so that silent mode is silent like it should be
117 ifeq ($(findstring s,$(MAKEFLAGS)),)
118 export MAKE_IS_SILENT=n
119 SECHO=@echo
120 SHELL_SET_X=set -x
121 else
122 export MAKE_IS_SILENT=y
123 SECHO=-@false
124 SHELL_SET_X=set +x
125 endif
126
127 ARFLAGS:=cr
128
129 OPTIMIZATION:=
130 PICFLAG:=-fPIC
131 PIEFLAG_NAME:=-fPIE
132
133 # Some nice CPU specific optimizations
134 ifeq ($(TARGET_ARCH),i386)
135         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
136         OPTIMIZATION+=$(call check_gcc,-falign-jumps=0 -falign-loops=0,-malign-jumps=0 -malign-loops=0)
137         CPU_CFLAGS-$(CONFIG_386)+=-march=i386
138         CPU_CFLAGS-$(CONFIG_486)+=-march=i486
139         CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
140         CPU_CFLAGS-$(CONFIG_586)+=-march=i586
141         CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
142         CPU_CFLAGS-$(CONFIG_686)+=-march=i686
143         CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
144         CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
145         CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
146         CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
147         CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686) $(call check_gcc,-falign-functions=4,-malign-functions=4)
148         CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686 $(call check_gcc,-falign-functions=0,-malign-functions=0)
149         CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
150         CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
151         CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486) $(call check_gcc,-falign-functions=0,-malign-functions=0)
152         CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
153 endif
154
155 ifeq ($(TARGET_ARCH),sparc)
156         CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
157         CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
158         CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
159         CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
160 endif
161
162 ifeq ($(TARGET_ARCH),arm)
163         OPTIMIZATION+=-fstrict-aliasing
164         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
165         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
166         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
167         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
168         CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
169         CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
170         CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
171         CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4
172         CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4
173         CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4
174         CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5
175         CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
176         CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
177         CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
178         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
179         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv4 -Wa,-mcpu=xscale
180 endif
181
182 ifeq ($(TARGET_ARCH),mips)
183         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
184         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
185         CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
186         CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
187         CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
188         CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
189         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
190         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
191 endif
192
193 ifeq ($(TARGET_ARCH),nios)
194         CPU_LDFLAGS-y+=-m32
195         CPU_CFLAGS-y+=-m32
196 endif
197
198 ifeq ($(TARGET_ARCH),sh)
199         OPTIMIZATION+=-fstrict-aliasing
200         OPTIMIZATION+= $(call check_gcc,-mprefergot,)
201         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
202         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
203         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
204         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
205         CPU_CFLAGS-$(CONFIG_SH2)+=-m2
206         CPU_CFLAGS-$(CONFIG_SH3)+=-m3
207 ifeq ($(UCLIBC_HAS_FLOATS),y)
208         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
209         CPU_CFLAGS-$(CONFIG_SH4)+=-m4
210 else
211         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
212         CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
213 endif
214 endif
215
216 ifeq ($(TARGET_ARCH),sh64)
217         OPTIMIZATION+=-fstrict-aliasing
218         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):=-EL
219         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):=-EB
220         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
221         CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
222         CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
223 endif
224
225 ifeq ($(TARGET_ARCH),h8300)
226         CPU_LDFLAGS-$(CONFIG_H8300H)+= -ms8300h
227         CPU_LDFLAGS-$(CONFIG_H8S)   += -ms8300s
228         CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
229         CPU_CFLAGS-$(CONFIG_H8S)    += -ms -mint32
230 endif
231
232 ifeq ($(TARGET_ARCH),cris)
233         CPU_LDFLAGS-$(CONFIG_CRIS)+=-mcrislinux
234         CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
235         PICFLAG:=-fpic
236         PIEFLAG_NAME:=-fpie
237 endif
238
239 ifeq ($(TARGET_ARCH),powerpc)
240 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
241 # enough. Therefore use -fpic which will reduce code size and generates
242 # faster code.
243         PICFLAG:=-fpic
244         PIEFLAG_NAME:=-fpie
245 endif
246
247 ifeq ($(TARGET_ARCH),bfin)
248         # This should also work, but why bother ? ;)
249         #PICFLAG:=-fPIC -mid-shared-library
250         PICFLAG:=-fpic
251 endif
252
253 ifeq ($(TARGET_ARCH),frv)
254         CPU_LDFLAGS-$(CONFIG_FRV)+=-melf32frvfd
255         CPU_CFLAGS-$(CONFIG_FRV)+=-mfdpic
256         # Using -pie causes the program to have an interpreter, which is
257         # forbidden, so we must make do with -shared.  Unfortunately,
258         # -shared by itself would get us global function descriptors
259         # and calls through PLTs, dynamic resolution of symbols, etc,
260         # which would break as well, but -Bsymbolic comes to the rescue.
261         export LDPIEFLAG:=-shared -Bsymbolic
262         UCLIBC_LDSO=ld.so.1
263 endif
264
265 # Keep the check_gcc from being needlessly executed
266 ifndef PIEFLAG
267 ifneq ($(UCLIBC_BUILD_PIE),y)
268 export PIEFLAG:=
269 else
270 export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
271 endif
272 endif
273 # We need to keep track of both the CC PIE flag (above) as 
274 # well as the LD PIE flag (below) because we can't rely on 
275 # gcc passing -pie if we used -fPIE
276 ifndef LDPIEFLAG
277 ifneq ($(UCLIBC_BUILD_PIE),y)
278 export LDPIEFLAG:=
279 else
280 export LDPIEFLAG:=$(shell $(LD) --help | grep -q pie && echo "-Wl,-pie")
281 endif
282 endif
283
284 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
285 ifndef ASNEEDED
286 ifneq ($(UCLIBC_HAS_SSP),y)
287 export ASNEEDED:=
288 else
289 export ASNEEDED:=$(shell (LD_TMP=$(mktemp LD_XXXXXX) ; echo "GROUP ( AS_NEEDED ( /usr/lib/libc.so ) )" > $LD_TMP && if $(LD) -T $LD_TMP -o /dev/null > /dev/null 2>&1; then echo "AS_NEEDED ( $(UCLIBC_LDSO) )"; else echo "$(UCLIBC_LDSO)"; fi; rm -f $LD_TMP ) )
290 endif
291 endif
292
293 # Use '-Os' optimization if available, else use -O2, allow Config to override
294 OPTIMIZATION+=$(call check_gcc,-Os,-O2)
295 # Use the gcc 3.4 -funit-at-a-time optimization when available
296 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
297
298 # Add a bunch of extra pedantic annoyingly strict checks
299 XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
300 ifeq ($(EXTRA_WARNINGS),y)
301 XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
302 XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
303 # works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
304 #XWARNINGS+=-Wdeclaration-after-statement
305 endif
306 XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
307 CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
308
309 SSP_DISABLE_FLAGS ?= $(call check_gcc,-fno-stack-protector,)
310 ifeq ($(UCLIBC_BUILD_SSP),y)
311 SSP_CFLAGS := $(call check_gcc,-fno-stack-protector-all,)
312 SSP_CFLAGS += $(call check_gcc,-fstack-protector,)
313 SSP_ALL_CFLAGS ?= $(call check_gcc,-fstack-protector-all,)
314 else
315 SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
316 endif
317
318 # Some nice CFLAGS to work with
319 CFLAGS := -include $(top_builddir)include/libc-symbols.h \
320         $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
321         -fno-builtin -nostdinc -I$(top_builddir)include -I.
322
323 LDADD_LIBFLOAT=
324 ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
325 # If -msoft-float isn't supported, we want an error anyway.
326 # Hmm... might need to revisit this for arm since it has 2 different
327 # soft float encodings.
328 ifneq ($(TARGET_ARCH),nios)
329 ifneq ($(TARGET_ARCH),nios2)
330 CFLAGS += -msoft-float
331 endif
332 endif
333 ifeq ($(TARGET_ARCH),arm)
334 # No longer needed with current toolchains, but leave it here for now.
335 # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
336 #    LDADD_LIBFLOAT=-lfloat
337 endif
338 endif
339
340 # Make sure "char" behavior is the same everywhere
341 CFLAGS += -fsigned-char
342
343 # We need this to be checked within libc-symbols.h
344 ifneq ($(HAVE_SHARED),y)
345 CFLAGS += -DSTATIC
346 endif
347
348 # only i386 is known to work if compile.S gets -D__ASSEMBLER__
349 #CFLAGS += $(call check_gcc,-std=c99,)
350
351 LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -shared --warn-common --warn-once -z combreloc
352
353 ifeq ($(UCLIBC_BUILD_RELRO),y)
354 LDFLAGS_NOSTRIP+=-z relro
355 endif
356
357 ifeq ($(UCLIBC_BUILD_NOW),y)
358 LDFLAGS_NOSTRIP+=-z now
359 endif
360
361 LDFLAGS:=$(LDFLAGS_NOSTRIP) -z defs
362 ifeq ($(DODEBUG),y)
363     #CFLAGS += -g3
364     CFLAGS += -O0 -g3
365     STRIPTOOL:= true -Since_we_are_debugging
366 else
367     CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
368     LDFLAGS += -s
369 endif
370
371 ifeq ($(DOMULTI),y)
372 # we try to compile all sources at once into an object (IMA), but
373 # gcc-3.3.x does not support it
374 # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
375 # gcc-4.0.x supports it, supports the --combine flag, but does not need it
376 # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
377 GCC_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1)
378 ifeq ($(GCC_VER),3)
379 DOMULTI:=n
380 else
381 CFLAGS+=$(call check_gcc,--combine,)
382 endif
383 else
384 DOMULTI:=n
385 endif
386
387 ifeq ($(UCLIBC_HAS_THREADS),y)
388 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
389         PTNAME := nptl
390 else
391 ifeq ($(LINUXTHREADS_OLD),y)
392         PTNAME := linuxthreads.old
393 else
394         PTNAME := linuxthreads
395 endif
396 endif
397 PTDIR := $(top_builddir)libpthread/$(PTNAME)
398 # set up system dependencies include dirs (NOTE: order matters!)
399 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
400 PTINC:= -I$(PTDIR)                                              \
401         -I$(PTDIR)/compat                                       \
402         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)       \
403         -I$(PTDIR)/sysdeps/$(TARGET_ARCH)                       \
404         -I$(PTDIR)/sysdeps/unix/sysv/linux                      \
405         -I$(PTDIR)/sysdeps/pthread                              \
406         -I$(PTDIR)/sysdeps/pthread/bits                         \
407         -I$(PTDIR)/sysdeps/generic                              \
408         -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH)                 \
409         -I$(top_srcdir)ldso/include                             \
410         -include $(PTDIR)/compat/libc-symbols.h
411 #
412 # Test for TLS if NPTL support was selected.
413 #
414 GCC_HAS_TLS=$(shell \
415         echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
416 ifneq ($(GCC_HAS_TLS),)
417 gcc_tls_test_fail:
418         @echo "####";
419         @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
420         @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
421         @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
422         @echo "#### about this problem.";
423         @echo "####";
424         @echo "#### Exiting...";
425         @echo "####";
426         @exit 1;
427 endif
428 else
429 PTINC := \
430         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
431         -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
432         -I$(PTDIR)/sysdeps/unix/sysv/linux \
433         -I$(PTDIR)/sysdeps/pthread \
434         -I$(PTDIR) \
435         -I$(top_builddir)libpthread
436 endif
437 CFLAGS+=$(PTINC)
438 else
439         PTNAME := 
440         PTINC  := 
441 endif
442
443 # Sigh, some stupid versions of gcc can't seem to cope with '-iwithprefix include'
444 #CFLAGS+=-iwithprefix include
445 CFLAGS+=-isystem $(shell $(CC) -print-file-name=include)
446
447 ifneq ($(DOASSERTS),y)
448 CFLAGS+=-DNDEBUG
449 endif
450
451 # moved from ldso/{ldso,libdl}
452 # BEWARE!!! At least mips* will die if -O0 is used!!!
453 ifeq ($(TARGET_ARCH),mips)
454 CFLAGS:=$(CFLAGS:-O0=-O1)
455 endif
456
457 # Keep the check_as from being needlessly executed
458 ifndef ASFLAGS_NOEXEC
459 ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
460 export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
461 else
462 export ASFLAGS_NOEXEC :=
463 endif
464 endif
465 ASFLAGS = $(ASFLAGS_NOEXEC)
466
467 LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
468 LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
469 LIBGCC_DIR:=$(dir $(LIBGCC))
470
471 # moved from libpthread/linuxthreads
472 ifeq ($(UCLIBC_CTOR_DTOR),y)
473 SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
474 SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
475 endif
476
477 ########################################
478 #
479 # uClinux shared lib support
480 #
481
482 ifeq ($(CONFIG_BINFMT_SHARED_FLAT),y)
483   # For the shared version of this, we specify no stack and its library ID
484   FLTFLAGS += -s 0
485   LIBID=1
486   export LIBID FLTFLAGS
487   SHARED_TARGET = lib/libc
488 endif