Update.
[glibc.git] / elf / Makefile
blobb563e9389974d585e2b9cf586f7ee74fd54c345f
1 # Copyright (C) 1995, 1996, 1997, 1998 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
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 include ../Rules
81 ifeq (yes,$(build-shared))
82 # Make sure these things are built in the `make lib' pass so they can be used
83 # to run programs during the `make others' pass.
84 lib-noranlib: $(objpfx)$(rtld-installed-name) \
85 $(addprefix $(objpfx),$(extra-objs))
86 endif
88 # Command to link into a larger single relocatable object.
89 reloc-link = $(LINK.o) -nostdlib -nostartfiles -r -o $@
91 $(objpfx)dl-allobjs.os: $(rtld-routines:%=$(objpfx)%.os)
92 $(reloc-link) $^
94 # Link together the dynamic linker into a single relocatable object.
95 $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
96 $(reloc-link) '-Wl,-(' $^ -lgcc '-Wl,-)'
98 # Do we need a linker script?
99 rtld-ldscript-in := $(firstword $(wildcard $(+sysdep_dirs:%=%/rtld-ldscript.in)))
101 ifneq (,$(rtld-ldscript-in))
102 rtld-ldscript = $(objpfx)rtld-ldscript
103 generated += rtld-ldscript
105 LDFLAGS-rtld = -T $(rtld-ldscript)
106 before-compile += $(rtld-ldscript)
108 rtld-parms = $(wildcard $(+sysdep_dirs:%=%/rtld-parms))
109 include $(rtld-parms)
111 $(rtld-ldscript): $(rtld-ldscript-in) $(rtld-parms)
112 sed -e 's#@@rtld-oformat@@#$(rtld-oformat)#' \
113 -e 's#@@rtld-arch@@#$(rtld-arch)#' \
114 -e 's#@@rtld-entry@@#$(rtld-entry)#' \
115 -e 's#@@rtld-base@@#$(rtld-base)#' $< >$@
116 endif
118 $(objpfx)ld.so: $(objpfx)librtld.os $(addprefix $(objpfx),$(rtld-ldscript)) \
119 $(ld-map)
120 $(LINK.o) -nostdlib -nostartfiles -shared -o $@ $(LDFLAGS-rtld) \
121 $(filter-out $(rtld-ldscript) $(map-file),$^) \
122 $(load-map-file) -Wl,-soname=$(rtld-installed-name)
124 # interp.c exists just to get this string into the libraries.
125 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"'
127 ifneq (ld.so,$(rtld-installed-name))
128 # Make sure ld.so.1 exists in the build directory so we can link
129 # against it.
130 $(objpfx)$(rtld-installed-name): $(objpfx)ld.so
131 rm -f $@
132 ln -s $(<F) $@
133 generated += $(rtld-installed-name)
134 endif
136 # Build a file mentioning all trustworthy directories to look for shared
137 # libraries when using LD_LIBRARY_PATH in a setuid program. The user can
138 # add directories to the list by defining $(user-defined-trusted-dirs)
139 # before starting make.
140 $(objpfx)trusted-dirs.h: $(objpfx)trusted-dirs.st; @:
141 $(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig
142 $(make-target-directory)
143 dirs="$(subst :, ,$(default-rpath) $(user-defined-trusted-dirs))"; \
144 for dir in $$dirs; do \
145 echo " \"$$dir/\","; \
146 done > ${@:st=T}
147 $(move-if-change) ${@:st=T} ${@:st=h}
148 touch $@
149 CPPFLAGS-dl-load.c = -I$(objpfx).
150 CFLAGS-dl-load.c += -Wno-uninitialized
152 # Specify the dependencies of libdl.so; its commands come from the generic
153 # rule to build a shared library.
154 $(objpfx)libdl.so: $(objpfx)libdl_pic.a $(common-objpfx)libc.so $(objpfx)ld.so
156 $(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force)
157 $(do-install-program)
159 $(inst_slibdir)/$(rtld-installed-name): \
160 $(inst_slibdir)/$(rtld-version-installed-name)
161 $(make-shlib-link)
163 # Special target called by parent to install just the dynamic linker.
164 .PHONY: ldso_install
165 ldso_install: $(inst_slibdir)/$(rtld-installed-name)
168 common-ldd-rewrite = -e 's%@RTLD@%$(slibdir)/$(rtld-installed-name)%g' \
169 -e 's%@VERSION@%$(version)%g'
170 sh-ldd-rewrite = $(common-ldd-rewrite) -e 's%@BASH@%/bin/sh%g;s/\$$"/"/g'
171 bash-ldd-rewrite = $(common-ldd-rewrite) -e 's%@BASH@%$(BASH)%g' \
172 -e 's%@TEXTDOMAINDIR@%$(localedir)%g'
174 ifneq ($(have-bash2),yes)
175 ldd-shell = sh
176 else
177 ldd-shell = bash
178 endif
180 ifeq ($(ldd-rewrite-script),no)
181 define gen-ldd
182 sed $($(ldd-shell)-ldd-rewrite) < $< > $@.new
183 endef
184 else
185 define gen-ldd
186 sed $($(ldd-shell)-ldd-rewrite) < $< | sed -f $(ldd-rewrite-script) > $@.new
187 endef
188 endif
190 $(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \
191 $(common-objpfx)config.make
192 $(gen-ldd)
193 chmod 555 $@.new
194 mv -f $@.new $@
197 ifeq ($(build-shared),yes)
198 $(objpfx)sprof: $(objpfx)libdl.so$(libdl.so-version)
199 else
200 $(objpfx)sprof: $(objpfx)libdl.a
201 endif
203 # muwahaha
205 LDFLAGS-dl.so = -Wl,-dynamic-linker,$(slibdir)/$(rtld-installed-name)
206 $(objpfx)libdl.so: $(objpfx)eval.os