OSDN Git Service

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