]> sourceware.org Git - glibc.git/blame - elf/Makefile
Thu Jun 13 00:02:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / elf / Makefile
CommitLineData
d66e34cd
RM
1# Makefile for elf subdirectory of GNU C Library.
2
a641835a 3# Copyright (C) 1995, 1996 Free Software Foundation, Inc.
01cc0be6
RM
4# This file is part of the GNU C Library.
5
6# The GNU C Library is free software; you can redistribute it and/or
7# modify it under the terms of the GNU Library General Public License as
8# published by the Free Software Foundation; either version 2 of the
9# License, or (at your option) any later version.
10
11# The GNU C Library is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# Library General Public License for more details.
15
16# You should have received a copy of the GNU Library General Public
17# License along with the GNU C Library; see the file COPYING.LIB. If
18# not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19# Cambridge, MA 02139, USA.
20
d66e34cd
RM
21subdir := elf
22
567c63af 23headers = elf.h elfclass.h link.h dlfcn.h
6e86a7c2 24routines = $(dl-routines) dl-open dl-close dl-symbol dl-support
266180eb
RM
25
26# The core dynamic linking functions are in libc for the static and
27# profiled libraries.
28dl-routines = $(addprefix dl-,load lookup object reloc deps \
4d6acc61 29 runtime error init fini debug)
266180eb
RM
30# But they are absent from the shared libc, because that code is in ld.so.
31elide-routines.so = $(dl-routines) dl-support
32
33# ld.so uses those routines, plus some special stuff for being the program
34# interpreter and operating independent of libc.
35rtld-routines := rtld $(dl-routines) dl-sysdep dl-minimal
36distribute = $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \
37 soinit.c sofini.c ldd.sh.in linux-compat.c
d66e34cd 38
266180eb 39extra-libs = libdl
a2b934be 40libdl-routines := dlopen dlclose dlsym dlerror dladdr
d66e34cd 41
01cc0be6 42
bfc04a9f
RM
43all: # Make this the default target; it will be defined in Rules.
44
d66e34cd
RM
45include ../Makeconfig
46
47ifeq (yes,$(build-shared))
0324daa0 48extra-objs = $(rtld-routines:=.so) soinit.so sofini.so
db2286f6 49generated = librtld.so dl-allobjs.so
094bacdb 50install-others = $(slibdir)/$(rtld-installed-name)
b122c703 51install-bin = ldd
86d2c878 52
ba79d61b 53ifneq (,$(filter linux% linux,$(config-os)))
86d2c878 54extra-objs += linux-compat.so
094bacdb 55install-others += $(slibdir)/ld-linux.so.1
14d898ae 56lib-noranlib: $(objpfx)ld-linux.so.1
86d2c878 57endif
d66e34cd 58endif
01cc0be6
RM
59
60include ../Rules
d66e34cd 61
86d2c878 62
a89d30d4
RM
63ifeq (yes, $(build-shared))
64# Make sure these things are built in the `make lib' pass so they can be used
65# to run programs during the `make others' pass.
66lib-noranlib: $(objpfx)$(rtld-installed-name) \
67 $(addprefix $(objpfx),$(extra-objs))
68endif
69
db2286f6
RM
70# Command to link into a larger single relocatable object.
71reloc-link = $(LINK.o) -nostdlib -nostartfiles -r -o $@
72
73$(objpfx)dl-allobjs.so: $(rtld-routines:%=$(objpfx)%.so)
74 $(reloc-link) $^
75
86d2c878
RM
76# Link together the dynamic linker into a single relocatable object.
77# We use this to produce both the ABI-compliant and Linux-compatible
78# dynamic linker shared objects below.
db2286f6 79$(objpfx)librtld.so: $(objpfx)dl-allobjs.so \
86d2c878 80 $(patsubst %,$(common-objpfx)lib%_pic.a,\
ba79d61b 81 c $(LDLIBS-c.so:-l%=%))
db2286f6 82 $(reloc-link) '-Wl,-(' $^ -lgcc '-Wl,-)'
d66e34cd 83
e3845371
RM
84$(objpfx)ld.so: $(objpfx)librtld.so
85 $(rtld-link) -Wl,-soname=$(rtld-installed-name)
86$(objpfx)ld-linux.so.1: $(objpfx)librtld.so
87 $(rtld-link) -Wl,-soname=ld-linux.so.1
88
89define rtld-link
90$(LINK.o) -nostdlib -nostartfiles -shared -o $@ \
91 -Wl,-rpath=$(default-rpath) $^
92endef
86d2c878 93
266180eb
RM
94# The dl code in the static libc needs a default library path.
95CFLAGS-dl-support.c = -D'DEFAULT_RPATH="$(default-rpath)"'
96
852fc4b9
RM
97ifneq (ld.so, $(rtld-installed-name))
98# Make sure ld-gnu.so.1 exists in the build directory so we can link
99# against it.
100$(objpfx)$(rtld-installed-name): $(objpfx)ld.so
101 rm -f $@
102 ln $< $@
103endif
104
86d2c878
RM
105# The Linux-compatible dynamic linker shared object is just the same
106# with one object file of compatibility initialization code added.
107$(objpfx)ld-linux.so.1: $(objpfx)linux-compat.so
108
109
266180eb
RM
110# Specify the dependencies of libdl.so; its commands come from the generic
111# rule to build a shared library.
7e0e6f50 112$(objpfx)libdl.so: $(objpfx)libdl_pic.a $(common-objpfx)libc.so $(objpfx)ld.so
b122c703 113
094bacdb
RM
114$(slibdir)/$(rtld-installed-name): $(objpfx)ld.so; $(do-install-program)
115$(slibdir)/ld-linux.so.1: $(objpfx)ld-linux.so.1; $(do-install-program)
b122c703 116
f8adc70c
RM
117$(objpfx)ldd: ldd.sh.in Makefile
118 sed 's%@RTLD@%$(slibdir)/$(rtld-installed-name)%g' < $< > $@.new
094bacdb 119 chmod 555 $@.new
b122c703 120 mv -f $@.new $@
This page took 0.05898 seconds and 5 git commands to generate.