OSDN Git Service

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