]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/Makefile
4dcc78a163fc4b1837836297f2d4727d048df743
[thirdparty/glibc.git] / elf / Makefile
1 # Copyright (C) 1995-2014 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8
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 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
17
18 # Makefile for elf subdirectory of GNU C Library.
19
20 subdir := elf
21
22 include ../Makeconfig
23
24 headers = elf.h bits/elfclass.h link.h bits/link.h
25 routines = $(dl-routines) dl-support dl-iteratephdr \
26 dl-addr enbl-secure dl-profstub \
27 dl-origin dl-libc dl-sym dl-tsd dl-sysdep
28
29 # The core dynamic linking functions are in libc for the static and
30 # profiled libraries.
31 dl-routines = $(addprefix dl-,load lookup object reloc deps hwcaps \
32 runtime error init fini debug misc \
33 version profile conflict tls origin scope \
34 execstack caller open close trampoline)
35 ifeq (yes,$(use-ldconfig))
36 dl-routines += dl-cache
37 endif
38 all-dl-routines = $(dl-routines) $(sysdep-dl-routines)
39 # But they are absent from the shared libc, because that code is in ld.so.
40 elide-routines.os = $(all-dl-routines) dl-support enbl-secure dl-origin \
41 dl-sysdep
42 shared-only-routines += dl-caller
43
44 # ld.so uses those routines, plus some special stuff for being the program
45 # interpreter and operating independent of libc.
46 rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal
47 all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines)
48
49 CFLAGS-dl-runtime.c = -fexceptions -fasynchronous-unwind-tables
50 CFLAGS-dl-lookup.c = -fexceptions -fasynchronous-unwind-tables
51 CFLAGS-dl-iterate-phdr.c = $(uses-callbacks)
52
53 ifeq ($(unwind-find-fde),yes)
54 routines += unwind-dw2-fde-glibc
55 shared-only-routines += unwind-dw2-fde-glibc
56 endif
57
58 before-compile += $(objpfx)trusted-dirs.h
59 generated += trusted-dirs.h trusted-dirs.st for-renamed/renamed.so
60 generated-dirs += for-renamed
61
62 ifeq ($(build-shared),yes)
63 ld-map = $(common-objpfx)ld.map
64 endif
65
66 ifeq (yes,$(build-shared))
67 extra-objs = $(all-rtld-routines:%=%.os) soinit.os sofini.os interp.os
68 generated += librtld.os dl-allobjs.os ld.so ldd
69 install-others = $(inst_rtlddir)/$(rtld-installed-name)
70 install-bin-script = ldd
71 endif
72
73 others = sprof sln
74 install-bin = sprof
75 others-static = sln
76 install-rootsbin = sln
77 sln-modules := static-stubs
78 extra-objs += $(sln-modules:=.o)
79
80 ifeq (yes,$(use-ldconfig))
81 ifeq (yes,$(build-shared))
82 others-static += ldconfig
83 others += ldconfig
84 install-rootsbin += ldconfig
85
86 ldconfig-modules := cache readlib xmalloc xstrdup chroot_canon static-stubs
87 extra-objs += $(ldconfig-modules:=.o)
88 endif
89 endif
90
91 # To find xmalloc.c and xstrdup.c
92 vpath %.c ../locale/programs
93
94 ifeq ($(build-shared),yes)
95 extra-objs += sotruss-lib.os sotruss-lib.so
96 install-others += $(inst_auditdir)/sotruss-lib.so
97 install-bin-script += sotruss
98 generated += sotruss
99 CPPFLAGS-sotruss-lib = -DNOT_IN_libc
100 $(objpfx)sotruss-lib.so: $(objpfx)sotruss-lib.os
101 $(build-module-asneeded)
102 $(objpfx)sotruss-lib.so: $(common-objpfx)libc.so $(objpfx)ld.so \
103 $(common-objpfx)libc_nonshared.a
104
105 $(objpfx)sotruss: sotruss.sh $(common-objpfx)config.make
106 sed -e 's%@BASH@%$(BASH)%g' \
107 -e 's%@VERSION@%$(version)%g' \
108 -e 's%@TEXTDOMAINDIR@%$(msgcatdir)%g' \
109 -e 's%@PREFIX@%$(prefix)%g' \
110 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
111 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
112 < $< > $@.new
113 chmod 555 $@.new
114 mv -f $@.new $@
115 $(inst_auditdir)/sotruss-lib.so: $(objpfx)sotruss-lib.so $(+force)
116 $(do-install-program)
117 endif
118
119 tests = tst-tls1 tst-tls2 tst-tls9 tst-leaks1 \
120 tst-array1 tst-array2 tst-array3 tst-array4 tst-array5 \
121 tst-auxv
122 tests-static = tst-tls1-static tst-tls2-static tst-stackguard1-static \
123 tst-leaks1-static tst-array1-static tst-array5-static \
124 tst-ptrguard1-static
125 ifeq (yes,$(build-shared))
126 tests-static += tst-tls9-static
127 tst-tls9-static-ENV = \
128 LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)dlfcn
129 endif
130 tests += $(tests-static)
131 ifeq (yes,$(build-shared))
132 tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
133 constload1 order vismain noload filter unload \
134 reldep reldep2 reldep3 reldep4 nodelete nodelete2 \
135 nodlopen nodlopen2 neededtest neededtest2 \
136 neededtest3 neededtest4 unload2 lateglobal initfirst global \
137 restest2 next dblload dblunload reldep5 reldep6 reldep7 reldep8 \
138 circleload1 tst-tls3 tst-tls4 tst-tls5 tst-tls6 tst-tls7 tst-tls8 \
139 tst-tls10 tst-tls11 tst-tls12 tst-tls13 tst-tls14 tst-tls15 \
140 tst-tls16 tst-tls17 tst-tls18 tst-tls19 tst-tls-dlinfo \
141 tst-align tst-align2 $(tests-execstack-$(have-z-execstack)) \
142 tst-dlmodcount tst-dlopenrpath tst-deep1 \
143 tst-dlmopen1 tst-dlmopen2 tst-dlmopen3 \
144 unload3 unload4 unload5 unload6 unload7 unload8 tst-global1 order2 \
145 tst-audit1 tst-audit2 tst-audit8 tst-audit9 \
146 tst-stackguard1 tst-addr1 tst-thrlock \
147 tst-unique1 tst-unique2 tst-unique3 tst-unique4 \
148 tst-initorder tst-initorder2 tst-relsort1 tst-null-argv \
149 tst-ptrguard1
150 # reldep9
151 ifeq ($(build-hardcoded-path-in-tests),yes)
152 tests += tst-dlopen-aout
153 endif
154 test-srcs = tst-pathopt
155 selinux-enabled := $(shell cat /selinux/enforce 2> /dev/null)
156 ifneq ($(selinux-enabled),1)
157 tests-execstack-yes = tst-execstack tst-execstack-needed tst-execstack-prog
158 endif
159 endif
160 ifeq ($(run-built-tests),yes)
161 tests-special += $(objpfx)tst-leaks1-mem.out \
162 $(objpfx)tst-leaks1-static-mem.out $(objpfx)noload-mem.out
163 endif
164 tlsmod17a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
165 tlsmod18a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
166 tlsmod17a-modules = $(addprefix tst-tlsmod17a, $(tlsmod17a-suffixes))
167 tlsmod18a-modules = $(addprefix tst-tlsmod18a, $(tlsmod17a-suffixes))
168 extra-test-objs += $(tlsmod17a-modules:=.os) $(tlsmod18a-modules:=.os)
169 test-extras += tst-tlsmod17a tst-tlsmod18a
170 modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
171 testobj1_1 failobj constload2 constload3 unloadmod \
172 dep1 dep2 dep3 dep4 vismod1 vismod2 vismod3 \
173 nodelmod1 nodelmod2 nodelmod3 nodelmod4 \
174 nodel2mod1 nodel2mod2 nodel2mod3 \
175 nodlopenmod nodlopenmod2 filtmod1 filtmod2 \
176 reldepmod1 reldepmod2 reldepmod3 reldepmod4 nextmod1 nextmod2 \
177 reldep4mod1 reldep4mod2 reldep4mod3 reldep4mod4 \
178 neededobj1 neededobj2 neededobj3 neededobj4 \
179 neededobj5 neededobj6 firstobj globalmod1 \
180 unload2mod unload2dep ltglobmod1 ltglobmod2 pathoptobj \
181 dblloadmod1 dblloadmod2 dblloadmod3 reldepmod5 reldepmod6 \
182 reldep6mod0 reldep6mod1 reldep6mod2 reldep6mod3 reldep6mod4 \
183 reldep7mod1 reldep7mod2 \
184 tst-tlsmod1 tst-tlsmod2 tst-tlsmod3 tst-tlsmod4 \
185 tst-tlsmod5 tst-tlsmod6 tst-tlsmod7 tst-tlsmod8 \
186 tst-tlsmod9 tst-tlsmod10 tst-tlsmod11 tst-tlsmod12 \
187 tst-tlsmod13 tst-tlsmod13a tst-tlsmod14a tst-tlsmod14b \
188 tst-tlsmod15a tst-tlsmod15b tst-tlsmod16a tst-tlsmod16b \
189 $(tlsmod17a-modules) tst-tlsmod17b $(tlsmod18a-modules) \
190 tst-tls19mod1 tst-tls19mod2 tst-tls19mod3 \
191 circlemod1 circlemod1a circlemod2 circlemod2a \
192 circlemod3 circlemod3a \
193 reldep8mod1 reldep8mod2 reldep8mod3 \
194 reldep9mod1 reldep9mod2 reldep9mod3 \
195 tst-alignmod tst-alignmod2 \
196 $(modules-execstack-$(have-z-execstack)) \
197 tst-dlopenrpathmod tst-deep1mod1 tst-deep1mod2 tst-deep1mod3 \
198 tst-dlmopen1mod tst-auditmod1 \
199 unload3mod1 unload3mod2 unload3mod3 unload3mod4 \
200 unload4mod1 unload4mod2 unload4mod3 unload4mod4 \
201 unload6mod1 unload6mod2 unload6mod3 \
202 unload7mod1 unload7mod2 \
203 unload8mod1 unload8mod1x unload8mod2 unload8mod3 \
204 order2mod1 order2mod2 order2mod3 order2mod4 \
205 tst-unique1mod1 tst-unique1mod2 \
206 tst-unique2mod1 tst-unique2mod2 \
207 tst-auditmod9a tst-auditmod9b \
208 tst-unique3lib tst-unique3lib2 \
209 tst-unique4lib \
210 tst-initordera1 tst-initorderb1 \
211 tst-initordera2 tst-initorderb2 \
212 tst-initordera3 tst-initordera4 \
213 tst-initorder2a tst-initorder2b tst-initorder2c \
214 tst-initorder2d \
215 tst-relsort1mod1 tst-relsort1mod2 tst-array2dep \
216 tst-array5dep tst-null-argv-lib
217 ifeq (yesyes,$(have-fpie)$(build-shared))
218 modules-names += tst-piemod1
219 tests += tst-pie1 tst-pie2
220 tests-pie += tst-pie1 tst-pie2
221 endif
222 modules-execstack-yes = tst-execstack-mod
223 extra-test-objs += $(addsuffix .os,$(strip $(modules-names)))
224 # We need this variable to be sure the test modules get the right CPPFLAGS.
225 test-extras += $(modules-names)
226
227 # filtmod1.so has a special rule
228 modules-names-nobuild := filtmod1
229
230 ifneq (no,$(multi-arch))
231 tests-static += ifuncmain1static ifuncmain1picstatic \
232 ifuncmain2static ifuncmain2picstatic \
233 ifuncmain4static ifuncmain4picstatic \
234 ifuncmain5static ifuncmain5picstatic \
235 ifuncmain7static ifuncmain7picstatic
236
237 ifeq (yes,$(build-shared))
238 tests += ifuncmain1 ifuncmain1pic ifuncmain1vis ifuncmain1vispic \
239 ifuncmain1staticpic \
240 ifuncmain2 ifuncmain2pic ifuncmain3 ifuncmain4 \
241 ifuncmain5 ifuncmain5pic ifuncmain5staticpic \
242 ifuncmain7 ifuncmain7pic
243 ifunc-test-modules = ifuncdep1 ifuncdep1pic ifuncdep2 ifuncdep2pic \
244 ifuncdep5 ifuncdep5pic
245 extra-test-objs += $(ifunc-test-modules:=.o)
246 test-extras += $(ifunc-test-modules)
247 ifeq (yes,$(have-fpie))
248 ifunc-pie-tests = ifuncmain1pie ifuncmain1vispie ifuncmain1staticpie \
249 ifuncmain5pie ifuncmain6pie ifuncmain7pie
250 tests += $(ifunc-pie-tests)
251 tests-pie += $(ifunc-pie-tests)
252 endif
253 modules-names += ifuncmod1 ifuncmod3 ifuncmod5 ifuncmod6
254 endif
255 endif
256
257 ifeq (yes,$(build-shared))
258 ifeq ($(run-built-tests),yes)
259 tests-special += $(objpfx)tst-pathopt.out $(objpfx)tst-rtld-load-self.out
260 endif
261 tests-special += $(objpfx)check-textrel.out $(objpfx)check-execstack.out \
262 $(objpfx)check-localplt.out
263 endif
264
265 ifeq ($(run-built-tests),yes)
266 tests-special += $(objpfx)order-cmp.out $(objpfx)tst-array1-cmp.out \
267 $(objpfx)tst-array1-static-cmp.out \
268 $(objpfx)tst-array2-cmp.out $(objpfx)tst-array3-cmp.out \
269 $(objpfx)tst-array4-cmp.out $(objpfx)tst-array5-cmp.out \
270 $(objpfx)tst-array5-static-cmp.out $(objpfx)order2-cmp.out \
271 $(objpfx)tst-initorder-cmp.out \
272 $(objpfx)tst-initorder2-cmp.out $(objpfx)tst-unused-dep.out \
273 $(objpfx)tst-unused-dep-cmp.out
274 endif
275
276 check-abi: $(objpfx)check-abi-ld.out
277 tests-special += $(objpfx)check-abi-ld.out
278 update-abi: update-abi-ld
279
280 include ../Rules
281
282 ifeq (yes,$(build-shared))
283 # Make sure these things are built in the `make lib' pass so they can be used
284 # to run programs during the `make others' pass.
285 lib-noranlib: $(objpfx)$(rtld-installed-name) \
286 $(addprefix $(objpfx),$(extra-objs))
287 endif
288
289 # Command to link into a larger single relocatable object.
290 reloc-link = $(LINK.o) -nostdlib -nostartfiles -r
291
292 $(objpfx)sotruss-lib.so: $(shlib-lds)
293
294 $(objpfx)dl-allobjs.os: $(all-rtld-routines:%=$(objpfx)%.os)
295 $(reloc-link) -o $@ $^
296
297 # Link together the dynamic linker into a single relocatable object.
298 # First we do a link against libc_pic.a just to get a link map,
299 # and discard the object produced by that link. From the link map
300 # we can glean all the libc modules that need to go into the dynamic
301 # linker. Then we do a recursive make that goes into all the subdirs
302 # those modules come from and builds special rtld-foo.os versions that
303 # are compiled with special flags, and puts these modules into rtld-libc.a
304 # for us. Then we do the real link using rtld-libc.a instead of libc_pic.a.
305
306 $(objpfx)librtld.map: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
307 @-rm -f $@T
308 $(reloc-link) -o $@.o '-Wl,-(' $^ -lgcc '-Wl,-)' -Wl,-Map,$@T
309 rm -f $@.o
310 mv -f $@T $@
311
312 $(objpfx)librtld.mk: $(objpfx)librtld.map Makefile
313 LC_ALL=C \
314 sed -n 's@^$(common-objpfx)\([^(]*\)(\([^)]*\.os\)) *.*$$@\1 \2@p' \
315 $< | \
316 while read lib file; do \
317 case $$lib in \
318 libc_pic.a) \
319 LC_ALL=C fgrep -l /$$file \
320 $(common-objpfx)stamp.os $(common-objpfx)*/stamp.os | \
321 LC_ALL=C \
322 sed 's@^$(common-objpfx)\([^/]*\)/stamp\.os$$@rtld-\1'" +=$$file@"\
323 ;; \
324 */*.a) \
325 echo rtld-$${lib%%/*} += $$file ;; \
326 *) echo "Wasn't expecting $$lib($$file)" >&2; exit 1 ;; \
327 esac; \
328 done > $@T
329 echo rtld-subdirs = `LC_ALL=C sed 's/^rtld-\([^ ]*\).*$$/\1/' $@T \
330 | LC_ALL=C sort -u` >> $@T
331 mv -f $@T $@
332
333 $(objpfx)rtld-libc.a: $(objpfx)librtld.mk FORCE
334 $(MAKE) -f $< -f rtld-Rules
335
336 $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(objpfx)rtld-libc.a
337 $(LINK.o) -nostdlib -nostartfiles -r -o $@ '-Wl,-(' $^ -lgcc '-Wl,-)' \
338 -Wl,-Map,$@.map
339
340 generated += librtld.map librtld.mk rtld-libc.a librtld.os.map
341
342 z-now-yes = -Wl,-z,now
343
344 $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map)
345 # Link into a temporary file so that we don't touch $@ at all
346 # if the sanity check below fails.
347 $(LINK.o) -nostdlib -nostartfiles -shared -o $@.new \
348 $(LDFLAGS-rtld) -Wl,-z,defs $(z-now-$(bind-now)) \
349 $(filter-out $(map-file),$^) $(load-map-file) \
350 -Wl,-soname=$(rtld-installed-name) \
351 -Wl,-defsym=_begin=0
352 $(READELF) -s $@.new \
353 | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
354 mv -f $@.new $@
355
356 # interp.c exists just to get this string into the libraries.
357 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(rtlddir)/$(rtld-installed-name)"' \
358 -DNOT_IN_libc=1
359 $(objpfx)interp.os: $(common-objpfx)config.make
360
361 ifneq (ld.so,$(rtld-installed-name))
362 # Make sure ld.so.1 exists in the build directory so we can link
363 # against it.
364 $(objpfx)$(rtld-installed-name): $(objpfx)ld.so
365 rm -f $@
366 ln -s $(<F) $@
367 generated += $(rtld-installed-name)
368 endif
369
370 # Build a file mentioning all trustworthy directories to look for shared
371 # libraries when using LD_LIBRARY_PATH in a setuid program. The user can
372 # add directories to the list by defining $(user-defined-trusted-dirs)
373 # before starting make.
374 $(objpfx)trusted-dirs.h: $(objpfx)trusted-dirs.st; @:
375 $(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig
376 $(make-target-directory)
377 echo "$(subst :, ,$(default-rpath) $(user-defined-trusted-dirs))" \
378 | $(AWK) -f gen-trusted-dirs.awk > ${@:st=T};
379 echo '#define DL_DST_LIB "$(notdir $(slibdir))"' >> ${@:st=T}
380 $(move-if-change) ${@:st=T} ${@:st=h}
381 touch $@
382 CPPFLAGS-dl-load.c = -I$(objpfx). -I$(csu-objpfx).
383
384 ifeq (yes,$(build-shared))
385 $(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force)
386 $(make-target-directory)
387 $(do-install-program)
388
389 $(inst_rtlddir)/$(rtld-installed-name): \
390 $(inst_slibdir)/$(rtld-version-installed-name) \
391 $(inst_slibdir)/libc-$(version).so
392 $(make-target-directory)
393 $(make-shlib-link)
394
395 # Special target called by parent to install just the dynamic linker.
396 .PHONY: ldso_install
397 ldso_install: $(inst_rtlddir)/$(rtld-installed-name)
398 endif
399
400
401 ldd-rewrite = -e 's%@RTLD@%$(rtlddir)/$(rtld-installed-name)%g' \
402 -e 's%@VERSION@%$(version)%g' \
403 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
404 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
405 -e 's%@BASH@%$(BASH)%g' \
406 -e 's%@TEXTDOMAINDIR@%$(msgcatdir)%g'
407
408 ifeq ($(ldd-rewrite-script),no)
409 define gen-ldd
410 LC_ALL=C sed $(ldd-rewrite) < $< > $@.new
411 endef
412 else
413 define gen-ldd
414 LC_ALL=C sed $(ldd-rewrite) < $< \
415 | LC_ALL=C sed -f $(patsubst $(..)/%,/%,$(..)$(ldd-rewrite-script)) > $@.new
416 endef
417 endif
418
419 $(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \
420 $(common-objpfx)config.make
421 $(gen-ldd)
422 chmod 555 $@.new
423 mv -f $@.new $@
424
425 $(objpfx)sprof: $(libdl)
426
427 $(objpfx)sln: $(sln-modules:%=$(objpfx)%.o)
428
429 $(objpfx)ldconfig: $(ldconfig-modules:%=$(objpfx)%.o)
430
431 SYSCONF-FLAGS := -D'SYSCONFDIR="$(sysconfdir)"'
432 CFLAGS-ldconfig.c = $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \
433 -D'SLIBDIR="$(slibdir)"' -DIS_IN_ldconfig=1
434 CFLAGS-dl-cache.c = $(SYSCONF-FLAGS)
435 CFLAGS-cache.c = $(SYSCONF-FLAGS)
436 CFLAGS-rtld.c = $(SYSCONF-FLAGS)
437
438 CPPFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),\
439 -DNOT_IN_libc=1 -DIS_IN_rtld=1 -DIN_LIB=rtld)
440
441 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(strip $(modules-names))))
442 generated += $(addsuffix .so,$(strip $(modules-names)))
443
444 $(objpfx)testobj1.so: $(libdl)
445 $(objpfx)testobj1_1.so: $(objpfx)testobj1.so $(libdl)
446 $(objpfx)testobj2.so: $(objpfx)testobj1.so $(libdl)
447 $(objpfx)testobj3.so: $(libdl)
448 $(objpfx)testobj4.so: $(libdl)
449 $(objpfx)testobj5.so: $(libdl)
450 $(objpfx)testobj6.so: $(objpfx)testobj1.so $(objpfx)testobj2.so $(libdl)
451 $(objpfx)failobj.so: $(objpfx)testobj6.so
452 $(objpfx)dep1.so: $(objpfx)dep2.so $(objpfx)dep4.so
453 $(objpfx)dep2.so: $(objpfx)dep3.so $(objpfx)dep4.so
454 $(objpfx)dep4.so: $(objpfx)dep3.so
455 $(objpfx)nodelmod3.so: $(objpfx)nodelmod4.so
456 $(objpfx)nextmod1.so: $(libdl)
457 $(objpfx)neededobj1.so: $(libdl)
458 $(objpfx)neededobj2.so: $(objpfx)neededobj1.so $(libdl)
459 $(objpfx)neededobj3.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so $(libdl)
460 $(objpfx)neededobj4.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
461 $(objpfx)neededobj3.so $(libdl)
462 $(objpfx)neededobj6.so: $(objpfx)neededobj5.so
463 $(objpfx)unload2mod.so: $(objpfx)unload2dep.so
464 $(objpfx)ltglobmod2.so: $(libdl)
465 $(objpfx)firstobj.so: $(shared-thread-library)
466 $(objpfx)globalmod1.so: $(libdl)
467 $(objpfx)reldep4mod1.so: $(objpfx)reldep4mod3.so
468 $(objpfx)reldep4mod2.so: $(objpfx)reldep4mod4.so
469 $(objpfx)dblloadmod1.so: $(objpfx)dblloadmod3.so
470 $(objpfx)dblloadmod2.so: $(objpfx)dblloadmod3.so
471 $(objpfx)reldepmod5.so: $(objpfx)reldepmod2.so
472 $(objpfx)reldepmod6.so: $(objpfx)reldepmod2.so
473 $(objpfx)reldep6mod1.so: $(objpfx)reldep6mod0.so
474 $(objpfx)reldep6mod2.so: $(objpfx)reldep6mod1.so
475 $(objpfx)reldep6mod3.so: $(objpfx)reldep6mod2.so
476 $(objpfx)reldep6mod4.so: $(objpfx)reldep6mod1.so
477 $(objpfx)tst-tlsmod3.so: $(objpfx)tst-tlsmod2.so
478 $(objpfx)tst-tlsmod8.so: $(objpfx)tst-tlsmod7.so
479 $(objpfx)tst-tlsmod10.so: $(objpfx)tst-tlsmod9.so
480 $(objpfx)tst-tlsmod12.so: $(objpfx)tst-tlsmod11.so
481 $(objpfx)tst-tlsmod13a.so: $(objpfx)tst-tlsmod13.so
482 # For tst-tls9-static, make sure the modules it dlopens have libc.so in DT_NEEDED
483 $(objpfx)tst-tlsmod5.so: $(common-objpfx)libc.so
484 $(objpfx)tst-tlsmod6.so: $(common-objpfx)libc.so
485 $(objpfx)tst-tls19mod1.so: $(objpfx)tst-tls19mod2.so $(objpfx)tst-tls19mod3.so
486 $(objpfx)tst-tls19mod3.so: $(objpfx)ld.so
487 $(objpfx)reldep8mod3.so: $(objpfx)reldep8mod1.so $(objpfx)reldep8mod2.so
488 $(objpfx)nodel2mod3.so: $(objpfx)nodel2mod1.so $(objpfx)nodel2mod2.so
489 $(objpfx)reldep9mod2.so: $(objpfx)reldep9mod1.so
490 $(objpfx)reldep9mod3.so: $(objpfx)reldep9mod1.so $(objpfx)reldep9mod2.so
491 $(objpfx)unload3mod1.so: $(objpfx)unload3mod3.so
492 $(objpfx)unload3mod2.so: $(objpfx)unload3mod3.so
493 $(objpfx)unload3mod3.so: $(objpfx)unload3mod4.so
494 $(objpfx)unload4mod1.so: $(objpfx)unload4mod2.so $(objpfx)unload4mod3.so
495 $(objpfx)unload4mod2.so: $(objpfx)unload4mod4.so $(objpfx)unload4mod3.so
496 $(objpfx)unload6mod1.so: $(libdl)
497 $(objpfx)unload6mod2.so: $(libdl)
498 $(objpfx)unload6mod3.so: $(libdl)
499 $(objpfx)unload7mod1.so: $(libdl)
500 $(objpfx)unload7mod2.so: $(objpfx)unload7mod1.so
501 $(objpfx)unload8mod1.so: $(objpfx)unload8mod2.so
502 $(objpfx)unload8mod2.so: $(objpfx)unload8mod3.so
503 $(objpfx)unload8mod3.so: $(libdl)
504 $(objpfx)tst-initordera2.so: $(objpfx)tst-initordera1.so
505 $(objpfx)tst-initorderb2.so: $(objpfx)tst-initorderb1.so $(objpfx)tst-initordera2.so
506 $(objpfx)tst-initordera3.so: $(objpfx)tst-initorderb2.so $(objpfx)tst-initorderb1.so
507 $(objpfx)tst-initordera4.so: $(objpfx)tst-initordera3.so
508 $(objpfx)tst-initorder: $(objpfx)tst-initordera4.so $(objpfx)tst-initordera1.so $(objpfx)tst-initorderb2.so
509 $(objpfx)tst-null-argv: $(objpfx)tst-null-argv-lib.so
510
511 tst-null-argv-ENV = LD_DEBUG=all LD_DEBUG_OUTPUT=$(objpfx)tst-null-argv.debug.out
512 LDFLAGS-nodel2mod3.so = $(no-as-needed)
513 LDFLAGS-reldepmod5.so = $(no-as-needed)
514 LDFLAGS-reldep6mod1.so = $(no-as-needed)
515 LDFLAGS-reldep6mod4.so = $(no-as-needed)
516 LDFLAGS-reldep8mod3.so = $(no-as-needed)
517 LDFLAGS-unload4mod1.so = $(no-as-needed)
518 LDFLAGS-unload4mod2.so = $(no-as-needed)
519 LDFLAGS-tst-initorder = $(no-as-needed)
520 LDFLAGS-tst-initordera2.so = $(no-as-needed)
521 LDFLAGS-tst-initordera3.so = $(no-as-needed)
522 LDFLAGS-tst-initordera4.so = $(no-as-needed)
523 LDFLAGS-tst-initorderb2.so = $(no-as-needed)
524 LDFLAGS-tst-tlsmod5.so = -nostdlib $(no-as-needed)
525 LDFLAGS-tst-tlsmod6.so = -nostdlib $(no-as-needed)
526
527 testobj1.so-no-z-defs = yes
528 testobj3.so-no-z-defs = yes
529 testobj4.so-no-z-defs = yes
530 testobj5.so-no-z-defs = yes
531 testobj6.so-no-z-defs = yes
532 failobj.so-no-z-defs = yes
533 constload2.so-no-z-defs = yes
534 constload3.so-no-z-defs = yes
535 nodelmod1.so-no-z-defs = yes
536 nodelmod2.so-no-z-defs = yes
537 nodelmod4.so-no-z-defs = yes
538 nodel2mod2.so-no-z-defs = yes
539 reldepmod2.so-no-z-defs = yes
540 reldepmod3.so-no-z-defs = yes
541 reldepmod4.so-no-z-defs = yes
542 reldep4mod4.so-no-z-defs = yes
543 reldep4mod2.so-no-z-defs = yes
544 ltglobmod2.so-no-z-defs = yes
545 dblloadmod3.so-no-z-defs = yes
546 tst-tlsmod1.so-no-z-defs = yes
547 tst-tlsmod2.so-no-z-defs = yes
548 tst-tlsmod3.so-no-z-defs = yes
549 tst-tlsmod4.so-no-z-defs = yes
550 tst-tlsmod7.so-no-z-defs = yes
551 tst-tlsmod8.so-no-z-defs = yes
552 tst-tlsmod9.so-no-z-defs = yes
553 tst-tlsmod10.so-no-z-defs = yes
554 tst-tlsmod12.so-no-z-defs = yes
555 tst-tlsmod14a.so-no-z-defs = yes
556 tst-tlsmod14b.so-no-z-defs = yes
557 tst-tlsmod15a.so-no-z-defs = yes
558 tst-tlsmod16b.so-no-z-defs = yes
559 circlemod2.so-no-z-defs = yes
560 circlemod3.so-no-z-defs = yes
561 circlemod3a.so-no-z-defs = yes
562 reldep8mod2.so-no-z-defs = yes
563 reldep9mod1.so-no-z-defs = yes
564 unload3mod4.so-no-z-defs = yes
565 unload4mod1.so-no-z-defs = yes
566 ifuncmod1.so-no-z-defs = yes
567 ifuncmod5.so-no-z-defs = yes
568 ifuncmod6.so-no-z-defs = yes
569 tst-auditmod9a.so-no-z-defs = yes
570 tst-auditmod9b.so-no-z-defs = yes
571
572 ifeq ($(build-shared),yes)
573 # Build all the modules even when not actually running test programs.
574 tests: $(test-modules)
575 endif
576
577 $(objpfx)loadtest: $(libdl)
578 LDFLAGS-loadtest = -rdynamic
579
580 $(objpfx)loadtest.out: $(test-modules)
581
582 $(objpfx)neededtest: $(libdl)
583 $(objpfx)neededtest.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
584 $(objpfx)neededobj3.so
585
586 $(objpfx)neededtest2: $(libdl)
587 $(objpfx)neededtest2.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
588 $(objpfx)neededobj3.so
589
590 $(objpfx)neededtest3: $(libdl)
591 $(objpfx)neededtest3.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
592 $(objpfx)neededobj3.so $(objpfx)neededobj4.so
593
594 neededtest4-ENV = LC_ALL=C LANGUAGE=C
595 $(objpfx)neededtest4: $(libdl) $(objpfx)neededobj1.so
596 $(objpfx)neededtest4.out: $(objpfx)neededobj5.so $(objpfx)neededobj6.so
597
598 $(objpfx)restest1: $(objpfx)testobj1.so $(objpfx)testobj1_1.so $(libdl)
599 LDFLAGS-restest1 = -rdynamic
600
601 $(objpfx)restest2: $(libdl)
602 LDFLAGS-restest2 = -rdynamic
603
604 $(objpfx)restest1.out: $(test-modules)
605
606 preloadtest-preloads = testobj1 testobj2 testobj3 testobj4 testobj5
607 $(objpfx)preloadtest: $(objpfx)testobj6.so
608 LDFLAGS-preloadtest = -rdynamic
609 $(objpfx)preloadtest.out: $(preloadtest-preloads:%=$(objpfx)%.so)
610 preloadtest-ENV = \
611 LD_PRELOAD=$(subst $(empty) ,:,$(strip $(preloadtest-preloads:=.so)))
612
613 $(objpfx)loadfail: $(libdl)
614 LDFLAGS-loadfail = -rdynamic
615
616 $(objpfx)loadfail.out: $(objpfx)failobj.so
617
618 $(objpfx)multiload: $(libdl)
619 LDFLAGS-multiload = -rdynamic
620 CFLAGS-multiload.c = -DOBJDIR=\"$(elf-objpfx)\"
621
622 $(objpfx)multiload.out: $(objpfx)testobj1.so
623
624 $(objpfx)origtest: $(libdl)
625 LDFLAGS-origtest = -rdynamic
626 $(objpfx)origtest.out: $(objpfx)testobj1.so
627
628 ifeq ($(have-thread-library),yes)
629 $(objpfx)resolvfail: $(libdl) $(shared-thread-library)
630 else
631 $(objpfx)resolvfail: $(libdl)
632 endif
633
634 $(objpfx)constload1: $(libdl)
635 $(objpfx)constload1.out: $(objpfx)constload2.so $(objpfx)constload3.so
636
637 $(objpfx)circleload1: $(libdl)
638 $(objpfx)circleload1.out: $(objpfx)circlemod1.so \
639 $(objpfx)circlemod1a.so
640
641 $(objpfx)circlemod1.so: $(objpfx)circlemod2.so
642 $(objpfx)circlemod2.so: $(objpfx)circlemod3.so
643 $(objpfx)circlemod1a.so: $(objpfx)circlemod2a.so
644 $(objpfx)circlemod2a.so: $(objpfx)circlemod3a.so
645
646 $(objpfx)order: $(addprefix $(objpfx),dep4.so dep3.so dep2.so dep1.so)
647
648 $(objpfx)order-cmp.out: $(objpfx)order.out
649 (echo "0123456789" | cmp $< -) > $@; \
650 $(evaluate-test)
651
652 $(objpfx)vismain: $(addprefix $(objpfx),vismod1.so vismod2.so)
653 $(objpfx)vismain.out: $(addprefix $(objpfx),vismod3.so)
654 vismain-ENV = LD_PRELOAD=$(addprefix $(objpfx),vismod3.so)
655
656 $(objpfx)noload: $(objpfx)testobj1.so $(libdl)
657 LDFLAGS-noload = -rdynamic $(no-as-needed)
658 $(objpfx)noload.out: $(objpfx)testobj5.so
659
660 $(objpfx)noload-mem.out: $(objpfx)noload.out
661 $(common-objpfx)malloc/mtrace $(objpfx)noload.mtrace > $@; \
662 $(evaluate-test)
663 noload-ENV = MALLOC_TRACE=$(objpfx)noload.mtrace
664
665 LDFLAGS-nodelete = -rdynamic
666 LDFLAGS-nodelmod1.so = -Wl,--enable-new-dtags,-z,nodelete
667 LDFLAGS-nodelmod4.so = -Wl,--enable-new-dtags,-z,nodelete
668 $(objpfx)nodelete: $(libdl)
669 $(objpfx)nodelete.out: $(objpfx)nodelmod1.so $(objpfx)nodelmod2.so \
670 $(objpfx)nodelmod3.so
671
672 LDFLAGS-nodlopenmod.so = -Wl,--enable-new-dtags,-z,nodlopen
673 $(objpfx)nodlopen: $(libdl)
674 $(objpfx)nodlopen.out: $(objpfx)nodlopenmod.so
675
676 $(objpfx)nodlopenmod2.so: $(objpfx)nodlopenmod.so
677 $(objpfx)nodlopen2: $(libdl)
678 $(objpfx)nodlopen2.out: $(objpfx)nodlopenmod2.so
679
680 $(objpfx)filtmod1.so: $(objpfx)filtmod1.os $(objpfx)filtmod2.so
681 $(LINK.o) -shared -o $@ -B$(csu-objpfx) $(LDFLAGS.so) \
682 -L$(subst :, -L,$(rpath-link)) \
683 -Wl,-rpath-link=$(rpath-link) \
684 $< -Wl,-F,$(objpfx)filtmod2.so
685 $(objpfx)filter: $(objpfx)filtmod1.so
686
687 $(objpfx)unload: $(libdl)
688 $(objpfx)unload.out: $(objpfx)unloadmod.so
689
690 $(objpfx)reldep: $(libdl)
691 $(objpfx)reldep.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod2.so
692
693 $(objpfx)reldep2: $(libdl)
694 $(objpfx)reldep2.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod3.so
695
696 $(objpfx)reldep3: $(libdl)
697 $(objpfx)reldep3.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod4.so
698
699 $(objpfx)reldep4: $(libdl)
700 $(objpfx)reldep4.out: $(objpfx)reldep4mod1.so $(objpfx)reldep4mod2.so
701
702 $(objpfx)next: $(objpfx)nextmod1.so $(objpfx)nextmod2.so $(libdl)
703 LDFLAGS-next = $(no-as-needed)
704
705 $(objpfx)unload2: $(libdl)
706 $(objpfx)unload2.out: $(objpfx)unload2mod.so $(objpfx)unload2dep.so
707
708 $(objpfx)lateglobal: $(libdl)
709 $(objpfx)lateglobal.out: $(objpfx)ltglobmod1.so $(objpfx)ltglobmod2.so
710
711 $(objpfx)tst-pathopt: $(libdl)
712 $(objpfx)tst-pathopt.out: tst-pathopt.sh $(objpfx)tst-pathopt \
713 $(objpfx)pathoptobj.so
714 $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)'; \
715 $(evaluate-test)
716
717 $(objpfx)tst-rtld-load-self.out: tst-rtld-load-self.sh $(objpfx)ld.so
718 $(SHELL) $^ '$(test-wrapper)' '$(test-wrapper-env)' > $@; \
719 $(evaluate-test)
720
721 $(objpfx)initfirst: $(libdl)
722 $(objpfx)initfirst.out: $(objpfx)firstobj.so
723
724 $(objpfx)global: $(objpfx)globalmod1.so
725 $(objpfx)global.out: $(objpfx)reldepmod1.so
726
727 $(objpfx)dblload: $(libdl)
728 $(objpfx)dblload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
729
730 $(objpfx)dblunload: $(libdl)
731 $(objpfx)dblunload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
732
733 $(objpfx)reldep5: $(libdl)
734 $(objpfx)reldep5.out: $(objpfx)reldepmod5.so $(objpfx)reldepmod6.so
735
736 $(objpfx)reldep6: $(libdl)
737 $(objpfx)reldep6.out: $(objpfx)reldep6mod3.so $(objpfx)reldep6mod4.so
738
739 $(objpfx)reldep7: $(libdl)
740 $(objpfx)reldep7.out: $(objpfx)reldep7mod1.so $(objpfx)reldep7mod2.so
741
742 $(objpfx)reldep8: $(libdl)
743 $(objpfx)reldep8.out: $(objpfx)reldep8mod3.so
744
745 LDFLAGS-nodel2mod2.so = -Wl,--enable-new-dtags,-z,nodelete
746 $(objpfx)nodelete2: $(libdl)
747 $(objpfx)nodelete2.out: $(objpfx)nodel2mod3.so
748
749 $(objpfx)reldep9: $(libdl)
750 $(objpfx)reldep9.out: $(objpfx)reldep9mod3.so
751
752 $(objpfx)tst-tls3: $(objpfx)tst-tlsmod1.so
753
754 $(objpfx)tst-tls4: $(libdl)
755 $(objpfx)tst-tls4.out: $(objpfx)tst-tlsmod2.so
756
757 $(objpfx)tst-tls5: $(libdl)
758 $(objpfx)tst-tls5.out: $(objpfx)tst-tlsmod2.so
759
760 $(objpfx)tst-tls6: $(libdl)
761 $(objpfx)tst-tls6.out: $(objpfx)tst-tlsmod2.so
762
763 $(objpfx)tst-tls7: $(libdl)
764 $(objpfx)tst-tls7.out: $(objpfx)tst-tlsmod3.so
765
766 $(objpfx)tst-tls8: $(libdl)
767 $(objpfx)tst-tls8.out: $(objpfx)tst-tlsmod3.so $(objpfx)tst-tlsmod4.so
768
769 $(objpfx)tst-tls9: $(libdl)
770 $(objpfx)tst-tls9.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
771
772 $(objpfx)tst-tls10: $(objpfx)tst-tlsmod8.so $(objpfx)tst-tlsmod7.so
773
774 $(objpfx)tst-tls11: $(objpfx)tst-tlsmod10.so $(objpfx)tst-tlsmod9.so
775
776 $(objpfx)tst-tls12: $(objpfx)tst-tlsmod12.so $(objpfx)tst-tlsmod11.so
777
778 $(objpfx)tst-tls13: $(libdl)
779 $(objpfx)tst-tls13.out: $(objpfx)tst-tlsmod13a.so
780
781 $(objpfx)tst-tls14: $(objpfx)tst-tlsmod14a.so $(libdl)
782 $(objpfx)tst-tls14.out: $(objpfx)tst-tlsmod14b.so
783
784 $(objpfx)tst-tls15: $(libdl)
785 $(objpfx)tst-tls15.out: $(objpfx)tst-tlsmod15a.so $(objpfx)tst-tlsmod15b.so
786
787 $(objpfx)tst-tls-dlinfo: $(libdl)
788 $(objpfx)tst-tls-dlinfo.out: $(objpfx)tst-tlsmod2.so
789
790
791
792 $(objpfx)tst-tls16: $(libdl)
793 $(objpfx)tst-tls16.out: $(objpfx)tst-tlsmod16a.so $(objpfx)tst-tlsmod16b.so
794
795 $(objpfx)tst-tls17: $(libdl)
796 $(objpfx)tst-tls17.out: $(objpfx)tst-tlsmod17b.so
797 $(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.os: tst-tlsmod17a.c
798 $(compile-command.c) -DN=$*
799 $(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.so: $(objpfx)ld.so
800 $(objpfx)tst-tlsmod17b.so: $(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules))
801
802 $(objpfx)tst-tls18: $(libdl)
803 $(objpfx)tst-tls18.out: $(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules))
804 $(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.os : tst-tlsmod18a.c
805 $(compile-command.c) -DN=$*
806 $(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.so: $(objpfx)ld.so
807
808 $(objpfx)tst-tls19: $(libdl)
809 $(objpfx)tst-tls19.out: $(objpfx)tst-tls19mod1.so
810
811 CFLAGS-tst-align.c = $(stack-align-test-flags)
812 CFLAGS-tst-align2.c = $(stack-align-test-flags)
813 CFLAGS-tst-alignmod.c = $(stack-align-test-flags)
814 CFLAGS-tst-alignmod2.c = $(stack-align-test-flags)
815 $(objpfx)tst-align: $(libdl)
816 $(objpfx)tst-align.out: $(objpfx)tst-alignmod.so
817 $(objpfx)tst-align2: $(objpfx)tst-alignmod2.so
818
819 $(objpfx)unload3: $(libdl)
820 $(objpfx)unload3.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
821 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
822
823 $(objpfx)unload4: $(libdl)
824 $(objpfx)unload4.out: $(objpfx)unload4mod1.so $(objpfx)unload4mod3.so
825
826 $(objpfx)unload5: $(libdl)
827 $(objpfx)unload5.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
828 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
829
830 $(objpfx)unload6: $(libdl)
831 $(objpfx)unload6.out: $(objpfx)unload6mod1.so $(objpfx)unload6mod2.so \
832 $(objpfx)unload6mod3.so
833
834 $(objpfx)unload7: $(libdl)
835 $(objpfx)unload7.out: $(objpfx)unload7mod1.so $(objpfx)unload7mod2.so
836 unload7-ENV = MALLOC_PERTURB_=85
837
838 $(objpfx)unload8: $(libdl)
839 $(objpfx)unload8.out: $(objpfx)unload8mod1.so $(objpfx)unload8mod1x.so
840
841 ifdef libdl
842 $(objpfx)tst-tls9-static: $(common-objpfx)dlfcn/libdl.a
843 $(objpfx)tst-tls9-static.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
844 endif
845
846 ifeq ($(have-z-execstack),yes)
847 $(objpfx)tst-execstack: $(libdl)
848 $(objpfx)tst-execstack.out: $(objpfx)tst-execstack-mod.so
849 LDFLAGS-tst-execstack = -Wl,-z,noexecstack
850 LDFLAGS-tst-execstack-mod = -Wl,-z,execstack
851
852 $(objpfx)tst-execstack-needed: $(objpfx)tst-execstack-mod.so
853 LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
854
855 LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
856 endif
857
858 LDFLAGS-tst-array2 = $(no-as-needed)
859 LDFLAGS-tst-array5 = $(no-as-needed)
860
861 $(objpfx)tst-array1-cmp.out: tst-array1.exp $(objpfx)tst-array1.out
862 cmp $^ > $@; \
863 $(evaluate-test)
864
865 $(objpfx)tst-array1-static-cmp.out: tst-array1.exp \
866 $(objpfx)tst-array1-static.out
867 cmp $^ > $@; \
868 $(evaluate-test)
869
870 $(objpfx)tst-array2: $(objpfx)tst-array2dep.so
871 $(objpfx)tst-array2-cmp.out: tst-array2.exp $(objpfx)tst-array2.out
872 cmp $^ > $@; \
873 $(evaluate-test)
874
875 $(objpfx)tst-array3-cmp.out: tst-array1.exp $(objpfx)tst-array3.out
876 cmp $^ > $@; \
877 $(evaluate-test)
878
879 $(objpfx)tst-array4: $(libdl)
880 $(objpfx)tst-array4.out: $(objpfx)tst-array2dep.so
881 $(objpfx)tst-array4-cmp.out: tst-array4.exp $(objpfx)tst-array4.out
882 cmp $^ > $@; \
883 $(evaluate-test)
884
885 $(objpfx)tst-array5: $(objpfx)tst-array5dep.so
886 $(objpfx)tst-array5-cmp.out: tst-array5.exp $(objpfx)tst-array5.out
887 cmp $^ > $@; \
888 $(evaluate-test)
889
890 $(objpfx)tst-array5-static-cmp.out: tst-array5-static.exp \
891 $(objpfx)tst-array5-static.out
892 cmp $^ > $@; \
893 $(evaluate-test)
894
895 CFLAGS-tst-pie1.c += $(pie-ccflag)
896 CFLAGS-tst-pie2.c += $(pie-ccflag)
897
898 $(objpfx)tst-pie1: $(objpfx)tst-piemod1.so
899
900 ifeq (yes,$(build-shared))
901 all-built-dso := $(common-objpfx)libc.so \
902 $(filter-out $(common-objpfx)linkobj/libc.so, \
903 $(sort $(wildcard $(addprefix $(common-objpfx), \
904 */lib*.so \
905 iconvdata/*.so))))
906
907 $(all-built-dso:=.dyn): %.dyn: %
908 @rm -f $@T
909 LC_ALL=C $(READELF) -W -d $< > $@T
910 test -s $@T
911 mv -f $@T $@
912 common-generated += $(all-built-dso:$(common-objpfx)%=%.dyn)
913
914 $(objpfx)check-textrel.out: $(..)scripts/check-textrel.awk \
915 $(all-built-dso:=.dyn)
916 LC_ALL=C $(AWK) -f $^ > $@; \
917 $(evaluate-test)
918 generated += check-textrel.out
919
920 $(objpfx)execstack-default: $(first-word $(wildcard $(sysdirs:%=%/stackinfo.h)))
921 $(make-target-directory)
922 { echo '#include <elf.h>'; \
923 echo '#include <stackinfo.h>'; \
924 echo '#if (DEFAULT_STACK_PERMS & PF_X) == 0'; \
925 echo '@@@execstack-no@@@'; \
926 echo '#else'; \
927 echo '@@@execstack-yes@@@'; \
928 echo '#endif'; } | \
929 $(CC) $(CFLAGS) $(CPPFLAGS) -E -x c-header - | \
930 sed -n -e 's/^@@@\(.*\)@@@/\1/p' > $@T
931 mv -f $@T $@
932 generated += execstack-default
933
934 $(all-built-dso:=.phdr): %.phdr: %
935 @rm -f $@T
936 LC_ALL=C $(READELF) -W -l $< > $@T
937 test -s $@T
938 mv -f $@T $@
939 common-generated += $(all-built-dso:$(common-objpfx)%=%.phdr)
940
941 $(objpfx)check-execstack.out: $(..)scripts/check-execstack.awk \
942 $(objpfx)execstack-default \
943 $(all-built-dso:=.phdr)
944 LC_ALL=C $(AWK) -f $^ > $@; \
945 $(evaluate-test)
946 generated += check-execstack.out
947
948 $(objpfx)tst-dlmodcount: $(libdl)
949 $(objpfx)tst-dlmodcount.out: $(test-modules)
950
951 $(all-built-dso:=.jmprel): %.jmprel: % Makefile
952 @rm -f $@T
953 LC_ALL=C $(READELF) -W -S -d -r $< > $@T
954 test -s $@T
955 mv -f $@T $@
956 common-generated += $(all-built-dso:$(common-objpfx)%=%.jmprel)
957
958 localplt-built-dso := $(addprefix $(common-objpfx),\
959 libc.so \
960 math/libm.so \
961 rt/librt.so \
962 dlfcn/libdl.so \
963 resolv/libresolv.so \
964 crypt/libcrypt.so \
965 )
966 ifeq ($(have-thread-library),yes)
967 localplt-built-dso += $(filter-out %_nonshared.a, $(shared-thread-library))
968 endif
969
970 vpath localplt.data $(+sysdep_dirs)
971
972 $(objpfx)check-localplt.out: $(..)scripts/check-localplt.awk \
973 $(..)scripts/localplt.awk \
974 $(localplt-built-dso:=.jmprel) \
975 localplt.data
976 LC_ALL=C $(AWK) -f $(filter-out $< %localplt.data,$^) | \
977 LC_ALL=C $(AWK) -f $< $(filter %localplt.data,$^) - \
978 > $@; \
979 $(evaluate-test)
980 endif
981
982 $(objpfx)tst-dlopenrpathmod.so: $(libdl)
983 $(objpfx)tst-dlopenrpath: $(objpfx)tst-dlopenrpathmod.so $(libdl)
984 CFLAGS-tst-dlopenrpath.c += -DPFX=\"$(objpfx)\"
985 LDFLAGS-tst-dlopenrpathmod.so += -Wl,-rpath,\$$ORIGIN/test-subdir
986 $(objpfx)tst-dlopenrpath.out: $(objpfx)firstobj.so
987
988 $(objpfx)tst-deep1mod2.so: $(objpfx)tst-deep1mod3.so
989 $(objpfx)tst-deep1: $(libdl) $(objpfx)tst-deep1mod1.so
990 $(objpfx)tst-deep1.out: $(objpfx)tst-deep1mod2.so
991 LDFLAGS-tst-deep1 += -rdynamic
992 tst-deep1mod3.so-no-z-defs = yes
993
994 $(objpfx)tst-dlmopen1mod.so: $(libdl)
995 $(objpfx)tst-dlmopen1: $(libdl)
996 $(objpfx)tst-dlmopen1.out: $(objpfx)tst-dlmopen1mod.so
997
998 $(objpfx)tst-dlmopen2: $(libdl)
999 $(objpfx)tst-dlmopen2.out: $(objpfx)tst-dlmopen1mod.so
1000
1001 $(objpfx)tst-dlmopen3: $(libdl)
1002 $(objpfx)tst-dlmopen3.out: $(objpfx)tst-dlmopen1mod.so
1003
1004 $(objpfx)tst-audit1.out: $(objpfx)tst-auditmod1.so
1005 tst-audit1-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1006
1007 $(objpfx)tst-audit2.out: $(objpfx)tst-auditmod1.so
1008 tst-audit2-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1009
1010 $(objpfx)tst-audit9: $(libdl)
1011 $(objpfx)tst-audit9.out: $(objpfx)tst-auditmod9a.so $(objpfx)tst-auditmod9b.so
1012 tst-audit9-ENV = LD_AUDIT=$(objpfx)tst-auditmod9a.so
1013
1014 $(objpfx)tst-audit8: $(libm)
1015 $(objpfx)tst-audit8.out: $(objpfx)tst-auditmod1.so
1016 tst-audit8-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1017
1018 $(objpfx)tst-global1: $(libdl)
1019 $(objpfx)tst-global1.out: $(objpfx)testobj6.so $(objpfx)testobj2.so
1020
1021 $(objpfx)order2: $(libdl)
1022 $(objpfx)order2.out: $(objpfx)order2mod1.so $(objpfx)order2mod2.so
1023 $(objpfx)order2-cmp.out: $(objpfx)order2.out
1024 (echo "12345" | cmp $< -) > $@; \
1025 $(evaluate-test)
1026 $(objpfx)order2mod1.so: $(objpfx)order2mod4.so
1027 $(objpfx)order2mod4.so: $(objpfx)order2mod3.so
1028 $(objpfx)order2mod2.so: $(objpfx)order2mod3.so
1029 order2mod2.so-no-z-defs = yes
1030 LDFLAGS-order2mod1.so = $(no-as-needed)
1031 LDFLAGS-order2mod2.so = $(no-as-needed)
1032
1033 tst-stackguard1-ARGS = --command "$(host-test-program-cmd) --child"
1034 tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child"
1035
1036 tst-ptrguard1-ARGS = --command "$(host-test-program-cmd) --child"
1037 # When built statically, the pointer guard interface uses
1038 # __pointer_chk_guard_local.
1039 CFLAGS-tst-ptrguard1-static.c = -DPTRGUARD_LOCAL
1040 tst-ptrguard1-static-ARGS = --command "$(objpfx)tst-ptrguard1-static --child"
1041
1042 $(objpfx)tst-leaks1: $(libdl)
1043 $(objpfx)tst-leaks1-mem.out: $(objpfx)tst-leaks1.out
1044 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1.mtrace > $@; \
1045 $(evaluate-test)
1046
1047 $(objpfx)tst-leaks1-static: $(common-objpfx)dlfcn/libdl.a
1048 $(objpfx)tst-leaks1-static-mem.out: $(objpfx)tst-leaks1-static.out
1049 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1-static.mtrace > $@; \
1050 $(evaluate-test)
1051
1052 tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace
1053 tst-leaks1-static-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1-static.mtrace
1054
1055 $(objpfx)tst-addr1: $(libdl)
1056
1057 $(objpfx)tst-thrlock: $(libdl) $(shared-thread-library)
1058 $(objpfx)tst-dlopen-aout: $(libdl) $(shared-thread-library)
1059
1060 CFLAGS-ifuncmain1pic.c += $(pic-ccflag)
1061 CFLAGS-ifuncmain1picstatic.c += $(pic-ccflag)
1062 CFLAGS-ifuncmain1staticpic.c += $(pic-ccflag)
1063 CFLAGS-ifuncdep1pic.c += $(pic-ccflag)
1064 CFLAGS-ifuncmain1vispic.c += $(pic-ccflag)
1065 CFLAGS-ifuncmain2pic.c += $(pic-ccflag)
1066 CFLAGS-ifuncmain2picstatic.c += $(pic-ccflag)
1067 CFLAGS-ifuncdep2pic.c += $(pic-ccflag)
1068 CFLAGS-ifuncmain4picstatic.c += $(pic-ccflag)
1069 CFLAGS-ifuncmain5pic.c += $(pic-ccflag)
1070 CFLAGS-ifuncmain5picstatic.c += $(pic-ccflag)
1071 CFLAGS-ifuncmain5staticpic.c += $(pic-ccflag)
1072 CFLAGS-ifuncdep5pic.c += $(pic-ccflag)
1073 CFLAGS-ifuncmain7pic.c += $(pic-ccflag)
1074 CFLAGS-ifuncmain7picstatic.c += $(pic-ccflag)
1075
1076 LDFLAGS-ifuncmain3 = -Wl,-export-dynamic
1077
1078 CFLAGS-ifuncmain1pie.c += $(pie-ccflag)
1079 CFLAGS-ifuncmain1vispie.c += $(pie-ccflag)
1080 CFLAGS-ifuncmain1staticpie.c += $(pie-ccflag)
1081 CFLAGS-ifuncmain5pie.c += $(pie-ccflag)
1082 CFLAGS-ifuncmain6pie.c += $(pie-ccflag)
1083 CFLAGS-ifuncmain7pie.c += $(pie-ccflag)
1084
1085 $(objpfx)ifuncmain1pie: $(objpfx)ifuncmod1.so
1086 $(objpfx)ifuncmain1staticpie: $(objpfx)ifuncdep1pic.o
1087 $(objpfx)ifuncmain1vispie: $(objpfx)ifuncmod1.so
1088 $(objpfx)ifuncmain5pie: $(objpfx)ifuncmod5.so
1089 $(objpfx)ifuncmain6pie: $(objpfx)ifuncmod6.so
1090
1091 $(objpfx)ifuncmain1: $(addprefix $(objpfx),ifuncmod1.so)
1092 $(objpfx)ifuncmain1pic: $(addprefix $(objpfx),ifuncmod1.so)
1093 $(objpfx)ifuncmain1staticpic: $(addprefix $(objpfx),ifuncdep1pic.o)
1094 $(objpfx)ifuncmain1static: $(addprefix $(objpfx),ifuncdep1.o)
1095 $(objpfx)ifuncmain1picstatic: $(addprefix $(objpfx),ifuncdep1pic.o)
1096 $(objpfx)ifuncmain1vis: $(addprefix $(objpfx),ifuncmod1.so)
1097 $(objpfx)ifuncmain1vispic: $(addprefix $(objpfx),ifuncmod1.so)
1098 $(objpfx)ifuncmain2: $(addprefix $(objpfx),ifuncdep2.o)
1099 $(objpfx)ifuncmain2pic: $(addprefix $(objpfx),ifuncdep2pic.o)
1100 $(objpfx)ifuncmain2static: $(addprefix $(objpfx),ifuncdep2.o)
1101 $(objpfx)ifuncmain2picstatic: $(addprefix $(objpfx),ifuncdep2pic.o)
1102
1103 $(objpfx)ifuncmain3: $(libdl)
1104 $(objpfx)ifuncmain3.out: $(objpfx)ifuncmod3.so
1105
1106 $(objpfx)ifuncmain5: $(addprefix $(objpfx),ifuncmod5.so)
1107 $(objpfx)ifuncmain5pic: $(addprefix $(objpfx),ifuncmod5.so)
1108 $(objpfx)ifuncmain5static: $(addprefix $(objpfx),ifuncdep5.o)
1109 $(objpfx)ifuncmain5staticpic: $(addprefix $(objpfx),ifuncdep5pic.o)
1110 $(objpfx)ifuncmain5picstatic: $(addprefix $(objpfx),ifuncdep5pic.o)
1111
1112 $(objpfx)tst-unique1: $(libdl)
1113 $(objpfx)tst-unique1.out: $(objpfx)tst-unique1mod1.so \
1114 $(objpfx)tst-unique1mod2.so
1115
1116 $(objpfx)tst-unique2: $(libdl) $(objpfx)tst-unique2mod1.so
1117 $(objpfx)tst-unique2.out: $(objpfx)tst-unique2mod2.so
1118
1119 $(objpfx)tst-unique3: $(libdl) $(objpfx)tst-unique3lib.so
1120 $(objpfx)tst-unique3.out: $(objpfx)tst-unique3lib2.so
1121
1122 $(objpfx)tst-unique4: $(objpfx)tst-unique4lib.so
1123
1124 $(objpfx)tst-initorder-cmp.out: tst-initorder.exp $(objpfx)tst-initorder.out
1125 cmp $^ > $@; \
1126 $(evaluate-test)
1127
1128 $(objpfx)tst-initorder2: $(objpfx)tst-initorder2a.so $(objpfx)tst-initorder2d.so $(objpfx)tst-initorder2c.so
1129 $(objpfx)tst-initorder2a.so: $(objpfx)tst-initorder2b.so
1130 $(objpfx)tst-initorder2b.so: $(objpfx)tst-initorder2c.so
1131 $(objpfx)tst-initorder2c.so: $(objpfx)tst-initorder2d.so
1132 LDFLAGS-tst-initorder2 = $(no-as-needed)
1133 LDFLAGS-tst-initorder2a.so = $(no-as-needed)
1134 LDFLAGS-tst-initorder2b.so = $(no-as-needed)
1135 LDFLAGS-tst-initorder2c.so = $(no-as-needed)
1136 define o-iterator-doit
1137 $(objpfx)tst-initorder2$o.os: tst-initorder2.c; \
1138 $$(compile-command.c) -DNAME=\"$o\"
1139 endef
1140 object-suffixes-left := a b c d
1141 include $(o-iterator)
1142
1143 $(objpfx)tst-initorder2-cmp.out: tst-initorder2.exp $(objpfx)tst-initorder2.out
1144 cmp $^ > $@; \
1145 $(evaluate-test)
1146
1147 $(objpfx)tst-relsort1: $(libdl)
1148 $(objpfx)tst-relsort1mod1.so: $(libm) $(objpfx)tst-relsort1mod2.so
1149 $(objpfx)tst-relsort1mod2.so: $(libm)
1150 $(objpfx)tst-relsort1.out: $(objpfx)tst-relsort1mod1.so \
1151 $(objpfx)tst-relsort1mod2.so
1152
1153 $(objpfx)tst-unused-dep.out: $(objpfx)testobj1.so
1154 $(test-wrapper-env) \
1155 LD_TRACE_LOADED_OBJECTS=1 \
1156 LD_DEBUG=unused \
1157 LD_PRELOAD= \
1158 $(elf-objpfx)${rtld-installed-name} \
1159 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
1160 $< > $@; \
1161 $(evaluate-test)
1162
1163 $(objpfx)tst-unused-dep-cmp.out: $(objpfx)tst-unused-dep.out
1164 cmp $< /dev/null > $@; \
1165 $(evaluate-test)