OSDN Git Service

Teach libdl to use normal libc symbols whenever possible, i.e. malloc
[uclinux-h8/uClibc.git] / ldso / ldso / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2004 Erik Andersen <andersen@uclibc.org>
4 #
5 # This program is free software; you can redistribute it and/or modify it under
6 # the terms of the GNU Library General Public License as published by the Free
7 # Software Foundation; either version 2 of the License, or (at your option) any
8 # later version.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Library General Public License
16 # along with this program; if not, write to the Free Software Foundation, Inc.,
17 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19
20 TOPDIR=../../
21 include $(TOPDIR)Rules.mak
22 LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
23
24
25 XXFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
26         -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
27         -fno-builtin -nostdinc -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
28
29 ifeq ($(SUPPORT_LD_DEBUG),y)
30 XXFLAGS=$(XWARNINGS) $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
31         -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
32         -fno-builtin -nostdinc -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
33 # Not really much point in including debugging info, since gdb
34 # can't really debug ldso, since gdb requires help from ldso to
35 # debug things....
36 XXFLAGS+=-Os #-g3
37 endif
38
39 # BEWARE!!! At least mips* will die if -O0 is used!!!
40 XXFLAGS :=$(XXFLAGS:-O0=-O1)
41
42 XXFLAGS+=$(shell $(CC) -print-search-dirs | sed -ne "s/install: *\(.*\)/-I\1include/gp")
43 LDFLAGS=$(CPU_LDFLAGS-y) -shared --warn-common --export-dynamic --sort-common \
44         -z combreloc --discard-locals --discard-all --no-undefined
45
46 CSRC= ldso.c dl-startup.c
47 COBJS=$(patsubst %.c,%.o, $(CSRC))
48 ASRC=$(shell ls $(TARGET_ARCH)/*.S)
49 AOBJS=$(patsubst %.S,%.o, $(ASRC))
50 OBJS=$(AOBJS) $(COBJS)
51
52 ifneq ($(strip $(SUPPORT_LD_DEBUG)),y)
53 LDFLAGS+=-s
54 endif
55
56 ifeq ($(strip $(SUPPORT_LD_DEBUG)),y)
57 XXFLAGS+=-D__SUPPORT_LD_DEBUG__
58 endif
59
60 ifeq ($(strip $(SUPPORT_LD_DEBUG_EARLY)),y)
61 XXFLAGS+=-D__SUPPORT_LD_DEBUG_EARLY__
62 endif
63
64 ifeq ($(strip $(FORCE_SHAREABLE_TEXT_SEGMENTS)),y)
65 XXFLAGS+=-DFORCE_SHAREABLE_TEXT_SEGMENTS
66 endif
67
68 #This stuff will not work with -fomit-frame-pointer
69 XXFLAGS := $(XXFLAGS:-fomit-frame-pointer=)
70
71 all: lib
72
73 lib:: $(OBJS) $(DLINK_OBJS)
74         $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
75                 -o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC);
76         $(INSTALL) -d $(TOPDIR)lib
77         $(INSTALL) -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
78         $(LN) -sf $(LDSO_FULLNAME) $(TOPDIR)lib/$(UCLIBC_LDSO)
79
80 $(COBJS): %.o : %.c
81         $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
82         $(STRIPTOOL) -x -R .note -R .comment $*.o
83
84 $(AOBJS): %.o : %.S
85         $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
86         $(STRIPTOOL) -x -R .note -R .comment $*.o
87
88 ldso.o: $(CSRC)
89
90 clean:
91         $(RM) $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i ldso.h *~