OSDN Git Service

2f16dbe4fd4a46fb7a25a8ef99381731dcc6acf2
[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 endif
101
102 ifndef CROSS
103 CROSS=$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
104 endif
105
106 # A nifty macro to make testing gcc features easier
107 check_gcc=$(shell \
108         if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
109         then echo "$(1)"; else echo "$(2)"; fi)
110 check_as=$(shell \
111         if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
112         then echo "-Wa,$(1)"; fi)
113
114 # Setup some shortcuts so that silent mode is silent like it should be
115 ifeq ($(findstring s,$(MAKEFLAGS)),)
116 export MAKE_IS_SILENT=n
117 SECHO=@echo
118 SHELL_SET_X=set -x
119 else
120 export MAKE_IS_SILENT=y
121 SECHO=-@false
122 SHELL_SET_X=set +x
123 endif
124
125 ARFLAGS:=cr
126
127 OPTIMIZATION:=
128 PICFLAG:=-fPIC
129 PIEFLAG_NAME:=-fPIE
130
131 # Some nice CPU specific optimizations
132 ifeq ($(TARGET_ARCH),i386)
133         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
134         OPTIMIZATION+=$(call check_gcc,-falign-jumps=0 -falign-loops=0,-malign-jumps=0 -malign-loops=0)
135         CPU_CFLAGS-$(CONFIG_386)+=-march=i386
136         CPU_CFLAGS-$(CONFIG_486)+=-march=i486
137         CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
138         CPU_CFLAGS-$(CONFIG_586)+=-march=i586
139         CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
140         CPU_CFLAGS-$(CONFIG_686)+=-march=i686
141         CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
142         CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
143         CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
144         CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
145         CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686) $(call check_gcc,-falign-functions=4,-malign-functions=4)
146         CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686 $(call check_gcc,-falign-functions=0,-malign-functions=0)
147         CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
148         CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
149         CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486) $(call check_gcc,-falign-functions=0,-malign-functions=0)
150         CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
151 endif
152
153 ifeq ($(TARGET_ARCH),sparc)
154         CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
155         CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
156         CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
157         CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
158 endif
159
160 ifeq ($(TARGET_ARCH),arm)
161         OPTIMIZATION+=-fstrict-aliasing
162         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
163         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
164         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
165         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
166         CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
167         CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
168         CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
169         CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4
170         CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4
171         CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4
172         CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5
173         CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
174         CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
175         CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
176         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
177         CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv4 -Wa,-mcpu=xscale
178 endif
179
180 ifeq ($(TARGET_ARCH),mips)
181         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
182         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
183         CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
184         CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
185         CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
186         CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
187         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
188         CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
189 endif
190
191 ifeq ($(TARGET_ARCH),nios)
192         CPU_LDFLAGS-y+=-m32
193         CPU_CFLAGS-y+=-m32
194 endif
195
196 ifeq ($(TARGET_ARCH),sh)
197         OPTIMIZATION+=-fstrict-aliasing
198         OPTIMIZATION+= $(call check_gcc,-mprefergot,)
199         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-EL
200         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-EB
201         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
202         CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
203         CPU_CFLAGS-$(CONFIG_SH2)+=-m2
204         CPU_CFLAGS-$(CONFIG_SH3)+=-m3
205 ifeq ($(UCLIBC_HAS_FLOATS),y)
206         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
207         CPU_CFLAGS-$(CONFIG_SH4)+=-m4
208 else
209         CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
210         CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
211 endif
212 endif
213
214 ifeq ($(TARGET_ARCH),sh64)
215         OPTIMIZATION+=-fstrict-aliasing
216         CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):=-EL
217         CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):=-EB
218         CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
219         CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
220         CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
221 endif
222
223 ifeq ($(TARGET_ARCH),h8300)
224         CPU_LDFLAGS-$(CONFIG_H8300H)+= -ms8300h
225         CPU_LDFLAGS-$(CONFIG_H8S)   += -ms8300s
226         CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
227         CPU_CFLAGS-$(CONFIG_H8S)    += -ms -mint32
228 endif
229
230 ifeq ($(TARGET_ARCH),cris)
231         CPU_LDFLAGS-$(CONFIG_CRIS)+=-mcrislinux
232         CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
233         PICFLAG:=-fpic
234         PIEFLAG_NAME:=-fpie
235 endif
236
237 ifeq ($(TARGET_ARCH),powerpc)
238 # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
239 # enough. Therefore use -fpic which will reduce code size and generates
240 # faster code.
241         PICFLAG:=-fpic
242         PIEFLAG_NAME:=-fpie
243 endif
244
245 ifeq ($(TARGET_ARCH),bfin)
246         # This should also work, but why bother ? ;)
247         #PICFLAG:=-fPIC -mid-shared-library
248         PICFLAG:=-fpic
249 endif
250
251 ifeq ($(TARGET_ARCH),frv)
252         CPU_LDFLAGS-$(CONFIG_FRV)+=-melf32frvfd
253         CPU_CFLAGS-$(CONFIG_FRV)+=-mfdpic
254         # Using -pie causes the program to have an interpreter, which is
255         # forbidden, so we must make do with -shared.  Unfortunately,
256         # -shared by itself would get us global function descriptors
257         # and calls through PLTs, dynamic resolution of symbols, etc,
258         # which would break as well, but -Bsymbolic comes to the rescue.
259         export LDPIEFLAG:=-shared -Bsymbolic
260         UCLIBC_LDSO=ld.so.1
261 endif
262
263 # Keep the check_gcc from being needlessly executed
264 ifndef PIEFLAG
265 ifneq ($(UCLIBC_BUILD_PIE),y)
266 export PIEFLAG:=
267 else
268 export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
269 endif
270 endif
271 # We need to keep track of both the CC PIE flag (above) as 
272 # well as the LD PIE flag (below) because we can't rely on 
273 # gcc passing -pie if we used -fPIE
274 ifndef LDPIEFLAG
275 ifneq ($(UCLIBC_BUILD_PIE),y)
276 export LDPIEFLAG:=
277 else
278 export LDPIEFLAG:=$(shell $(LD) --help | grep -q pie && echo "-Wl,-pie")
279 endif
280 endif
281
282 # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
283 ifndef ASNEEDED
284 ifneq ($(UCLIBC_HAS_SSP),y)
285 export ASNEEDED:=
286 else
287 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 ) )
288 endif
289 endif
290
291 # Use '-Os' optimization if available, else use -O2, allow Config to override
292 OPTIMIZATION+=$(call check_gcc,-Os,-O2)
293 # Use the gcc 3.4 -funit-at-a-time optimization when available
294 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
295
296 # Add a bunch of extra pedantic annoyingly strict checks
297 XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
298 XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
299 #XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
300 # works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
301 #XWARNINGS+=-Wdeclaration-after-statement
302 XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
303 CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
304
305 # Make sure "char" behavior is the same everywhere
306 CPU_CFLAGS += -fsigned-char
307
308 # only i386 is known to work if compile.S gets -D__ASSEMBLER__
309 #CPU_CFLAGS += -std=c99
310
311 LDADD_LIBFLOAT=
312 ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
313 # Add -msoft-float to the CPU_FLAGS since ldso and libdl ignore CFLAGS.
314 # If -msoft-float isn't supported, we want an error anyway.
315 # Hmm... might need to revisit this for arm since it has 2 different
316 # soft float encodings.
317 ifneq ($(TARGET_ARCH),nios)
318 ifneq ($(TARGET_ARCH),nios2)
319     CPU_CFLAGS += -msoft-float
320 endif
321 endif
322 ifeq ($(TARGET_ARCH),arm)
323 # No longer needed with current toolchains, but leave it here for now.
324 # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
325 #    LDADD_LIBFLOAT=-lfloat
326 endif
327 endif
328
329 SSP_DISABLE_FLAGS?=$(call check_gcc,-fno-stack-protector,)
330 ifeq ($(UCLIBC_BUILD_SSP),y)
331 SSP_CFLAGS:=$(call check_gcc,-fno-stack-protector-all,)
332 SSP_CFLAGS+=$(call check_gcc,-fstack-protector,)
333 SSP_ALL_CFLAGS?=$(call check_gcc,-fstack-protector-all,)
334 else
335 SSP_CFLAGS:=$(SSP_DISABLE_FLAGS)
336 endif
337
338 # Some nice CFLAGS to work with
339 CFLAGS:=-include $(top_builddir)include/libc-symbols.h \
340         $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
341         -fno-builtin -nostdinc -I$(top_builddir)include -I.
342
343 LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -shared --warn-common --warn-once -z combreloc
344
345 ifeq ($(UCLIBC_BUILD_RELRO),y)
346 LDFLAGS_NOSTRIP+=-z relro
347 endif
348
349 ifeq ($(UCLIBC_BUILD_NOW),y)
350 LDFLAGS_NOSTRIP+=-z now
351 endif
352
353 LDFLAGS:=$(LDFLAGS_NOSTRIP) -z defs
354 ifeq ($(DODEBUG),y)
355     #CFLAGS += -g3
356     CFLAGS += -O0 -g3
357     STRIPTOOL:= true -Since_we_are_debugging
358 else
359     CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
360     LDFLAGS += -s
361 endif
362
363 ifeq ($(DOMULTI),y)
364 # we try to compile all sources at once into an object (IMA), but
365 # gcc-3.3.x does not support it
366 # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
367 # gcc-4.0.x supports it, supports the --combine flag, but does not need it
368 # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
369 GCC_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1)
370 ifeq ($(GCC_VER),3)
371 DOMULTI:=n
372 else
373 CFLAGS+=$(call check_gcc,--combine,)
374 endif
375 else
376 DOMULTI:=n
377 endif
378
379 ifeq ($(UCLIBC_HAS_THREADS),y)
380 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
381         PTNAME := nptl
382 else
383 ifeq ($(LINUXTHREADS_OLD),y)
384         PTNAME := linuxthreads.old
385 else
386         PTNAME := linuxthreads
387 endif
388 endif
389 PTDIR := $(top_builddir)libpthread/$(PTNAME)
390 # set up system dependencies include dirs (NOTE: order matters!)
391 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
392 PTINC:= -I$(PTDIR)                                              \
393         -I$(PTDIR)/compat                                       \
394         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)       \
395         -I$(PTDIR)/sysdeps/$(TARGET_ARCH)                       \
396         -I$(PTDIR)/sysdeps/unix/sysv/linux                      \
397         -I$(PTDIR)/sysdeps/pthread                              \
398         -I$(PTDIR)/sysdeps/pthread/bits                         \
399         -I$(PTDIR)/sysdeps/generic                              \
400         -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH)                 \
401         -I$(top_srcdir)ldso/include                             \
402         -include $(PTDIR)/compat/libc-symbols.h
403 #
404 # Test for TLS if NPTL support was selected.
405 #
406 GCC_HAS_TLS=$(shell \
407         echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
408 ifneq ($(GCC_HAS_TLS),)
409 gcc_tls_test_fail:
410         @echo "####";
411         @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
412         @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
413         @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
414         @echo "#### about this problem.";
415         @echo "####";
416         @echo "#### Exiting...";
417         @echo "####";
418         @exit 1;
419 endif
420 else
421 PTINC := \
422         -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
423         -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
424         -I$(PTDIR)/sysdeps/unix/sysv/linux \
425         -I$(PTDIR)/sysdeps/pthread \
426         -I$(PTDIR) \
427         -I$(top_builddir)libpthread
428 endif
429 CFLAGS+=$(PTINC)
430 else
431         PTNAME := 
432         PTINC  := 
433 endif
434
435 # Sigh, some stupid versions of gcc can't seem to cope with '-iwithprefix include'
436 #CFLAGS+=-iwithprefix include
437 CFLAGS+=-isystem $(shell $(CC) -print-file-name=include)
438
439 ifneq ($(DOASSERTS),y)
440 CFLAGS+=-DNDEBUG
441 endif
442
443 # moved from ldso/{ldso,libdl}
444 # BEWARE!!! At least mips* will die if -O0 is used!!!
445 ifeq ($(TARGET_ARCH),mips)
446 CFLAGS:=$(CFLAGS:-O0=-O1)
447 endif
448
449 # Keep the check_as from being needlessly executed
450 ifndef ASFLAGS_NOEXEC
451 ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
452 export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
453 else
454 export ASFLAGS_NOEXEC :=
455 endif
456 endif
457 ASFLAGS = $(ASFLAGS_NOEXEC)
458
459 LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
460 LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
461 LIBGCC_DIR:=$(dir $(LIBGCC))
462
463 # moved from libpthread/linuxthreads
464 ifeq ($(UCLIBC_CTOR_DTOR),y)
465 SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
466 SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
467 endif
468
469 ########################################
470 #
471 # uClinux shared lib support
472 #
473
474 ifeq ($(CONFIG_BINFMT_SHARED_FLAT),y)
475   # For the shared version of this, we specify no stack and its library ID
476   FLTFLAGS += -s 0
477   LIBID=1
478   export LIBID FLTFLAGS
479   SHARED_TARGET = lib/libc
480 endif