Update.
[glibc.git] / elf / Makefile
blobdff2c972f6ee4077a571cafaeab578242364bc34
1 # Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
19 # Makefile for elf subdirectory of GNU C Library.
21 subdir := elf
23 headers = elf.h bits/elfclass.h bits/dlfcn.h link.h dlfcn.h
24 routines = $(dl-routines) dl-open dl-close dl-symbol dl-support \
25 dl-addr enbl-secure dl-profstub
27 # The core dynamic linking functions are in libc for the static and
28 # profiled libraries.
29 dl-routines = $(addprefix dl-,load cache lookup object reloc deps \
30 runtime error init fini debug misc \
31 version profile)
32 # But they are absent from the shared libc, because that code is in ld.so.
33 elide-routines.os = $(dl-routines) dl-support enbl-secure
35 # ld.so uses those routines, plus some special stuff for being the program
36 # interpreter and operating independent of libc.
37 rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal
38 distribute = $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \
39 dl-hash.h soinit.c sofini.c ldd.bash.in eval.c \
40 genrtldtbl.awk atomicity.h dl-procinfo.h ldsodefs.h \
41 dl-librecon.h interp.c sln.c dl-origin.h hp-timing.h
43 include ../Makeconfig
45 extra-libs = libdl
46 extra-libs-others = $(extra-libs)
47 libdl-routines := dlopen dlclose dlsym dlvsym dlerror dladdr
48 ifeq ($(versioning),yes)
49 libdl-routines += dlopenold
50 libdl-shared-only-routines := dlopenold
51 endif
53 before-compile = $(objpfx)trusted-dirs.h
55 ifeq ($(versioning),yes)
56 ld-map = $(common-objpfx)libc.map
57 endif
59 ifeq (yes,$(build-shared))
60 extra-objs = $(rtld-routines:=.os) soinit.os sofini.os eval.os interp.os
61 generated = librtld.os dl-allobjs.os ld.so trusted-dirs.h trusted-dirs.st
62 install-others = $(inst_slibdir)/$(rtld-installed-name)
63 install-bin = ldd
64 generated += ldd
65 endif
67 others = sprof sln
68 install-bin += sprof
69 others-static = sln
70 install-rootsbin = sln
72 ifeq (yes,$(has-ldconfig))
73 others-static += ldconfig
74 others += ldconfig
75 install-rootsbin += ldconfig
76 endif
78 tests = loadtest restest1 preloadtest loadfail
80 include ../Rules
83 ifeq (yes,$(build-shared))
84 # Make sure these things are built in the `make lib' pass so they can be used
85 # to run programs during the `make others' pass.
86 lib-noranlib: $(objpfx)$(rtld-installed-name) \
87 $(addprefix $(objpfx),$(extra-objs))
88 endif
90 # Command to link into a larger single relocatable object.
91 reloc-link = $(LINK.o) -nostdlib -nostartfiles -r -o $@
93 $(objpfx)dl-allobjs.os: $(rtld-routines:%=$(objpfx)%.os)
94 $(reloc-link) $^
96 # Link together the dynamic linker into a single relocatable object.
97 $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
98 $(reloc-link) '-Wl,-(' $^ -lgcc '-Wl,-)'
100 # Do we need a linker script?
101 rtld-ldscript-in := $(firstword $(wildcard $(+sysdep_dirs:%=%/rtld-ldscript.in)))
103 ifneq (,$(rtld-ldscript-in))
104 rtld-ldscript = $(objpfx)rtld-ldscript
105 generated += rtld-ldscript
107 LDFLAGS-rtld = -T $(rtld-ldscript)
108 before-compile += $(rtld-ldscript)
110 rtld-parms = $(wildcard $(+sysdep_dirs:%=%/rtld-parms))
111 include $(rtld-parms)
113 $(rtld-ldscript): $(rtld-ldscript-in) $(rtld-parms)
114 sed -e 's#@@rtld-oformat@@#$(rtld-oformat)#' \
115 -e 's#@@rtld-arch@@#$(rtld-arch)#' \
116 -e 's#@@rtld-entry@@#$(rtld-entry)#' \
117 -e 's#@@rtld-base@@#$(rtld-base)#' $< >$@
118 endif
120 $(objpfx)ld.so: $(objpfx)librtld.os $(addprefix $(objpfx),$(rtld-ldscript)) \
121 $(ld-map)
122 $(LINK.o) -nostdlib -nostartfiles -shared -o $@ $(LDFLAGS-rtld) \
123 $(filter-out $(rtld-ldscript) $(map-file),$^) \
124 $(load-map-file) -Wl,-soname=$(rtld-installed-name)
126 # interp.c exists just to get this string into the libraries.
127 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"'
129 ifneq (ld.so,$(rtld-installed-name))
130 # Make sure ld.so.1 exists in the build directory so we can link
131 # against it.
132 $(objpfx)$(rtld-installed-name): $(objpfx)ld.so
133 rm -f $@
134 ln -s $(<F) $@
135 generated += $(rtld-installed-name)
136 endif
138 # Build a file mentioning all trustworthy directories to look for shared
139 # libraries when using LD_LIBRARY_PATH in a setuid program. The user can
140 # add directories to the list by defining $(user-defined-trusted-dirs)
141 # before starting make.
142 $(objpfx)trusted-dirs.h: $(objpfx)trusted-dirs.st; @:
143 $(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig
144 $(make-target-directory)
145 dirs="$(subst :, ,$(default-rpath) $(user-defined-trusted-dirs))"; \
146 for dir in $$dirs; do \
147 echo " \"$$dir/\","; \
148 done > ${@:st=T}
149 $(move-if-change) ${@:st=T} ${@:st=h}
150 touch $@
151 CPPFLAGS-dl-load.c = -I$(objpfx).
152 CFLAGS-dl-load.c += -Wno-uninitialized
154 # Specify the dependencies of libdl.so; its commands come from the generic
155 # rule to build a shared library.
156 $(objpfx)libdl.so: $(objpfx)libdl_pic.a $(common-objpfx)libc.so $(objpfx)ld.so
158 $(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force)
159 $(do-install-program)
161 $(inst_slibdir)/$(rtld-installed-name): \
162 $(inst_slibdir)/$(rtld-version-installed-name)
163 $(make-shlib-link)
165 # Special target called by parent to install just the dynamic linker.
166 .PHONY: ldso_install
167 ldso_install: $(inst_slibdir)/$(rtld-installed-name)
170 common-ldd-rewrite = -e 's%@RTLD@%$(slibdir)/$(rtld-installed-name)%g' \
171 -e 's%@VERSION@%$(version)%g'
172 sh-ldd-rewrite = $(common-ldd-rewrite) -e 's%@BASH@%/bin/sh%g;s/\$$"/"/g'
173 bash-ldd-rewrite = $(common-ldd-rewrite) -e 's%@BASH@%$(BASH)%g' \
174 -e 's%@TEXTDOMAINDIR@%$(localedir)%g'
176 ifneq ($(have-bash2),yes)
177 ldd-shell = sh
178 else
179 ldd-shell = bash
180 endif
182 ifeq ($(ldd-rewrite-script),no)
183 define gen-ldd
184 sed $($(ldd-shell)-ldd-rewrite) < $< > $@.new
185 endef
186 else
187 define gen-ldd
188 sed $($(ldd-shell)-ldd-rewrite) < $< | sed -f $(ldd-rewrite-script) > $@.new
189 endef
190 endif
192 $(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \
193 $(common-objpfx)config.make
194 $(gen-ldd)
195 chmod 555 $@.new
196 mv -f $@.new $@
199 ifeq ($(build-shared),yes)
200 $(objpfx)sprof: $(objpfx)libdl.so$(libdl.so-version)
201 else
202 $(objpfx)sprof: $(objpfx)libdl.a
203 endif
205 modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
206 testobj1_1 failobj
207 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
208 generated += $(test-modules)
210 LDLIBS-testobj1.so = -ldl
211 $(objpfx)testobj1_1.so: $(objpfx)testobj1.so
212 LDLIBS-testobj1_1.so = $(objpfx)testobj1.so
213 $(objpfx)testobj2.so: $(objpfx)testobj1.so
214 LDLIBS-testobj2.so = $(objpfx)testobj1.so -ldl
215 LDLIBS-testobj3.so = -ldl
216 LDLIBS-testobj4.so = -ldl
217 LDLIBS-testobj5.so = -ldl
218 LDLIBS-testobj6.so = -ldl
219 LDLIBS-failobj.so = $(objpfx)testobj6.so
221 $(test-modules): $(objpfx)%.so: $(objpfx)%.os
222 $(build-module)
224 $(objpfx)loadtest: $(objpfx)libdl.so
225 LDFLAGS-loadtest = -rdynamic
227 $(objpfx)loadtest.out: $(test-modules)
229 $(objpfx)restest1: $(objpfx)libdl.so
230 LDFLAGS-restest1 = -rdynamic $(objpfx)testobj1.so $(objpfx)testobj1_1.so
232 $(objpfx)restest1.out: $(test-modules)
234 $(objpfx)preloadtest.out: $(test-modules)
235 LDFLAGS-preloadtest = -rdynamic $(objpfx)testobj6.so
236 preloadtest-ENV = LD_PRELOAD=testobj1.so:testobj2.so:testobj3.so:testobj4.so:testobj5.so
238 $(objpfx)loadfail: $(objpfx)libdl.so
239 LDFLAGS-loadfail = -rdynamic
241 $(objpfx)loadfile.out: $(objpfx)failobj.so
243 # muwahaha
245 LDFLAGS-dl.so = -Wl,-dynamic-linker,$(slibdir)/$(rtld-installed-name)
246 $(objpfx)libdl.so: $(objpfx)eval.os