]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/Makefile
elf: Add elf/tst-dlopenfail-2 [BZ #25396]
[thirdparty/glibc.git] / elf / Makefile
1 # Copyright (C) 1995-2020 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 # <https://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 = $(all-dl-routines) dl-support dl-iteratephdr \
26 dl-addr dl-addr-obj enbl-secure dl-profstub \
27 dl-origin dl-libc dl-sym dl-sysdep dl-error \
28 dl-reloc-static-pie
29
30 # The core dynamic linking functions are in libc for the static and
31 # profiled libraries.
32 dl-routines = $(addprefix dl-,load lookup object reloc deps hwcaps \
33 runtime init fini debug misc \
34 version profile tls origin scope \
35 execstack open close trampoline \
36 exception sort-maps)
37 ifeq (yes,$(use-ldconfig))
38 dl-routines += dl-cache
39 endif
40
41 ifneq (no,$(have-tunables))
42 dl-routines += dl-tunables
43 tunables-type = $(addprefix TUNABLES_FRONTEND_,$(have-tunables))
44 CPPFLAGS-dl-tunables.c += -DTUNABLES_FRONTEND=$(tunables-type)
45
46 # Make sure that the compiler does not insert any library calls in tunables
47 # code paths.
48 ifeq (yes,$(have-loop-to-function))
49 CFLAGS-dl-tunables.c += -fno-tree-loop-distribute-patterns
50 endif
51 endif
52
53 all-dl-routines = $(dl-routines) $(sysdep-dl-routines)
54 # But they are absent from the shared libc, because that code is in ld.so.
55 elide-routines.os = $(all-dl-routines) dl-support enbl-secure dl-origin \
56 dl-sysdep dl-exception dl-reloc-static-pie
57
58 # ld.so uses those routines, plus some special stuff for being the program
59 # interpreter and operating independent of libc.
60 rtld-routines = rtld $(all-dl-routines) dl-sysdep dl-environ dl-minimal \
61 dl-error-minimal dl-conflict
62 all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines)
63
64 CFLAGS-dl-runtime.c += -fexceptions -fasynchronous-unwind-tables
65 CFLAGS-dl-lookup.c += -fexceptions -fasynchronous-unwind-tables
66 CFLAGS-dl-iterate-phdr.c += $(uses-callbacks)
67
68 # On targets without __builtin_memset, rtld.c uses a hand-coded loop
69 # in _dl_start. Make sure this isn't turned into a call to regular memset.
70 ifeq (yes,$(have-loop-to-function))
71 CFLAGS-rtld.c += -fno-tree-loop-distribute-patterns
72 endif
73
74 # Compile rtld itself without stack protection.
75 # Also compile all routines in the static library that are elided from
76 # the shared libc because they are in libc.a in the same way.
77
78 define elide-stack-protector
79 $(if $(filter $(@F),$(patsubst %,%$(1),$(2))), $(no-stack-protector))
80 endef
81
82 CFLAGS-.o += $(call elide-stack-protector,.o,$(elide-routines.os))
83 CFLAGS-.op += $(call elide-stack-protector,.op,$(elide-routines.os))
84 CFLAGS-.os += $(call elide-stack-protector,.os,$(all-rtld-routines))
85
86 ifeq ($(unwind-find-fde),yes)
87 routines += unwind-dw2-fde-glibc
88 shared-only-routines += unwind-dw2-fde-glibc
89 endif
90
91 before-compile += $(objpfx)trusted-dirs.h
92 generated += trusted-dirs.h trusted-dirs.st for-renamed/renamed.so
93 generated-dirs += for-renamed
94
95 ifeq ($(build-shared),yes)
96 ld-map = $(common-objpfx)ld.map
97 endif
98
99 ifeq (yes,$(build-shared))
100 extra-objs = $(all-rtld-routines:%=%.os) soinit.os sofini.os interp.os
101 generated += librtld.os dl-allobjs.os ld.so ldd
102 install-others = $(inst_rtlddir)/$(rtld-installed-name)
103 install-bin-script = ldd
104 endif
105
106 others = sprof sln
107 install-bin = sprof
108 others-static = sln
109 install-rootsbin = sln
110 sln-modules := static-stubs
111 extra-objs += $(sln-modules:=.o)
112
113 ifeq (yes,$(use-ldconfig))
114 ifeq (yes,$(build-shared))
115 others-static += ldconfig
116 others += ldconfig
117 install-rootsbin += ldconfig
118
119 ldconfig-modules := cache readlib xmalloc xstrdup chroot_canon static-stubs
120 extra-objs += $(ldconfig-modules:=.o)
121 others-extras = $(ldconfig-modules)
122 endif
123 endif
124
125 # To find xmalloc.c and xstrdup.c
126 vpath %.c ../locale/programs
127
128 ifeq ($(build-shared),yes)
129 extra-objs += sotruss-lib.os sotruss-lib.so
130 install-others += $(inst_auditdir)/sotruss-lib.so
131 install-bin-script += sotruss
132 generated += sotruss
133 libof-sotruss-lib = extramodules
134 LDFLAGS-sotruss-lib.so += $(z-now-$(bind-now))
135 $(objpfx)sotruss-lib.so: $(objpfx)sotruss-lib.os
136 $(build-module-asneeded)
137 $(objpfx)sotruss-lib.so: $(common-objpfx)libc.so $(objpfx)ld.so \
138 $(common-objpfx)libc_nonshared.a
139
140 $(objpfx)sotruss: sotruss.sh $(common-objpfx)config.make
141 sed -e 's%@BASH@%$(BASH)%g' \
142 -e 's%@VERSION@%$(version)%g' \
143 -e 's%@TEXTDOMAINDIR@%$(localedir)%g' \
144 -e 's%@PREFIX@%$(prefix)%g' \
145 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
146 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
147 < $< > $@.new
148 chmod 555 $@.new
149 mv -f $@.new $@
150 $(inst_auditdir)/sotruss-lib.so: $(objpfx)sotruss-lib.so $(+force)
151 $(do-install-program)
152 endif
153
154 tests-static-normal := tst-leaks1-static tst-array1-static tst-array5-static \
155 tst-dl-iter-static \
156 tst-tlsalign-static tst-tlsalign-extern-static \
157 tst-linkall-static tst-env-setuid tst-env-setuid-tunables
158 tests-static-internal := tst-tls1-static tst-tls2-static \
159 tst-ptrguard1-static tst-stackguard1-static \
160 tst-tls1-static-non-pie tst-libc_dlvsym-static
161
162 CRT-tst-tls1-static-non-pie := $(csu-objpfx)crt1.o
163 tst-tls1-static-non-pie-no-pie = yes
164
165 tests-container := \
166 tst-ldconfig-bad-aux-cache \
167 tst-ldconfig-ld_so_conf-update
168
169 tests := tst-tls9 tst-leaks1 \
170 tst-array1 tst-array2 tst-array3 tst-array4 tst-array5 \
171 tst-auxv
172 tests-internal := tst-tls1 tst-tls2 $(tests-static-internal)
173 tests-static := $(tests-static-normal) $(tests-static-internal)
174
175 ifeq (yes,$(build-shared))
176 tests-static += tst-tls9-static
177 tst-tls9-static-ENV = \
178 LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)dlfcn
179
180 tests += restest1 preloadtest loadfail multiload origtest resolvfail \
181 constload1 order noload filter \
182 reldep reldep2 reldep3 reldep4 nodelete nodelete2 \
183 nodlopen nodlopen2 lateglobal initfirst global \
184 restest2 next dblload dblunload reldep5 reldep6 reldep7 reldep8 \
185 tst-tls4 tst-tls5 \
186 tst-tls10 tst-tls11 tst-tls12 tst-tls13 tst-tls14 tst-tls15 \
187 tst-tls16 tst-tls17 tst-tls18 tst-tls19 tst-tls-dlinfo \
188 tst-align tst-align2 \
189 tst-dlmodcount tst-dlopenrpath tst-deep1 \
190 tst-dlmopen1 tst-dlmopen3 \
191 unload3 unload4 unload5 unload6 unload7 unload8 tst-global1 order2 \
192 tst-audit1 tst-audit2 tst-audit8 tst-audit9 \
193 tst-addr1 tst-thrlock \
194 tst-unique1 tst-unique2 $(if $(CXX),tst-unique3 tst-unique4 \
195 tst-nodelete tst-dlopen-nodelete-reloc) \
196 tst-initorder tst-initorder2 tst-relsort1 tst-null-argv \
197 tst-tlsalign tst-tlsalign-extern tst-nodelete-opened \
198 tst-nodelete2 tst-audit11 tst-audit12 tst-dlsym-error tst-noload \
199 tst-latepthread tst-tls-manydynamic tst-nodelete-dlclose \
200 tst-debug1 tst-main1 tst-absolute-sym tst-absolute-zero tst-big-note \
201 tst-unwind-ctor tst-unwind-main tst-audit13 \
202 tst-sonamemove-link tst-sonamemove-dlopen tst-dlopen-tlsmodid \
203 tst-dlopen-self tst-auditmany tst-initfinilazyfail tst-dlopenfail \
204 tst-dlopenfail-2
205 # reldep9
206 tests-internal += loadtest unload unload2 circleload1 \
207 neededtest neededtest2 neededtest3 neededtest4 \
208 tst-tls3 tst-tls6 tst-tls7 tst-tls8 tst-dlmopen2 \
209 tst-ptrguard1 tst-stackguard1 tst-libc_dlvsym \
210 tst-create_format1
211 tests-container += tst-pldd tst-dlopen-tlsmodid-container \
212 tst-dlopen-self-container
213 test-srcs = tst-pathopt
214 selinux-enabled := $(shell cat /selinux/enforce 2> /dev/null)
215 ifneq ($(selinux-enabled),1)
216 tests-execstack-yes = tst-execstack tst-execstack-needed tst-execstack-prog
217 endif
218 endif
219 tests += $(tests-execstack-$(have-z-execstack))
220 ifeq ($(run-built-tests),yes)
221 tests-special += $(objpfx)tst-leaks1-mem.out \
222 $(objpfx)tst-leaks1-static-mem.out $(objpfx)noload-mem.out \
223 $(objpfx)tst-ldconfig-X.out
224 endif
225 tlsmod17a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
226 tlsmod18a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
227 tlsmod17a-modules = $(addprefix tst-tlsmod17a, $(tlsmod17a-suffixes))
228 tlsmod18a-modules = $(addprefix tst-tlsmod18a, $(tlsmod17a-suffixes))
229 one-hundred = $(foreach x,0 1 2 3 4 5 6 7 8 9, \
230 0$x 1$x 2$x 3$x 4$x 5$x 6$x 7$x 8$x 9$x)
231 tst-tls-many-dynamic-modules := \
232 $(foreach n,$(one-hundred),tst-tls-manydynamic$(n)mod)
233 extra-test-objs += $(tlsmod17a-modules:=.os) $(tlsmod18a-modules:=.os) \
234 tst-tlsalign-vars.o
235 test-extras += tst-tlsmod17a tst-tlsmod18a tst-tlsalign-vars
236 modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
237 testobj1_1 failobj constload2 constload3 unloadmod \
238 dep1 dep2 dep3 dep4 vismod1 vismod2 vismod3 \
239 nodelmod1 nodelmod2 nodelmod3 nodelmod4 \
240 nodel2mod1 nodel2mod2 nodel2mod3 \
241 nodlopenmod nodlopenmod2 filtmod1 filtmod2 \
242 reldepmod1 reldepmod2 reldepmod3 reldepmod4 nextmod1 nextmod2 \
243 reldep4mod1 reldep4mod2 reldep4mod3 reldep4mod4 \
244 neededobj1 neededobj2 neededobj3 neededobj4 \
245 neededobj5 neededobj6 firstobj globalmod1 \
246 unload2mod unload2dep ltglobmod1 ltglobmod2 pathoptobj \
247 dblloadmod1 dblloadmod2 dblloadmod3 reldepmod5 reldepmod6 \
248 reldep6mod0 reldep6mod1 reldep6mod2 reldep6mod3 reldep6mod4 \
249 reldep7mod1 reldep7mod2 \
250 tst-tlsmod1 tst-tlsmod2 tst-tlsmod3 tst-tlsmod4 \
251 tst-tlsmod5 tst-tlsmod6 tst-tlsmod7 tst-tlsmod8 \
252 tst-tlsmod9 tst-tlsmod10 tst-tlsmod11 tst-tlsmod12 \
253 tst-tlsmod13 tst-tlsmod13a tst-tlsmod14a tst-tlsmod14b \
254 tst-tlsmod15a tst-tlsmod15b tst-tlsmod16a tst-tlsmod16b \
255 $(tlsmod17a-modules) tst-tlsmod17b $(tlsmod18a-modules) \
256 tst-tls19mod1 tst-tls19mod2 tst-tls19mod3 \
257 circlemod1 circlemod1a circlemod2 circlemod2a \
258 circlemod3 circlemod3a \
259 reldep8mod1 reldep8mod2 reldep8mod3 \
260 reldep9mod1 reldep9mod2 reldep9mod3 \
261 tst-alignmod tst-alignmod2 \
262 $(modules-execstack-$(have-z-execstack)) \
263 tst-dlopenrpathmod tst-deep1mod1 tst-deep1mod2 tst-deep1mod3 \
264 tst-dlmopen1mod tst-auditmod1 \
265 unload3mod1 unload3mod2 unload3mod3 unload3mod4 \
266 unload4mod1 unload4mod2 unload4mod3 unload4mod4 \
267 unload6mod1 unload6mod2 unload6mod3 \
268 unload7mod1 unload7mod2 \
269 unload8mod1 unload8mod1x unload8mod2 unload8mod3 \
270 order2mod1 order2mod2 order2mod3 order2mod4 \
271 tst-unique1mod1 tst-unique1mod2 \
272 tst-unique2mod1 tst-unique2mod2 \
273 tst-auditmod9a tst-auditmod9b \
274 $(if $(CXX),tst-unique3lib tst-unique3lib2 tst-unique4lib \
275 tst-nodelete-uniquemod tst-nodelete-rtldmod \
276 tst-nodelete-zmod \
277 tst-dlopen-nodelete-reloc-mod1 \
278 tst-dlopen-nodelete-reloc-mod2 \
279 tst-dlopen-nodelete-reloc-mod3 \
280 tst-dlopen-nodelete-reloc-mod4 \
281 tst-dlopen-nodelete-reloc-mod5 \
282 tst-dlopen-nodelete-reloc-mod6 \
283 tst-dlopen-nodelete-reloc-mod7 \
284 tst-dlopen-nodelete-reloc-mod8 \
285 tst-dlopen-nodelete-reloc-mod9 \
286 tst-dlopen-nodelete-reloc-mod10 \
287 tst-dlopen-nodelete-reloc-mod11 \
288 tst-dlopen-nodelete-reloc-mod12 \
289 tst-dlopen-nodelete-reloc-mod13 \
290 tst-dlopen-nodelete-reloc-mod14 \
291 tst-dlopen-nodelete-reloc-mod15 \
292 tst-dlopen-nodelete-reloc-mod16 \
293 tst-dlopen-nodelete-reloc-mod17) \
294 tst-initordera1 tst-initorderb1 \
295 tst-initordera2 tst-initorderb2 \
296 tst-initordera3 tst-initordera4 \
297 tst-initorder2a tst-initorder2b tst-initorder2c \
298 tst-initorder2d \
299 tst-relsort1mod1 tst-relsort1mod2 tst-array2dep \
300 tst-array5dep tst-null-argv-lib \
301 tst-tlsalign-lib tst-nodelete-opened-lib tst-nodelete2mod \
302 tst-audit11mod1 tst-audit11mod2 tst-auditmod11 \
303 tst-audit12mod1 tst-audit12mod2 tst-audit12mod3 tst-auditmod12 \
304 tst-latepthreadmod $(tst-tls-many-dynamic-modules) \
305 tst-nodelete-dlclose-dso tst-nodelete-dlclose-plugin \
306 tst-main1mod tst-libc_dlvsym-dso tst-absolute-sym-lib \
307 tst-absolute-zero-lib tst-big-note-lib tst-unwind-ctor-lib \
308 tst-audit13mod1 tst-sonamemove-linkmod1 \
309 tst-sonamemove-runmod1 tst-sonamemove-runmod2 \
310 tst-auditmanymod1 tst-auditmanymod2 tst-auditmanymod3 \
311 tst-auditmanymod4 tst-auditmanymod5 tst-auditmanymod6 \
312 tst-auditmanymod7 tst-auditmanymod8 tst-auditmanymod9 \
313 tst-initlazyfailmod tst-finilazyfailmod \
314 tst-dlopenfailmod1 tst-dlopenfaillinkmod tst-dlopenfailmod2 \
315 tst-dlopenfailmod3 tst-ldconfig-ld-mod
316 # Most modules build with _ISOMAC defined, but those filtered out
317 # depend on internal headers.
318 modules-names-tests = $(filter-out ifuncmod% tst-libc_dlvsym-dso tst-tlsmod%,\
319 $(modules-names))
320
321 ifeq (yes,$(have-mtls-dialect-gnu2))
322 tests += tst-gnu2-tls1
323 modules-names += tst-gnu2-tls1mod
324 $(objpfx)tst-gnu2-tls1: $(objpfx)tst-gnu2-tls1mod.so
325 tst-gnu2-tls1mod.so-no-z-defs = yes
326 CFLAGS-tst-gnu2-tls1mod.c += -mtls-dialect=gnu2
327 endif
328 ifeq (yes,$(have-protected-data))
329 modules-names += tst-protected1moda tst-protected1modb
330 tests += tst-protected1a tst-protected1b
331 $(objpfx)tst-protected1a: $(addprefix $(objpfx),tst-protected1moda.so tst-protected1modb.so)
332 $(objpfx)tst-protected1b: $(addprefix $(objpfx),tst-protected1modb.so tst-protected1moda.so)
333 tst-protected1modb.so-no-z-defs = yes
334 # These tests fail with GCC versions prior to 5.1 and with some versions
335 # of binutils. See https://sourceware.org/bugzilla/show_bug.cgi?id=17709
336 # and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248 for details.
337 # Perhaps in future we can make these XFAILs conditional on some detection
338 # of compiler/linker behavior/version.
339 test-xfail-tst-protected1a = yes
340 test-xfail-tst-protected1b = yes
341 endif
342 ifeq (yesyes,$(have-fpie)$(build-shared))
343 modules-names += tst-piemod1
344 tests += tst-pie1 tst-pie2 tst-dlopen-pie tst-dlopen-tlsmodid-pie \
345 tst-dlopen-self-pie
346 tests-pie += tst-pie1 tst-pie2 tst-dlopen-tlsmodid-pie tst-dlopen-self-pie
347 ifeq (yes,$(have-protected-data))
348 tests += vismain
349 tests-pie += vismain
350 CFLAGS-vismain.c += $(PIE-ccflag)
351 endif
352 endif
353 modules-execstack-yes = tst-execstack-mod
354 extra-test-objs += $(addsuffix .os,$(strip $(modules-names)))
355
356 # filtmod1.so, tst-big-note-lib.so have special rules.
357 modules-names-nobuild := filtmod1 tst-big-note-lib
358
359 tests += $(tests-static)
360
361 ifeq (yes,$(have-ifunc))
362 tests-ifuncstatic := ifuncmain1static ifuncmain1picstatic \
363 ifuncmain2static ifuncmain2picstatic \
364 ifuncmain4static ifuncmain4picstatic \
365 ifuncmain5static ifuncmain5picstatic \
366 ifuncmain7static ifuncmain7picstatic \
367 ifuncmain9static ifuncmain9picstatic
368 tests-static += $(tests-ifuncstatic)
369 tests-internal += $(tests-ifuncstatic)
370 ifeq (yes,$(build-shared))
371 tests += tst-ifunc-fault-lazy tst-ifunc-fault-bindnow
372 # Note: sysdeps/x86_64/ifuncmain8.c uses ifuncmain8.
373 tests-internal += \
374 ifuncmain1 ifuncmain1pic ifuncmain1vis ifuncmain1vispic \
375 ifuncmain1staticpic \
376 ifuncmain2 ifuncmain2pic ifuncmain3 ifuncmain4 \
377 ifuncmain5 ifuncmain5pic ifuncmain5staticpic \
378 ifuncmain7 ifuncmain7pic \
379 ifuncmain9 ifuncmain9pic
380 ifunc-test-modules = ifuncdep1 ifuncdep1pic ifuncdep2 ifuncdep2pic \
381 ifuncdep5 ifuncdep5pic
382 extra-test-objs += $(ifunc-test-modules:=.o)
383 test-internal-extras += $(ifunc-test-modules)
384 ifeq (yes,$(have-fpie))
385 ifunc-pie-tests = ifuncmain1pie ifuncmain1vispie ifuncmain1staticpie \
386 ifuncmain5pie ifuncmain6pie ifuncmain7pie ifuncmain9pie
387 ifeq (yes,$(have-textrel_ifunc))
388 ifunc-pie-tests += tst-ifunc-textrel
389 endif
390 tests-internal += $(ifunc-pie-tests)
391 tests-pie += $(ifunc-pie-tests)
392 endif
393 modules-names += ifuncmod1 ifuncmod3 ifuncmod5 ifuncmod6
394 endif
395 endif
396
397 ifeq (yes,$(build-shared))
398 ifeq ($(run-built-tests),yes)
399 tests-special += $(objpfx)tst-pathopt.out $(objpfx)tst-rtld-load-self.out \
400 $(objpfx)tst-rtld-preload.out
401 endif
402 tests-special += $(objpfx)check-textrel.out $(objpfx)check-execstack.out \
403 $(objpfx)check-localplt.out $(objpfx)check-initfini.out
404 endif
405
406 ifeq ($(run-built-tests),yes)
407 tests-special += $(objpfx)order-cmp.out $(objpfx)tst-array1-cmp.out \
408 $(objpfx)tst-array1-static-cmp.out \
409 $(objpfx)tst-array2-cmp.out $(objpfx)tst-array3-cmp.out \
410 $(objpfx)tst-array4-cmp.out $(objpfx)tst-array5-cmp.out \
411 $(objpfx)tst-array5-static-cmp.out $(objpfx)order2-cmp.out \
412 $(objpfx)tst-initorder-cmp.out \
413 $(objpfx)tst-initorder2-cmp.out $(objpfx)tst-unused-dep.out \
414 $(objpfx)tst-unused-dep-cmp.out
415 endif
416
417 check-abi: $(objpfx)check-abi-ld.out
418 tests-special += $(objpfx)check-abi-ld.out
419 update-abi: update-abi-ld
420 update-all-abi: update-all-abi-ld
421
422 ifeq ($(have-glob-dat-reloc),yes)
423 tests += tst-prelink
424 # Don't compile tst-prelink.c with PIE for GLOB_DAT relocation.
425 CFLAGS-tst-prelink.c += -fno-pie
426 tst-prelink-no-pie = yes
427 ifeq ($(run-built-tests),yes)
428 tests-special += $(objpfx)tst-prelink-cmp.out
429 endif
430 endif
431
432 # The test requires shared _and_ PIE because the executable
433 # unit test driver must be able to link with the shared object
434 # that is going to eventually go into an installed DSO.
435 ifeq (yesyes,$(have-fpie)$(build-shared))
436 tests-internal += tst-_dl_addr_inside_object
437 tests-pie += tst-_dl_addr_inside_object
438 $(objpfx)tst-_dl_addr_inside_object: $(objpfx)dl-addr-obj.os
439 CFLAGS-tst-_dl_addr_inside_object.c += $(PIE-ccflag)
440 endif
441
442 # We can only test static libcrypt use if libcrypt has been built,
443 # and either NSS crypto is not in use, or static NSS libraries are
444 # available.
445 ifeq ($(build-crypt),no)
446 CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=0
447 else
448 ifeq ($(nss-crypt),no)
449 CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=1
450 else
451 ifeq ($(static-nss-crypt),no)
452 CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=0
453 else
454 CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=1
455 endif
456 endif
457 endif
458
459 include ../Rules
460
461 ifeq (yes,$(build-shared))
462 # Make sure these things are built in the `make lib' pass so they can be used
463 # to run programs during the `make others' pass.
464 lib-noranlib: $(objpfx)$(rtld-installed-name) \
465 $(addprefix $(objpfx),$(extra-objs))
466 endif
467
468 # Command to link into a larger single relocatable object.
469 reloc-link = $(LINK.o) -nostdlib -nostartfiles -r
470
471 $(objpfx)sotruss-lib.so: $(shlib-lds)
472
473 $(objpfx)dl-allobjs.os: $(all-rtld-routines:%=$(objpfx)%.os)
474 $(reloc-link) -o $@ $^
475
476 # Link together the dynamic linker into a single relocatable object.
477 # First we do a link against libc_pic.a just to get a link map,
478 # and discard the object produced by that link. From the link map
479 # we can glean all the libc modules that need to go into the dynamic
480 # linker. Then we do a recursive make that goes into all the subdirs
481 # those modules come from and builds special rtld-foo.os versions that
482 # are compiled with special flags, and puts these modules into rtld-libc.a
483 # for us. Then we do the real link using rtld-libc.a instead of libc_pic.a.
484
485 # If the compiler can do SSP, build the mapfile with dummy __stack_chk_fail
486 # and __stack_chk_fail_local symbols defined, to prevent the real things
487 # being dragged into rtld even though rtld is never built with stack-
488 # protection.
489
490 ifeq ($(have-ssp),yes)
491 dummy-stack-chk-fail := -Wl,--defsym='__stack_chk_fail=0' \
492 -Wl,--defsym='__stack_chk_fail_local=0'
493 else
494 dummy-stack-chk-fail :=
495 endif
496
497 $(objpfx)librtld.map: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
498 @-rm -f $@T
499 $(reloc-link) -o $@.o $(dummy-stack-chk-fail) \
500 '-Wl,-(' $^ -lgcc '-Wl,-)' -Wl,-Map,$@T
501 rm -f $@.o
502 mv -f $@T $@
503
504 $(objpfx)librtld.mk: $(objpfx)librtld.map Makefile
505 LC_ALL=C \
506 sed -n 's@^$(common-objpfx)\([^(]*\)(\([^)]*\.os\)) *.*$$@\1 \2@p' \
507 $< | \
508 while read lib file; do \
509 case $$lib in \
510 libc_pic.a) \
511 LC_ALL=C fgrep -l /$$file \
512 $(common-objpfx)stamp.os $(common-objpfx)*/stamp.os | \
513 LC_ALL=C \
514 sed 's@^$(common-objpfx)\([^/]*\)/stamp\.os$$@rtld-\1'" +=$$file@"\
515 ;; \
516 */*.a) \
517 echo rtld-$${lib%%/*} += $$file ;; \
518 *) echo "Wasn't expecting $$lib($$file)" >&2; exit 1 ;; \
519 esac; \
520 done > $@T
521 echo rtld-subdirs = `LC_ALL=C sed 's/^rtld-\([^ ]*\).*$$/\1/' $@T \
522 | LC_ALL=C sort -u` >> $@T
523 mv -f $@T $@
524
525 $(objpfx)rtld-libc.a: $(objpfx)librtld.mk FORCE
526 $(MAKE) -f $< -f rtld-Rules
527
528 $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(objpfx)rtld-libc.a
529 $(LINK.o) -nostdlib -nostartfiles -r -o $@ '-Wl,-(' $^ -lgcc '-Wl,-)' \
530 -Wl,-Map,$@.map
531
532 generated += librtld.map librtld.mk rtld-libc.a librtld.os.map
533
534 z-now-yes = -Wl,-z,now
535
536 $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map)
537 # Link into a temporary file so that we don't touch $@ at all
538 # if the sanity check below fails.
539 $(LINK.o) -nostdlib -nostartfiles -shared -o $@.new \
540 $(LDFLAGS-rtld) -Wl,-z,defs $(z-now-$(bind-now)) \
541 $(filter-out $(map-file),$^) $(load-map-file) \
542 -Wl,-soname=$(rtld-installed-name) \
543 -Wl,-defsym=_begin=0
544 $(call after-link,$@.new)
545 $(READELF) -s $@.new \
546 | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
547 mv -f $@.new $@
548
549 ifeq (yes,$(build-shared))
550 # interp.c exists just to get the runtime linker path into libc.so.
551 $(objpfx)interp.os: $(common-objpfx)runtime-linker.h
552 endif
553
554 ifneq (ld.so,$(rtld-installed-name))
555 # Make sure ld.so.1 exists in the build directory so we can link
556 # against it.
557 $(objpfx)$(rtld-installed-name): $(objpfx)ld.so
558 $(make-link)
559 generated += $(rtld-installed-name)
560 endif
561
562 # Build a file mentioning all trustworthy directories to look for shared
563 # libraries when using LD_LIBRARY_PATH in a setuid program. The user can
564 # add directories to the list by defining $(user-defined-trusted-dirs)
565 # before starting make.
566 $(objpfx)trusted-dirs.h: $(objpfx)trusted-dirs.st; @:
567 $(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig
568 $(make-target-directory)
569 echo "$(subst :, ,$(default-rpath) $(user-defined-trusted-dirs))" \
570 | $(AWK) -f gen-trusted-dirs.awk > ${@:st=T};
571 echo '#define DL_DST_LIB "$(notdir $(slibdir))"' >> ${@:st=T}
572 $(move-if-change) ${@:st=T} ${@:st=h}
573 touch $@
574 CPPFLAGS-dl-load.c += -I$(objpfx). -I$(csu-objpfx).
575
576 ifeq (yes,$(build-shared))
577 $(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force)
578 $(make-target-directory)
579 $(do-install-program)
580
581 $(inst_rtlddir)/$(rtld-installed-name): \
582 $(inst_slibdir)/$(rtld-version-installed-name) \
583 $(inst_slibdir)/libc-$(version).so
584 $(make-target-directory)
585 $(make-shlib-link)
586
587 # Special target called by parent to install just the dynamic linker.
588 .PHONY: ldso_install
589 ldso_install: $(inst_rtlddir)/$(rtld-installed-name)
590 endif
591
592
593 ldd-rewrite = -e 's%@RTLD@%$(rtlddir)/$(rtld-installed-name)%g' \
594 -e 's%@VERSION@%$(version)%g' \
595 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
596 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
597 -e 's%@BASH@%$(BASH)%g' \
598 -e 's%@TEXTDOMAINDIR@%$(localedir)%g'
599
600 ifeq ($(ldd-rewrite-script),no)
601 define gen-ldd
602 LC_ALL=C sed $(ldd-rewrite) < $< > $@.new
603 endef
604 else
605 define gen-ldd
606 LC_ALL=C sed $(ldd-rewrite) < $< \
607 | LC_ALL=C sed -f $(patsubst $(..)/%,/%,$(..)$(ldd-rewrite-script)) > $@.new
608 endef
609 endif
610
611 $(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \
612 $(common-objpfx)config.make
613 $(gen-ldd)
614 chmod 555 $@.new
615 mv -f $@.new $@
616
617 $(objpfx)sprof: $(libdl)
618
619 $(objpfx)sln: $(sln-modules:%=$(objpfx)%.o)
620
621 $(objpfx)ldconfig: $(ldconfig-modules:%=$(objpfx)%.o)
622
623 SYSCONF-FLAGS := -D'SYSCONFDIR="$(sysconfdir)"'
624 CFLAGS-ldconfig.c += $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \
625 -D'SLIBDIR="$(slibdir)"'
626 libof-ldconfig = ldconfig
627 CFLAGS-dl-cache.c += $(SYSCONF-FLAGS)
628 CFLAGS-cache.c += $(SYSCONF-FLAGS)
629 CFLAGS-rtld.c += $(SYSCONF-FLAGS)
630
631 cpp-srcs-left := $(all-rtld-routines:=.os)
632 lib := rtld
633 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
634
635 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(strip $(modules-names))))
636 generated += $(addsuffix .so,$(strip $(modules-names)))
637
638 $(objpfx)testobj1.so: $(libdl)
639 $(objpfx)testobj1_1.so: $(objpfx)testobj1.so $(libdl)
640 $(objpfx)testobj2.so: $(objpfx)testobj1.so $(libdl)
641 $(objpfx)testobj3.so: $(libdl)
642 $(objpfx)testobj4.so: $(libdl)
643 $(objpfx)testobj5.so: $(libdl)
644 $(objpfx)testobj6.so: $(objpfx)testobj1.so $(objpfx)testobj2.so $(libdl)
645 $(objpfx)failobj.so: $(objpfx)testobj6.so
646 $(objpfx)dep1.so: $(objpfx)dep2.so $(objpfx)dep4.so
647 $(objpfx)dep2.so: $(objpfx)dep3.so $(objpfx)dep4.so
648 $(objpfx)dep4.so: $(objpfx)dep3.so
649 $(objpfx)nodelmod3.so: $(objpfx)nodelmod4.so
650 $(objpfx)nextmod1.so: $(libdl)
651 $(objpfx)neededobj1.so: $(libdl)
652 $(objpfx)neededobj2.so: $(objpfx)neededobj1.so $(libdl)
653 $(objpfx)neededobj3.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so $(libdl)
654 $(objpfx)neededobj4.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
655 $(objpfx)neededobj3.so $(libdl)
656 $(objpfx)neededobj6.so: $(objpfx)neededobj5.so
657 $(objpfx)unload2mod.so: $(objpfx)unload2dep.so
658 $(objpfx)ltglobmod2.so: $(libdl)
659 $(objpfx)firstobj.so: $(shared-thread-library)
660 $(objpfx)globalmod1.so: $(libdl)
661 $(objpfx)reldep4mod1.so: $(objpfx)reldep4mod3.so
662 $(objpfx)reldep4mod2.so: $(objpfx)reldep4mod4.so
663 $(objpfx)dblloadmod1.so: $(objpfx)dblloadmod3.so
664 $(objpfx)dblloadmod2.so: $(objpfx)dblloadmod3.so
665 $(objpfx)reldepmod5.so: $(objpfx)reldepmod2.so
666 $(objpfx)reldepmod6.so: $(objpfx)reldepmod2.so
667 $(objpfx)reldep6mod1.so: $(objpfx)reldep6mod0.so
668 $(objpfx)reldep6mod2.so: $(objpfx)reldep6mod1.so
669 $(objpfx)reldep6mod3.so: $(objpfx)reldep6mod2.so
670 $(objpfx)reldep6mod4.so: $(objpfx)reldep6mod1.so
671 $(objpfx)tst-tlsmod3.so: $(objpfx)tst-tlsmod2.so
672 $(objpfx)tst-tlsmod8.so: $(objpfx)tst-tlsmod7.so
673 $(objpfx)tst-tlsmod10.so: $(objpfx)tst-tlsmod9.so
674 $(objpfx)tst-tlsmod12.so: $(objpfx)tst-tlsmod11.so
675 $(objpfx)tst-tlsmod13a.so: $(objpfx)tst-tlsmod13.so
676 # For tst-tls9-static, make sure the modules it dlopens have libc.so in DT_NEEDED
677 $(objpfx)tst-tlsmod5.so: $(common-objpfx)libc.so
678 $(objpfx)tst-tlsmod6.so: $(common-objpfx)libc.so
679 $(objpfx)tst-tls19mod1.so: $(objpfx)tst-tls19mod2.so $(objpfx)tst-tls19mod3.so
680 $(objpfx)tst-tls19mod3.so: $(objpfx)ld.so
681 $(objpfx)reldep8mod3.so: $(objpfx)reldep8mod1.so $(objpfx)reldep8mod2.so
682 $(objpfx)nodel2mod3.so: $(objpfx)nodel2mod1.so $(objpfx)nodel2mod2.so
683 $(objpfx)reldep9mod2.so: $(objpfx)reldep9mod1.so
684 $(objpfx)reldep9mod3.so: $(objpfx)reldep9mod1.so $(objpfx)reldep9mod2.so
685 $(objpfx)unload3mod1.so: $(objpfx)unload3mod3.so
686 $(objpfx)unload3mod2.so: $(objpfx)unload3mod3.so
687 $(objpfx)unload3mod3.so: $(objpfx)unload3mod4.so
688 $(objpfx)unload4mod1.so: $(objpfx)unload4mod2.so $(objpfx)unload4mod3.so
689 $(objpfx)unload4mod2.so: $(objpfx)unload4mod4.so $(objpfx)unload4mod3.so
690 $(objpfx)unload6mod1.so: $(libdl)
691 $(objpfx)unload6mod2.so: $(libdl)
692 $(objpfx)unload6mod3.so: $(libdl)
693 $(objpfx)unload7mod1.so: $(libdl)
694 $(objpfx)unload7mod2.so: $(objpfx)unload7mod1.so
695 $(objpfx)unload8mod1.so: $(objpfx)unload8mod2.so
696 $(objpfx)unload8mod2.so: $(objpfx)unload8mod3.so
697 $(objpfx)unload8mod3.so: $(libdl)
698 $(objpfx)tst-initordera2.so: $(objpfx)tst-initordera1.so
699 $(objpfx)tst-initorderb2.so: $(objpfx)tst-initorderb1.so $(objpfx)tst-initordera2.so
700 $(objpfx)tst-initordera3.so: $(objpfx)tst-initorderb2.so $(objpfx)tst-initorderb1.so
701 $(objpfx)tst-initordera4.so: $(objpfx)tst-initordera3.so
702 $(objpfx)tst-initorder: $(objpfx)tst-initordera4.so $(objpfx)tst-initordera1.so $(objpfx)tst-initorderb2.so
703 $(objpfx)tst-null-argv: $(objpfx)tst-null-argv-lib.so
704 $(objpfx)tst-tlsalign: $(objpfx)tst-tlsalign-lib.so
705 $(objpfx)tst-nodelete-opened.out: $(objpfx)tst-nodelete-opened-lib.so
706 $(objpfx)tst-nodelete-opened: $(libdl)
707 $(objpfx)tst-noload: $(libdl)
708
709 $(objpfx)tst-tlsalign-extern: $(objpfx)tst-tlsalign-vars.o
710 $(objpfx)tst-tlsalign-extern-static: $(objpfx)tst-tlsalign-vars.o
711
712 tst-null-argv-ENV = LD_DEBUG=all LD_DEBUG_OUTPUT=$(objpfx)tst-null-argv.debug.out
713 LDFLAGS-nodel2mod3.so = -Wl,--no-as-needed
714 LDFLAGS-reldepmod5.so = -Wl,--no-as-needed
715 LDFLAGS-reldep6mod1.so = -Wl,--no-as-needed
716 LDFLAGS-reldep6mod4.so = -Wl,--no-as-needed
717 LDFLAGS-reldep8mod3.so = -Wl,--no-as-needed
718 LDFLAGS-unload4mod1.so = -Wl,--no-as-needed
719 LDFLAGS-unload4mod2.so = -Wl,--no-as-needed
720 LDFLAGS-tst-initorder = -Wl,--no-as-needed
721 LDFLAGS-tst-initordera2.so = -Wl,--no-as-needed
722 LDFLAGS-tst-initordera3.so = -Wl,--no-as-needed
723 LDFLAGS-tst-initordera4.so = -Wl,--no-as-needed
724 LDFLAGS-tst-initorderb2.so = -Wl,--no-as-needed
725 LDFLAGS-tst-tlsmod5.so = -nostdlib -Wl,--no-as-needed
726 LDFLAGS-tst-tlsmod6.so = -nostdlib -Wl,--no-as-needed
727
728 testobj1.so-no-z-defs = yes
729 testobj3.so-no-z-defs = yes
730 testobj4.so-no-z-defs = yes
731 testobj5.so-no-z-defs = yes
732 testobj6.so-no-z-defs = yes
733 failobj.so-no-z-defs = yes
734 constload2.so-no-z-defs = yes
735 constload3.so-no-z-defs = yes
736 nodelmod1.so-no-z-defs = yes
737 nodelmod2.so-no-z-defs = yes
738 nodelmod4.so-no-z-defs = yes
739 nodel2mod2.so-no-z-defs = yes
740 reldepmod2.so-no-z-defs = yes
741 reldepmod3.so-no-z-defs = yes
742 reldepmod4.so-no-z-defs = yes
743 reldep4mod4.so-no-z-defs = yes
744 reldep4mod2.so-no-z-defs = yes
745 ltglobmod2.so-no-z-defs = yes
746 dblloadmod3.so-no-z-defs = yes
747 tst-tlsmod1.so-no-z-defs = yes
748 tst-tlsmod2.so-no-z-defs = yes
749 tst-tlsmod3.so-no-z-defs = yes
750 tst-tlsmod4.so-no-z-defs = yes
751 tst-tlsmod7.so-no-z-defs = yes
752 tst-tlsmod8.so-no-z-defs = yes
753 tst-tlsmod9.so-no-z-defs = yes
754 tst-tlsmod10.so-no-z-defs = yes
755 tst-tlsmod12.so-no-z-defs = yes
756 tst-tlsmod14a.so-no-z-defs = yes
757 tst-tlsmod14b.so-no-z-defs = yes
758 tst-tlsmod15a.so-no-z-defs = yes
759 tst-tlsmod16b.so-no-z-defs = yes
760 circlemod2.so-no-z-defs = yes
761 circlemod3.so-no-z-defs = yes
762 circlemod3a.so-no-z-defs = yes
763 reldep8mod2.so-no-z-defs = yes
764 reldep9mod1.so-no-z-defs = yes
765 unload3mod4.so-no-z-defs = yes
766 unload4mod1.so-no-z-defs = yes
767 ifuncmod1.so-no-z-defs = yes
768 ifuncmod5.so-no-z-defs = yes
769 ifuncmod6.so-no-z-defs = yes
770 tst-auditmod9a.so-no-z-defs = yes
771 tst-auditmod9b.so-no-z-defs = yes
772 tst-nodelete-uniquemod.so-no-z-defs = yes
773 tst-nodelete-rtldmod.so-no-z-defs = yes
774 tst-nodelete-zmod.so-no-z-defs = yes
775 tst-nodelete2mod.so-no-z-defs = yes
776
777 ifeq ($(build-shared),yes)
778 # Build all the modules even when not actually running test programs.
779 tests: $(test-modules)
780 endif
781
782 $(objpfx)loadtest: $(libdl)
783 LDFLAGS-loadtest = -rdynamic
784
785 $(objpfx)loadtest.out: $(test-modules)
786
787 $(objpfx)neededtest: $(libdl)
788 $(objpfx)neededtest.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
789 $(objpfx)neededobj3.so
790
791 $(objpfx)neededtest2: $(libdl)
792 $(objpfx)neededtest2.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
793 $(objpfx)neededobj3.so
794
795 $(objpfx)neededtest3: $(libdl)
796 $(objpfx)neededtest3.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
797 $(objpfx)neededobj3.so $(objpfx)neededobj4.so
798
799 $(objpfx)neededtest4: $(libdl) $(objpfx)neededobj1.so
800 $(objpfx)neededtest4.out: $(objpfx)neededobj5.so $(objpfx)neededobj6.so
801
802 $(objpfx)restest1: $(objpfx)testobj1.so $(objpfx)testobj1_1.so $(libdl)
803 LDFLAGS-restest1 = -rdynamic
804
805 $(objpfx)restest2: $(libdl)
806 LDFLAGS-restest2 = -rdynamic
807
808 $(objpfx)restest1.out: $(test-modules)
809
810 preloadtest-preloads = testobj1 testobj2 testobj3 testobj4 testobj5
811 $(objpfx)preloadtest: $(objpfx)testobj6.so
812 LDFLAGS-preloadtest = -rdynamic
813 $(objpfx)preloadtest.out: $(preloadtest-preloads:%=$(objpfx)%.so)
814 preloadtest-ENV = \
815 LD_PRELOAD=$(subst $(empty) ,:,$(strip $(preloadtest-preloads:=.so)))
816
817 $(objpfx)loadfail: $(libdl)
818 LDFLAGS-loadfail = -rdynamic
819
820 $(objpfx)loadfail.out: $(objpfx)failobj.so
821
822 $(objpfx)multiload: $(libdl)
823 LDFLAGS-multiload = -rdynamic
824 CFLAGS-multiload.c += -DOBJDIR=\"$(elf-objpfx)\"
825
826 $(objpfx)multiload.out: $(objpfx)testobj1.so
827
828 $(objpfx)origtest: $(libdl)
829 LDFLAGS-origtest = -rdynamic
830 $(objpfx)origtest.out: $(objpfx)testobj1.so
831
832 ifeq ($(have-thread-library),yes)
833 $(objpfx)resolvfail: $(libdl) $(shared-thread-library)
834 else
835 $(objpfx)resolvfail: $(libdl)
836 endif
837
838 $(objpfx)constload1: $(libdl)
839 $(objpfx)constload1.out: $(objpfx)constload2.so $(objpfx)constload3.so
840
841 $(objpfx)circleload1: $(libdl)
842 $(objpfx)circleload1.out: $(objpfx)circlemod1.so \
843 $(objpfx)circlemod1a.so
844
845 $(objpfx)circlemod1.so: $(objpfx)circlemod2.so
846 $(objpfx)circlemod2.so: $(objpfx)circlemod3.so
847 $(objpfx)circlemod1a.so: $(objpfx)circlemod2a.so
848 $(objpfx)circlemod2a.so: $(objpfx)circlemod3a.so
849
850 $(objpfx)order: $(addprefix $(objpfx),dep4.so dep3.so dep2.so dep1.so)
851
852 $(objpfx)order-cmp.out: $(objpfx)order.out
853 (echo "0123456789" | cmp $< -) > $@; \
854 $(evaluate-test)
855
856 $(objpfx)vismain: $(addprefix $(objpfx),vismod1.so vismod2.so)
857 $(objpfx)vismain.out: $(addprefix $(objpfx),vismod3.so)
858 vismain-ENV = LD_PRELOAD=$(addprefix $(objpfx),vismod3.so)
859
860 $(objpfx)noload: $(objpfx)testobj1.so $(libdl)
861 LDFLAGS-noload = -rdynamic -Wl,--no-as-needed
862 $(objpfx)noload.out: $(objpfx)testobj5.so
863
864 $(objpfx)noload-mem.out: $(objpfx)noload.out
865 $(common-objpfx)malloc/mtrace $(objpfx)noload.mtrace > $@; \
866 $(evaluate-test)
867 noload-ENV = MALLOC_TRACE=$(objpfx)noload.mtrace
868
869 LDFLAGS-nodelete = -rdynamic
870 LDFLAGS-nodelmod1.so = -Wl,--enable-new-dtags,-z,nodelete
871 LDFLAGS-nodelmod4.so = -Wl,--enable-new-dtags,-z,nodelete
872 $(objpfx)nodelete: $(libdl)
873 $(objpfx)nodelete.out: $(objpfx)nodelmod1.so $(objpfx)nodelmod2.so \
874 $(objpfx)nodelmod3.so
875
876 LDFLAGS-nodlopenmod.so = -Wl,--enable-new-dtags,-z,nodlopen
877 $(objpfx)nodlopen: $(libdl)
878 $(objpfx)nodlopen.out: $(objpfx)nodlopenmod.so
879
880 $(objpfx)nodlopenmod2.so: $(objpfx)nodlopenmod.so
881 $(objpfx)nodlopen2: $(libdl)
882 $(objpfx)nodlopen2.out: $(objpfx)nodlopenmod2.so
883
884 $(objpfx)filtmod1.so: $(objpfx)filtmod1.os $(objpfx)filtmod2.so
885 $(LINK.o) -shared -o $@ -B$(csu-objpfx) $(LDFLAGS.so) \
886 -L$(subst :, -L,$(rpath-link)) \
887 -Wl,-rpath-link=$(rpath-link) \
888 $< -Wl,-F,$(objpfx)filtmod2.so
889 $(objpfx)filter: $(objpfx)filtmod1.so
890
891 # This does not link against libc.
892 CFLAGS-filtmod1.c += $(no-stack-protector)
893
894 $(objpfx)unload: $(libdl)
895 $(objpfx)unload.out: $(objpfx)unloadmod.so
896
897 $(objpfx)reldep: $(libdl)
898 $(objpfx)reldep.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod2.so
899
900 $(objpfx)reldep2: $(libdl)
901 $(objpfx)reldep2.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod3.so
902
903 $(objpfx)reldep3: $(libdl)
904 $(objpfx)reldep3.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod4.so
905
906 $(objpfx)reldep4: $(libdl)
907 $(objpfx)reldep4.out: $(objpfx)reldep4mod1.so $(objpfx)reldep4mod2.so
908
909 $(objpfx)next: $(objpfx)nextmod1.so $(objpfx)nextmod2.so $(libdl)
910 LDFLAGS-next = -Wl,--no-as-needed
911
912 $(objpfx)unload2: $(libdl)
913 $(objpfx)unload2.out: $(objpfx)unload2mod.so $(objpfx)unload2dep.so
914
915 $(objpfx)lateglobal: $(libdl)
916 $(objpfx)lateglobal.out: $(objpfx)ltglobmod1.so $(objpfx)ltglobmod2.so
917
918 $(objpfx)tst-pathopt: $(libdl)
919 $(objpfx)tst-pathopt.out: tst-pathopt.sh $(objpfx)tst-pathopt \
920 $(objpfx)pathoptobj.so
921 $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' \
922 '$(run-program-env)' > $@; \
923 $(evaluate-test)
924
925 $(objpfx)tst-rtld-load-self.out: tst-rtld-load-self.sh $(objpfx)ld.so
926 $(SHELL) $^ '$(test-wrapper)' '$(test-wrapper-env)' > $@; \
927 $(evaluate-test)
928
929 tst-rtld-preload-OBJS = $(subst $(empty) ,:,$(strip $(preloadtest-preloads:=.so)))
930 $(objpfx)tst-rtld-preload.out: tst-rtld-preload.sh $(objpfx)ld.so \
931 $(objpfx)preloadtest \
932 $(preloadtest-preloads:%=$(objpfx)%.so)
933 $(SHELL) $< $(objpfx)ld.so $(objpfx)preloadtest \
934 '$(test-wrapper)' '$(test-wrapper-env)' '$(run_program_env)' \
935 '$(rpath-link)' '$(tst-rtld-preload-OBJS)' > $@; \
936 $(evaluate-test)
937
938 $(objpfx)initfirst: $(libdl)
939 $(objpfx)initfirst.out: $(objpfx)firstobj.so
940
941 $(objpfx)global: $(objpfx)globalmod1.so
942 $(objpfx)global.out: $(objpfx)reldepmod1.so
943
944 $(objpfx)dblload: $(libdl)
945 $(objpfx)dblload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
946
947 $(objpfx)dblunload: $(libdl)
948 $(objpfx)dblunload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
949
950 $(objpfx)reldep5: $(libdl)
951 $(objpfx)reldep5.out: $(objpfx)reldepmod5.so $(objpfx)reldepmod6.so
952
953 $(objpfx)reldep6: $(libdl)
954 $(objpfx)reldep6.out: $(objpfx)reldep6mod3.so $(objpfx)reldep6mod4.so
955
956 $(objpfx)reldep7: $(libdl)
957 $(objpfx)reldep7.out: $(objpfx)reldep7mod1.so $(objpfx)reldep7mod2.so
958
959 $(objpfx)reldep8: $(libdl)
960 $(objpfx)reldep8.out: $(objpfx)reldep8mod3.so
961
962 LDFLAGS-nodel2mod2.so = -Wl,--enable-new-dtags,-z,nodelete
963 $(objpfx)nodelete2: $(libdl)
964 $(objpfx)nodelete2.out: $(objpfx)nodel2mod3.so
965
966 $(objpfx)reldep9: $(libdl)
967 $(objpfx)reldep9.out: $(objpfx)reldep9mod3.so
968
969 $(objpfx)tst-tls3: $(objpfx)tst-tlsmod1.so
970
971 $(objpfx)tst-tls4: $(libdl)
972 $(objpfx)tst-tls4.out: $(objpfx)tst-tlsmod2.so
973
974 $(objpfx)tst-tls5: $(libdl)
975 $(objpfx)tst-tls5.out: $(objpfx)tst-tlsmod2.so
976
977 $(objpfx)tst-tls6: $(libdl)
978 $(objpfx)tst-tls6.out: $(objpfx)tst-tlsmod2.so
979
980 $(objpfx)tst-tls7: $(libdl)
981 $(objpfx)tst-tls7.out: $(objpfx)tst-tlsmod3.so
982
983 $(objpfx)tst-tls8: $(libdl)
984 $(objpfx)tst-tls8.out: $(objpfx)tst-tlsmod3.so $(objpfx)tst-tlsmod4.so
985
986 $(objpfx)tst-tls9: $(libdl)
987 $(objpfx)tst-tls9.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
988
989 $(objpfx)tst-tls10: $(objpfx)tst-tlsmod8.so $(objpfx)tst-tlsmod7.so
990
991 $(objpfx)tst-tls11: $(objpfx)tst-tlsmod10.so $(objpfx)tst-tlsmod9.so
992
993 $(objpfx)tst-tls12: $(objpfx)tst-tlsmod12.so $(objpfx)tst-tlsmod11.so
994
995 $(objpfx)tst-tls13: $(libdl)
996 $(objpfx)tst-tls13.out: $(objpfx)tst-tlsmod13a.so
997
998 $(objpfx)tst-tls14: $(objpfx)tst-tlsmod14a.so $(libdl)
999 $(objpfx)tst-tls14.out: $(objpfx)tst-tlsmod14b.so
1000
1001 $(objpfx)tst-tls15: $(libdl)
1002 $(objpfx)tst-tls15.out: $(objpfx)tst-tlsmod15a.so $(objpfx)tst-tlsmod15b.so
1003
1004 $(objpfx)tst-tls-dlinfo: $(libdl)
1005 $(objpfx)tst-tls-dlinfo.out: $(objpfx)tst-tlsmod2.so
1006
1007
1008
1009 $(objpfx)tst-tls16: $(libdl)
1010 $(objpfx)tst-tls16.out: $(objpfx)tst-tlsmod16a.so $(objpfx)tst-tlsmod16b.so
1011
1012 $(objpfx)tst-tls17: $(libdl)
1013 $(objpfx)tst-tls17.out: $(objpfx)tst-tlsmod17b.so
1014 $(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.os: tst-tlsmod17a.c
1015 $(compile-command.c) -DN=$*
1016 $(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.so: $(objpfx)ld.so
1017 $(objpfx)tst-tlsmod17b.so: $(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules))
1018
1019 $(objpfx)tst-tls18: $(libdl)
1020 $(objpfx)tst-tls18.out: $(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules))
1021 $(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.os : tst-tlsmod18a.c
1022 $(compile-command.c) -DN=$*
1023 $(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.so: $(objpfx)ld.so
1024
1025 $(objpfx)tst-tls19: $(libdl)
1026 $(objpfx)tst-tls19.out: $(objpfx)tst-tls19mod1.so
1027
1028 CFLAGS-tst-align.c += $(stack-align-test-flags)
1029 CFLAGS-tst-align2.c += $(stack-align-test-flags)
1030 CFLAGS-tst-alignmod.c += $(stack-align-test-flags)
1031 CFLAGS-tst-alignmod2.c += $(stack-align-test-flags)
1032 $(objpfx)tst-align: $(libdl)
1033 $(objpfx)tst-align.out: $(objpfx)tst-alignmod.so
1034 $(objpfx)tst-align2: $(objpfx)tst-alignmod2.so
1035
1036 $(objpfx)unload3: $(libdl)
1037 $(objpfx)unload3.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
1038 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
1039
1040 $(objpfx)unload4: $(libdl)
1041 $(objpfx)unload4.out: $(objpfx)unload4mod1.so $(objpfx)unload4mod3.so
1042
1043 $(objpfx)unload5: $(libdl)
1044 $(objpfx)unload5.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
1045 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
1046
1047 $(objpfx)unload6: $(libdl)
1048 $(objpfx)unload6.out: $(objpfx)unload6mod1.so $(objpfx)unload6mod2.so \
1049 $(objpfx)unload6mod3.so
1050
1051 $(objpfx)unload7: $(libdl)
1052 $(objpfx)unload7.out: $(objpfx)unload7mod1.so $(objpfx)unload7mod2.so
1053 unload7-ENV = MALLOC_PERTURB_=85
1054
1055 $(objpfx)unload8: $(libdl)
1056 $(objpfx)unload8.out: $(objpfx)unload8mod1.so $(objpfx)unload8mod1x.so
1057
1058 ifdef libdl
1059 $(objpfx)tst-tls9-static: $(common-objpfx)dlfcn/libdl.a
1060 $(objpfx)tst-tls9-static.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
1061 endif
1062
1063 ifeq ($(have-z-execstack),yes)
1064 $(objpfx)tst-execstack: $(libdl)
1065 $(objpfx)tst-execstack.out: $(objpfx)tst-execstack-mod.so
1066 CPPFLAGS-tst-execstack.c += -DUSE_PTHREADS=0
1067 LDFLAGS-tst-execstack = -Wl,-z,noexecstack
1068 LDFLAGS-tst-execstack-mod.so = -Wl,-z,execstack
1069
1070 $(objpfx)tst-execstack-needed: $(objpfx)tst-execstack-mod.so
1071 LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
1072
1073 LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
1074 CFLAGS-tst-execstack-prog.c += -Wno-trampolines
1075 CFLAGS-tst-execstack-mod.c += -Wno-trampolines
1076 endif
1077
1078 LDFLAGS-tst-array2 = -Wl,--no-as-needed
1079 LDFLAGS-tst-array5 = -Wl,--no-as-needed
1080
1081 $(objpfx)tst-array1-cmp.out: tst-array1.exp $(objpfx)tst-array1.out
1082 cmp $^ > $@; \
1083 $(evaluate-test)
1084
1085 $(objpfx)tst-array1-static-cmp.out: tst-array1.exp \
1086 $(objpfx)tst-array1-static.out
1087 cmp $^ > $@; \
1088 $(evaluate-test)
1089
1090 $(objpfx)tst-array2: $(objpfx)tst-array2dep.so
1091 $(objpfx)tst-array2-cmp.out: tst-array2.exp $(objpfx)tst-array2.out
1092 cmp $^ > $@; \
1093 $(evaluate-test)
1094
1095 $(objpfx)tst-array3-cmp.out: tst-array1.exp $(objpfx)tst-array3.out
1096 cmp $^ > $@; \
1097 $(evaluate-test)
1098
1099 $(objpfx)tst-array4: $(libdl)
1100 $(objpfx)tst-array4.out: $(objpfx)tst-array2dep.so
1101 $(objpfx)tst-array4-cmp.out: tst-array4.exp $(objpfx)tst-array4.out
1102 cmp $^ > $@; \
1103 $(evaluate-test)
1104
1105 $(objpfx)tst-array5: $(objpfx)tst-array5dep.so
1106 $(objpfx)tst-array5-cmp.out: tst-array5.exp $(objpfx)tst-array5.out
1107 cmp $^ > $@; \
1108 $(evaluate-test)
1109
1110 $(objpfx)tst-array5-static-cmp.out: tst-array5-static.exp \
1111 $(objpfx)tst-array5-static.out
1112 cmp $^ > $@; \
1113 $(evaluate-test)
1114
1115 CFLAGS-tst-pie1.c += $(pie-ccflag)
1116 CFLAGS-tst-pie2.c += $(pie-ccflag)
1117
1118 $(objpfx)tst-piemod1.so: $(libsupport)
1119 $(objpfx)tst-pie1: $(objpfx)tst-piemod1.so
1120 $(objpfx)tst-dlopen-pie: $(libdl)
1121 $(objpfx)tst-dlopen-pie.out: $(objpfx)tst-pie1
1122
1123 ifeq (yes,$(build-shared))
1124 # NB: Please keep cet-built-dso in sysdeps/x86/Makefile in sync with
1125 # all-built-dso here.
1126 all-built-dso := $(common-objpfx)elf/ld.so $(common-objpfx)libc.so \
1127 $(filter-out $(common-objpfx)linkobj/libc.so, \
1128 $(sort $(wildcard $(addprefix $(common-objpfx), \
1129 */lib*.so \
1130 iconvdata/*.so))))
1131
1132 $(all-built-dso:=.dyn): %.dyn: %
1133 @rm -f $@T
1134 LC_ALL=C $(READELF) -W -d $< > $@T
1135 test -s $@T
1136 mv -f $@T $@
1137 common-generated += $(all-built-dso:$(common-objpfx)%=%.dyn)
1138
1139 $(objpfx)check-textrel.out: $(..)scripts/check-textrel.awk \
1140 $(all-built-dso:=.dyn)
1141 LC_ALL=C $(AWK) -f $^ > $@; \
1142 $(evaluate-test)
1143 generated += check-textrel.out
1144
1145 $(objpfx)execstack-default: $(first-word $(wildcard $(sysdirs:%=%/stackinfo.h)))
1146 $(make-target-directory)
1147 { echo '#include <elf.h>'; \
1148 echo '#include <stackinfo.h>'; \
1149 echo '#if (DEFAULT_STACK_PERMS & PF_X) == 0'; \
1150 echo '@@@execstack-no@@@'; \
1151 echo '#else'; \
1152 echo '@@@execstack-yes@@@'; \
1153 echo '#endif'; } | \
1154 $(CC) $(CFLAGS) $(CPPFLAGS) -E -x c-header - | \
1155 sed -n -e 's/^@@@\(.*\)@@@/\1/p' > $@T
1156 mv -f $@T $@
1157 generated += execstack-default
1158
1159 $(all-built-dso:=.phdr): %.phdr: %
1160 @rm -f $@T
1161 LC_ALL=C $(READELF) -W -l $< > $@T
1162 test -s $@T
1163 mv -f $@T $@
1164 common-generated += $(all-built-dso:$(common-objpfx)%=%.phdr)
1165
1166 $(objpfx)check-execstack.out: $(..)scripts/check-execstack.awk \
1167 $(objpfx)execstack-default \
1168 $(all-built-dso:=.phdr)
1169 LC_ALL=C $(AWK) -v "xfail=$(check-execstack-xfail)" -f $^ > $@; \
1170 $(evaluate-test)
1171 generated += check-execstack.out
1172
1173 $(objpfx)tst-dlmodcount: $(libdl)
1174 $(objpfx)tst-dlmodcount.out: $(test-modules)
1175
1176 $(all-built-dso:=.jmprel): %.jmprel: % Makefile
1177 @rm -f $@T
1178 LC_ALL=C $(READELF) -W -S -d -r $< > $@T
1179 test -s $@T
1180 mv -f $@T $@
1181 common-generated += $(all-built-dso:$(common-objpfx)%=%.jmprel)
1182
1183 localplt-built-dso := $(addprefix $(common-objpfx),\
1184 libc.so \
1185 elf/ld.so \
1186 math/libm.so \
1187 rt/librt.so \
1188 dlfcn/libdl.so \
1189 resolv/libresolv.so \
1190 )
1191 ifeq ($(build-mathvec),yes)
1192 localplt-built-dso += $(addprefix $(common-objpfx), mathvec/libmvec.so)
1193 endif
1194 ifeq ($(have-thread-library),yes)
1195 localplt-built-dso += $(filter-out %_nonshared.a, $(shared-thread-library))
1196 endif
1197 ifeq ($(build-crypt),yes)
1198 localplt-built-dso += $(addprefix $(common-objpfx), crypt/libcrypt.so)
1199 endif
1200
1201 vpath localplt.data $(+sysdep_dirs)
1202
1203 $(objpfx)check-localplt.out: $(..)scripts/check-localplt.awk \
1204 $(..)scripts/localplt.awk \
1205 $(localplt-built-dso:=.jmprel) \
1206 localplt.data
1207 LC_ALL=C $(AWK) -f $(filter-out $< %localplt.data,$^) | \
1208 LC_ALL=C $(AWK) -f $< $(filter %localplt.data,$^) - \
1209 > $@; \
1210 $(evaluate-test)
1211 endif
1212
1213 $(all-built-dso:=.dynsym): %.dynsym: %
1214 @rm -f $@T
1215 LC_ALL=C $(READELF) -W --dyn-syms $< > $@T
1216 test -s $@T
1217 mv -f $@T $@
1218 common-generated += $(all-built-dso:$(common-objpfx)%=%.dynsym)
1219
1220 $(objpfx)check-initfini.out: $(..)scripts/check-initfini.awk \
1221 $(all-built-dso:=.dynsym)
1222 LC_ALL=C $(AWK) -f $^ > $@; \
1223 $(evaluate-test)
1224 generated += check-initfini.out
1225
1226 $(objpfx)tst-dlopenrpathmod.so: $(libdl)
1227 $(objpfx)tst-dlopenrpath: $(objpfx)tst-dlopenrpathmod.so $(libdl)
1228 CFLAGS-tst-dlopenrpath.c += -DPFX=\"$(objpfx)\"
1229 LDFLAGS-tst-dlopenrpathmod.so += -Wl,-rpath,\$$ORIGIN/test-subdir
1230 $(objpfx)tst-dlopenrpath.out: $(objpfx)firstobj.so
1231
1232 $(objpfx)tst-deep1mod2.so: $(objpfx)tst-deep1mod3.so
1233 $(objpfx)tst-deep1: $(libdl) $(objpfx)tst-deep1mod1.so
1234 $(objpfx)tst-deep1.out: $(objpfx)tst-deep1mod2.so
1235 LDFLAGS-tst-deep1 += -rdynamic
1236 tst-deep1mod3.so-no-z-defs = yes
1237
1238 $(objpfx)tst-dlmopen1mod.so: $(libdl)
1239 $(objpfx)tst-dlmopen1: $(libdl)
1240 $(objpfx)tst-dlmopen1.out: $(objpfx)tst-dlmopen1mod.so
1241
1242 $(objpfx)tst-dlmopen2: $(libdl)
1243 $(objpfx)tst-dlmopen2.out: $(objpfx)tst-dlmopen1mod.so
1244
1245 $(objpfx)tst-dlmopen3: $(libdl)
1246 $(objpfx)tst-dlmopen3.out: $(objpfx)tst-dlmopen1mod.so
1247
1248 $(objpfx)tst-audit1.out: $(objpfx)tst-auditmod1.so
1249 tst-audit1-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1250
1251 $(objpfx)tst-audit2: $(libdl)
1252 $(objpfx)tst-audit2.out: $(objpfx)tst-auditmod1.so $(objpfx)tst-auditmod9b.so
1253 # Prevent GCC-5 from translating a malloc/memset pair into calloc
1254 CFLAGS-tst-audit2.c += -fno-builtin
1255 tst-audit2-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1256
1257 $(objpfx)tst-audit9: $(libdl)
1258 $(objpfx)tst-audit9.out: $(objpfx)tst-auditmod9a.so $(objpfx)tst-auditmod9b.so
1259 tst-audit9-ENV = LD_AUDIT=$(objpfx)tst-auditmod9a.so
1260
1261 $(objpfx)tst-audit8: $(libm)
1262 $(objpfx)tst-audit8.out: $(objpfx)tst-auditmod1.so
1263 tst-audit8-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1264
1265 $(objpfx)tst-global1: $(libdl)
1266 $(objpfx)tst-global1.out: $(objpfx)testobj6.so $(objpfx)testobj2.so
1267
1268 $(objpfx)order2: $(libdl)
1269 $(objpfx)order2.out: $(objpfx)order2mod1.so $(objpfx)order2mod2.so
1270 $(objpfx)order2-cmp.out: $(objpfx)order2.out
1271 (echo "12345" | cmp $< -) > $@; \
1272 $(evaluate-test)
1273 $(objpfx)order2mod1.so: $(objpfx)order2mod4.so
1274 $(objpfx)order2mod4.so: $(objpfx)order2mod3.so
1275 $(objpfx)order2mod2.so: $(objpfx)order2mod3.so
1276 order2mod2.so-no-z-defs = yes
1277 LDFLAGS-order2mod1.so = -Wl,--no-as-needed
1278 LDFLAGS-order2mod2.so = -Wl,--no-as-needed
1279
1280 tst-stackguard1-ARGS = --command "$(host-test-program-cmd) --child"
1281 tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child"
1282
1283 tst-ptrguard1-ARGS = --command "$(host-test-program-cmd) --child"
1284 # When built statically, the pointer guard interface uses
1285 # __pointer_chk_guard_local.
1286 CFLAGS-tst-ptrguard1-static.c += -DPTRGUARD_LOCAL
1287 tst-ptrguard1-static-ARGS = --command "$(objpfx)tst-ptrguard1-static --child"
1288
1289 $(objpfx)tst-leaks1: $(libdl)
1290 $(objpfx)tst-leaks1-mem.out: $(objpfx)tst-leaks1.out
1291 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1.mtrace > $@; \
1292 $(evaluate-test)
1293
1294 $(objpfx)tst-leaks1-static: $(common-objpfx)dlfcn/libdl.a
1295 $(objpfx)tst-leaks1-static-mem.out: $(objpfx)tst-leaks1-static.out
1296 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1-static.mtrace > $@; \
1297 $(evaluate-test)
1298
1299 tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace
1300 tst-leaks1-static-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1-static.mtrace
1301
1302 $(objpfx)tst-addr1: $(libdl)
1303
1304 $(objpfx)tst-thrlock: $(libdl) $(shared-thread-library)
1305
1306 tst-tst-dlopen-tlsmodid-no-pie = yes
1307 $(objpfx)tst-dlopen-tlsmodid: $(libdl) $(shared-thread-library)
1308 $(objpfx)tst-dlopen-tlsmodid.out: $(objpfx)tst-dlopen-self
1309 CFLAGS-tst-dlopen-tlsmodid-pie.c += $(pie-ccflag)
1310 $(objpfx)tst-dlopen-tlsmodid-pie: $(libdl) $(shared-thread-library)
1311 $(objpfx)tst-dlopen-tlsmodid-pie.out: $(objpfx)tst-dlopen-self-pie
1312 $(objpfx)tst-dlopen-tlsmodid-container: $(libdl) $(shared-thread-library)
1313 LDFLAGS-tst-dlopen-tlsmodid-container += -Wl,-rpath,\$$ORIGIN
1314
1315 tst-tst-dlopen-self-no-pie = yes
1316 $(objpfx)tst-dlopen-self: $(libdl)
1317 CFLAGS-tst-dlopen-self-pie.c += $(pie-ccflag)
1318 $(objpfx)tst-dlopen-self-pie: $(libdl)
1319 $(objpfx)tst-dlopen-self-container: $(libdl)
1320 LDFLAGS-tst-dlopen-self-container += -Wl,-rpath,\$$ORIGIN
1321
1322 CFLAGS-ifuncmain1pic.c += $(pic-ccflag)
1323 CFLAGS-ifuncmain1picstatic.c += $(pic-ccflag)
1324 CFLAGS-ifuncmain1staticpic.c += $(pic-ccflag)
1325 CFLAGS-ifuncdep1pic.c += $(pic-ccflag)
1326 CFLAGS-ifuncmain1vispic.c += $(pic-ccflag)
1327 CFLAGS-ifuncmain2pic.c += $(pic-ccflag)
1328 CFLAGS-ifuncmain2picstatic.c += $(pic-ccflag)
1329 CFLAGS-ifuncdep2pic.c += $(pic-ccflag)
1330 CFLAGS-ifuncmain4picstatic.c += $(pic-ccflag)
1331 CFLAGS-ifuncmain5pic.c += $(pic-ccflag)
1332 CFLAGS-ifuncmain5picstatic.c += $(pic-ccflag)
1333 CFLAGS-ifuncmain5staticpic.c += $(pic-ccflag)
1334 CFLAGS-ifuncdep5pic.c += $(pic-ccflag)
1335 CFLAGS-ifuncmain7pic.c += $(pic-ccflag)
1336 CFLAGS-ifuncmain7picstatic.c += $(pic-ccflag)
1337 CFLAGS-ifuncmain9pic.c += $(pic-ccflag)
1338 CFLAGS-ifuncmain9picstatic.c += $(pic-ccflag)
1339
1340 LDFLAGS-ifuncmain3 = -Wl,-export-dynamic
1341
1342 CFLAGS-ifuncmain1pie.c += $(pie-ccflag)
1343 CFLAGS-ifuncmain1vispie.c += $(pie-ccflag)
1344 CFLAGS-ifuncmain1staticpie.c += $(pie-ccflag)
1345 CFLAGS-ifuncmain5pie.c += $(pie-ccflag)
1346 CFLAGS-ifuncmain6pie.c += $(pie-ccflag)
1347 CFLAGS-ifuncmain7pie.c += $(pie-ccflag)
1348 CFLAGS-ifuncmain9pie.c += $(pie-ccflag)
1349 CFLAGS-tst-ifunc-textrel.c += $(pic-ccflag)
1350
1351 $(objpfx)ifuncmain1pie: $(objpfx)ifuncmod1.so
1352 $(objpfx)ifuncmain1staticpie: $(objpfx)ifuncdep1pic.o
1353 $(objpfx)ifuncmain1vispie: $(objpfx)ifuncmod1.so
1354 $(objpfx)ifuncmain5pie: $(objpfx)ifuncmod5.so
1355 $(objpfx)ifuncmain6pie: $(objpfx)ifuncmod6.so
1356
1357 $(objpfx)ifuncmain1: $(addprefix $(objpfx),ifuncmod1.so)
1358 $(objpfx)ifuncmain1pic: $(addprefix $(objpfx),ifuncmod1.so)
1359 $(objpfx)ifuncmain1staticpic: $(addprefix $(objpfx),ifuncdep1pic.o)
1360 $(objpfx)ifuncmain1static: $(addprefix $(objpfx),ifuncdep1.o)
1361 $(objpfx)ifuncmain1picstatic: $(addprefix $(objpfx),ifuncdep1pic.o)
1362 $(objpfx)ifuncmain1vis: $(addprefix $(objpfx),ifuncmod1.so)
1363 $(objpfx)ifuncmain1vispic: $(addprefix $(objpfx),ifuncmod1.so)
1364 $(objpfx)ifuncmain2: $(addprefix $(objpfx),ifuncdep2.o)
1365 $(objpfx)ifuncmain2pic: $(addprefix $(objpfx),ifuncdep2pic.o)
1366 $(objpfx)ifuncmain2static: $(addprefix $(objpfx),ifuncdep2.o)
1367 $(objpfx)ifuncmain2picstatic: $(addprefix $(objpfx),ifuncdep2pic.o)
1368
1369 $(objpfx)ifuncmain3: $(libdl)
1370 $(objpfx)ifuncmain3.out: $(objpfx)ifuncmod3.so
1371
1372 $(objpfx)ifuncmain5: $(addprefix $(objpfx),ifuncmod5.so)
1373 $(objpfx)ifuncmain5pic: $(addprefix $(objpfx),ifuncmod5.so)
1374 $(objpfx)ifuncmain5static: $(addprefix $(objpfx),ifuncdep5.o)
1375 $(objpfx)ifuncmain5staticpic: $(addprefix $(objpfx),ifuncdep5pic.o)
1376 $(objpfx)ifuncmain5picstatic: $(addprefix $(objpfx),ifuncdep5pic.o)
1377
1378 LDFLAGS-tst-ifunc-fault-lazy = -Wl,-z,lazy
1379 LDFLAGS-tst-ifunc-fault-bindnow = -Wl,-z,now
1380 define tst-ifunc-fault-script
1381 ( $(rtld-prefix) --verify $^ \
1382 && LD_TRACE_LOADED_OBJECTS=1 $(rtld-prefix) $^ \
1383 && LD_TRACE_LOADED_OBJECTS=1 LD_DEBUG=unused $(rtld-prefix) $^ \
1384 ) > $@; $(evaluate-test)
1385 endef
1386 $(objpfx)tst-ifunc-fault-lazy.out: $(objpfx)tst-ifunc-fault-lazy $(objpfx)ld.so
1387 $(tst-ifunc-fault-script)
1388 $(objpfx)tst-ifunc-fault-bindnow.out: $(objpfx)tst-ifunc-fault-bindnow \
1389 $(objpfx)ld.so
1390 $(tst-ifunc-fault-script)
1391
1392 $(objpfx)tst-unique1: $(libdl)
1393 $(objpfx)tst-unique1.out: $(objpfx)tst-unique1mod1.so \
1394 $(objpfx)tst-unique1mod2.so
1395
1396 $(objpfx)tst-unique2: $(libdl) $(objpfx)tst-unique2mod1.so
1397 $(objpfx)tst-unique2.out: $(objpfx)tst-unique2mod2.so
1398
1399 $(objpfx)tst-unique3: $(libdl) $(objpfx)tst-unique3lib.so
1400 $(objpfx)tst-unique3.out: $(objpfx)tst-unique3lib2.so
1401
1402 $(objpfx)tst-unique4: $(objpfx)tst-unique4lib.so
1403
1404 $(objpfx)tst-nodelete: $(libdl)
1405 $(objpfx)tst-nodelete.out: $(objpfx)tst-nodelete-uniquemod.so \
1406 $(objpfx)tst-nodelete-rtldmod.so \
1407 $(objpfx)tst-nodelete-zmod.so
1408
1409 LDFLAGS-tst-nodelete = -rdynamic
1410 LDFLAGS-tst-nodelete-zmod.so = -Wl,--enable-new-dtags,-z,nodelete
1411
1412 $(objpfx)tst-nodelete2: $(libdl)
1413 $(objpfx)tst-nodelete2.out: $(objpfx)tst-nodelete2mod.so
1414
1415 LDFLAGS-tst-nodelete2 = -rdynamic
1416
1417 $(objpfx)tst-initorder-cmp.out: tst-initorder.exp $(objpfx)tst-initorder.out
1418 cmp $^ > $@; \
1419 $(evaluate-test)
1420
1421 $(objpfx)tst-initorder2: $(objpfx)tst-initorder2a.so $(objpfx)tst-initorder2d.so $(objpfx)tst-initorder2c.so
1422 $(objpfx)tst-initorder2a.so: $(objpfx)tst-initorder2b.so
1423 $(objpfx)tst-initorder2b.so: $(objpfx)tst-initorder2c.so
1424 $(objpfx)tst-initorder2c.so: $(objpfx)tst-initorder2d.so
1425 LDFLAGS-tst-initorder2 = -Wl,--no-as-needed
1426 LDFLAGS-tst-initorder2a.so = -Wl,--no-as-needed
1427 LDFLAGS-tst-initorder2b.so = -Wl,--no-as-needed
1428 LDFLAGS-tst-initorder2c.so = -Wl,--no-as-needed
1429 define o-iterator-doit
1430 $(objpfx)tst-initorder2$o.os: tst-initorder2.c; \
1431 $$(compile-command.c) -DNAME=\"$o\"
1432 endef
1433 object-suffixes-left := a b c d
1434 include $(o-iterator)
1435
1436 $(objpfx)tst-initorder2-cmp.out: tst-initorder2.exp $(objpfx)tst-initorder2.out
1437 cmp $^ > $@; \
1438 $(evaluate-test)
1439
1440 $(objpfx)tst-relsort1: $(libdl)
1441 $(objpfx)tst-relsort1mod1.so: $(libm) $(objpfx)tst-relsort1mod2.so
1442 $(objpfx)tst-relsort1mod2.so: $(libm)
1443 $(objpfx)tst-relsort1.out: $(objpfx)tst-relsort1mod1.so \
1444 $(objpfx)tst-relsort1mod2.so
1445
1446 $(objpfx)tst-unused-dep.out: $(objpfx)testobj1.so
1447 $(test-wrapper-env) \
1448 LD_TRACE_LOADED_OBJECTS=1 \
1449 LD_DEBUG=unused \
1450 LD_PRELOAD= \
1451 $(rtld-prefix) \
1452 $< > $@; \
1453 $(evaluate-test)
1454
1455 $(objpfx)tst-unused-dep-cmp.out: $(objpfx)tst-unused-dep.out
1456 cmp $< /dev/null > $@; \
1457 $(evaluate-test)
1458
1459 $(objpfx)tst-audit11.out: $(objpfx)tst-auditmod11.so $(objpfx)tst-audit11mod1.so
1460 $(objpfx)tst-audit11: $(libdl)
1461 tst-audit11-ENV = LD_AUDIT=$(objpfx)tst-auditmod11.so
1462 $(objpfx)tst-audit11mod1.so: $(objpfx)tst-audit11mod2.so
1463 LDFLAGS-tst-audit11mod2.so = -Wl,--version-script=tst-audit11mod2.map,-soname,tst-audit11mod2.so
1464
1465 $(objpfx)tst-audit12.out: $(objpfx)tst-auditmod12.so $(objpfx)tst-audit12mod1.so $(objpfx)tst-audit12mod3.so
1466 $(objpfx)tst-audit12: $(libdl)
1467 tst-audit12-ENV = LD_AUDIT=$(objpfx)tst-auditmod12.so
1468 $(objpfx)tst-audit12mod1.so: $(objpfx)tst-audit12mod2.so
1469 LDFLAGS-tst-audit12mod2.so = -Wl,--version-script=tst-audit12mod2.map
1470
1471 $(objpfx)tst-audit13.out: $(objpfx)tst-audit13mod1.so
1472 LDFLAGS-tst-audit13mod1.so = -Wl,-z,lazy
1473 tst-audit13-ENV = LD_AUDIT=$(objpfx)tst-audit13mod1.so
1474
1475 $(objpfx)tst-auditmany.out: $(objpfx)tst-auditmanymod1.so \
1476 $(objpfx)tst-auditmanymod2.so $(objpfx)tst-auditmanymod3.so \
1477 $(objpfx)tst-auditmanymod4.so $(objpfx)tst-auditmanymod5.so \
1478 $(objpfx)tst-auditmanymod6.so $(objpfx)tst-auditmanymod7.so \
1479 $(objpfx)tst-auditmanymod8.so $(objpfx)tst-auditmanymod9.so
1480 tst-auditmany-ENV = \
1481 LD_AUDIT=tst-auditmanymod1.so:tst-auditmanymod2.so:tst-auditmanymod3.so:tst-auditmanymod4.so:tst-auditmanymod5.so:tst-auditmanymod6.so:tst-auditmanymod7.so:tst-auditmanymod8.so:tst-auditmanymod9.so
1482
1483 # tst-sonamemove links against an older implementation of the library.
1484 LDFLAGS-tst-sonamemove-linkmod1.so = \
1485 -Wl,--version-script=tst-sonamemove-linkmod1.map \
1486 -Wl,-soname,tst-sonamemove-runmod1.so
1487 LDFLAGS-tst-sonamemove-runmod1.so = -Wl,--no-as-needed \
1488 -Wl,--version-script=tst-sonamemove-runmod1.map \
1489 -Wl,-soname,tst-sonamemove-runmod1.so
1490 LDFLAGS-tst-sonamemove-runmod2.so = \
1491 -Wl,--version-script=tst-sonamemove-runmod2.map \
1492 -Wl,-soname,tst-sonamemove-runmod2.so
1493 $(objpfx)tst-sonamemove-runmod1.so: $(objpfx)tst-sonamemove-runmod2.so
1494 # Link against the link module, but depend on the run-time modules
1495 # for execution.
1496 $(objpfx)tst-sonamemove-link: $(objpfx)tst-sonamemove-linkmod1.so
1497 $(objpfx)tst-sonamemove-link.out: \
1498 $(objpfx)tst-sonamemove-runmod1.so \
1499 $(objpfx)tst-sonamemove-runmod2.so
1500 $(objpfx)tst-sonamemove-dlopen: $(libdl)
1501 $(objpfx)tst-sonamemove-dlopen.out: \
1502 $(objpfx)tst-sonamemove-runmod1.so \
1503 $(objpfx)tst-sonamemove-runmod2.so
1504
1505 # Override -z defs, so that we can reference an undefined symbol.
1506 # Force lazy binding for the same reason.
1507 LDFLAGS-tst-latepthreadmod.so = \
1508 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
1509 # Do not optimize sibling calls as the test relies on a JMP_SLOT relocation for
1510 # function this_function_is_not_defined.
1511 CFLAGS-tst-latepthreadmod.c += -fno-optimize-sibling-calls
1512 $(objpfx)tst-latepthreadmod.so: $(shared-thread-library)
1513 $(objpfx)tst-latepthread: $(libdl)
1514 $(objpfx)tst-latepthread.out: $(objpfx)tst-latepthreadmod.so
1515
1516 # The test modules are parameterized by preprocessor macros.
1517 $(patsubst %,$(objpfx)%.os,$(tst-tls-many-dynamic-modules)): \
1518 $(objpfx)tst-tls-manydynamic%mod.os : tst-tls-manydynamicmod.c
1519 $(compile-command.c) \
1520 -DNAME=tls_global_$* -DSETTER=set_value_$* -DGETTER=get_value_$*
1521 $(objpfx)tst-tls-manydynamic: $(libdl) $(shared-thread-library)
1522 $(objpfx)tst-tls-manydynamic.out: \
1523 $(patsubst %,$(objpfx)%.so,$(tst-tls-many-dynamic-modules))
1524
1525 tst-prelink-ENV = LD_TRACE_PRELINKING=1
1526
1527 $(objpfx)tst-prelink-conflict.out: $(objpfx)tst-prelink.out
1528 grep stdout $< | grep conflict | $(AWK) '{ print $$10, $$11 }' > $@
1529
1530 $(objpfx)tst-prelink-cmp.out: tst-prelink.exp \
1531 $(objpfx)tst-prelink-conflict.out
1532 cmp $^ > $@; \
1533 $(evaluate-test)
1534
1535 $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
1536 $(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' \
1537 '$(run-program-env)' > $@; \
1538 $(evaluate-test)
1539
1540 $(objpfx)tst-dlsym-error: $(libdl)
1541
1542 # Test static linking of all the libraries we can possibly link
1543 # together. Note that in some configurations this may be less than the
1544 # complete list of libraries we build but we try to maxmimize this list.
1545 $(objpfx)tst-linkall-static: \
1546 $(common-objpfx)math/libm.a \
1547 $(common-objpfx)resolv/libresolv.a \
1548 $(common-objpfx)dlfcn/libdl.a \
1549 $(common-objpfx)login/libutil.a \
1550 $(common-objpfx)rt/librt.a \
1551 $(common-objpfx)resolv/libanl.a \
1552 $(static-thread-library)
1553
1554 ifeq ($(build-crypt),yes)
1555 # If we are using NSS crypto and we have the ability to link statically
1556 # then we include libcrypt.a, otherwise we leave out libcrypt.a and
1557 # link as much as we can into the tst-linkall-static test. This assumes
1558 # that linking with libcrypt.a does everything required to include the
1559 # static NSS crypto library.
1560 ifeq (yesyes,$(nss-crypt)$(static-nss-crypt))
1561 $(objpfx)tst-linkall-static: \
1562 $(common-objpfx)crypt/libcrypt.a
1563 endif
1564 # If we are not using NSS crypto then we always have the ability to link
1565 # with libcrypt.a.
1566 ifeq (no,$(nss-crypt))
1567 $(objpfx)tst-linkall-static: \
1568 $(common-objpfx)crypt/libcrypt.a
1569 endif
1570 endif
1571
1572 # The application depends on the DSO, and the DSO loads the plugin.
1573 # The plugin also depends on the DSO. This creates the circular
1574 # dependency via dlopen that we're testing to make sure works.
1575 $(objpfx)tst-nodelete-dlclose-dso.so: $(libdl)
1576 $(objpfx)tst-nodelete-dlclose-plugin.so: $(objpfx)tst-nodelete-dlclose-dso.so
1577 $(objpfx)tst-nodelete-dlclose: $(objpfx)tst-nodelete-dlclose-dso.so
1578 $(objpfx)tst-nodelete-dlclose.out: $(objpfx)tst-nodelete-dlclose-dso.so \
1579 $(objpfx)tst-nodelete-dlclose-plugin.so
1580
1581 tst-env-setuid-ENV = MALLOC_CHECK_=2 MALLOC_MMAP_THRESHOLD_=4096 \
1582 LD_HWCAP_MASK=0x1
1583 tst-env-setuid-tunables-ENV = \
1584 GLIBC_TUNABLES=glibc.malloc.check=2:glibc.malloc.mmap_threshold=4096
1585
1586 $(objpfx)tst-debug1: $(libdl)
1587 $(objpfx)tst-debug1.out: $(objpfx)tst-debug1mod1.so
1588
1589 $(objpfx)tst-debug1mod1.so: $(objpfx)testobj1.so
1590 $(OBJCOPY) --only-keep-debug $< $@
1591
1592 $(objpfx)tst-main1: $(objpfx)tst-main1mod.so
1593 CRT-tst-main1 := $(csu-objpfx)crt1.o
1594 tst-main1-no-pie = yes
1595 LDLIBS-tst-main1 = $(libsupport)
1596 tst-main1mod.so-no-z-defs = yes
1597
1598 LDLIBS-tst-absolute-sym-lib.so = tst-absolute-sym-lib.lds
1599 $(objpfx)tst-absolute-sym-lib.so: $(LDLIBS-tst-absolute-sym-lib.so)
1600 $(objpfx)tst-absolute-sym: $(objpfx)tst-absolute-sym-lib.so
1601
1602 LDLIBS-tst-absolute-zero-lib.so = tst-absolute-zero-lib.lds
1603 $(objpfx)tst-absolute-zero-lib.so: $(LDLIBS-tst-absolute-zero-lib.so)
1604 $(objpfx)tst-absolute-zero: $(objpfx)tst-absolute-zero-lib.so
1605
1606 # Both the main program and the DSO for tst-libc_dlvsym need to link
1607 # against libdl.
1608 $(objpfx)tst-libc_dlvsym: $(libdl)
1609 $(objpfx)tst-libc_dlvsym-dso.so: $(libsupport) $(libdl)
1610 $(objpfx)tst-libc_dlvsym.out: $(objpfx)tst-libc_dlvsym-dso.so
1611 $(objpfx)tst-libc_dlvsym-static: $(common-objpfx)dlfcn/libdl.a
1612 tst-libc_dlvsym-static-ENV = \
1613 LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)dlfcn
1614 $(objpfx)tst-libc_dlvsym-static.out: $(objpfx)tst-libc_dlvsym-dso.so
1615
1616 $(objpfx)tst-big-note: $(objpfx)tst-big-note-lib.so
1617 # Avoid creating an ABI tag note, which may come before the
1618 # artificial, large note in tst-big-note-lib.o and invalidate the
1619 # test.
1620 $(objpfx)tst-big-note-lib.so: $(objpfx)tst-big-note-lib.o
1621 $(LINK.o) -shared -o $@ $(LDFLAGS.so) $<
1622
1623 $(objpfx)tst-unwind-ctor: $(objpfx)tst-unwind-ctor-lib.so
1624
1625 CFLAGS-tst-unwind-main.c += -funwind-tables -DUSE_PTHREADS=0
1626
1627 $(objpfx)tst-initfinilazyfail: $(libdl)
1628 $(objpfx)tst-initfinilazyfail.out: \
1629 $(objpfx)tst-initlazyfailmod.so $(objpfx)tst-finilazyfailmod.so
1630 # Override -z defs, so that we can reference an undefined symbol.
1631 # Force lazy binding for the same reason.
1632 LDFLAGS-tst-initlazyfailmod.so = \
1633 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
1634 LDFLAGS-tst-finilazyfailmod.so = \
1635 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
1636
1637 $(objpfx)tst-dlopenfail: $(libdl)
1638 $(objpfx)tst-dlopenfail.out: \
1639 $(objpfx)tst-dlopenfailmod1.so $(objpfx)tst-dlopenfailmod2.so
1640 # Order matters here. tst-dlopenfaillinkmod.so's soname ensures a
1641 # run-time loader failure. --as-needed breaks this test because
1642 # nothing actually references tst-dlopenfailmod2.so (with its soname
1643 # tst-dlopenfail-missingmod.so).
1644 LDFLAGS-tst-dlopenfailmod1.so = -Wl,--no-as-needed
1645 $(objpfx)tst-dlopenfailmod1.so: \
1646 $(shared-thread-library) $(objpfx)tst-dlopenfaillinkmod.so
1647 LDFLAGS-tst-dlopenfaillinkmod.so = -Wl,-soname,tst-dlopenfail-missingmod.so
1648 $(objpfx)tst-dlopenfailmod2.so: $(shared-thread-library)
1649 $(objpfx)tst-dlopenfail-2: $(libdl)
1650 $(objpfx)tst-dlopenfail.out: \
1651 $(objpfx)tst-dlopenfailmod1.so $(objpfx)tst-dlopenfailmod2.so \
1652 $(objpfx)tst-dlopenfailmod3.so
1653
1654 $(objpfx)tst-dlopen-nodelete-reloc: $(libdl)
1655 $(objpfx)tst-dlopen-nodelete-reloc.out: \
1656 $(objpfx)tst-dlopen-nodelete-reloc-mod1.so \
1657 $(objpfx)tst-dlopen-nodelete-reloc-mod2.so \
1658 $(objpfx)tst-dlopen-nodelete-reloc-mod3.so \
1659 $(objpfx)tst-dlopen-nodelete-reloc-mod4.so \
1660 $(objpfx)tst-dlopen-nodelete-reloc-mod5.so \
1661 $(objpfx)tst-dlopen-nodelete-reloc-mod6.so \
1662 $(objpfx)tst-dlopen-nodelete-reloc-mod7.so \
1663 $(objpfx)tst-dlopen-nodelete-reloc-mod8.so \
1664 $(objpfx)tst-dlopen-nodelete-reloc-mod9.so \
1665 $(objpfx)tst-dlopen-nodelete-reloc-mod10.so \
1666 $(objpfx)tst-dlopen-nodelete-reloc-mod11.so \
1667 $(objpfx)tst-dlopen-nodelete-reloc-mod12.so \
1668 $(objpfx)tst-dlopen-nodelete-reloc-mod13.so \
1669 $(objpfx)tst-dlopen-nodelete-reloc-mod14.so \
1670 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so \
1671 $(objpfx)tst-dlopen-nodelete-reloc-mod16.so \
1672 $(objpfx)tst-dlopen-nodelete-reloc-mod17.so
1673 tst-dlopen-nodelete-reloc-mod2.so-no-z-defs = yes
1674 LDFLAGS-tst-dlopen-nodelete-reloc-mod2.so = -Wl,-z,nodelete
1675 $(objpfx)tst-dlopen-nodelete-reloc-mod4.so: \
1676 $(objpfx)tst-dlopen-nodelete-reloc-mod3.so
1677 LDFLAGS-tst-dlopen-nodelete-reloc-mod4.so = -Wl,--no-as-needed
1678 $(objpfx)tst-dlopen-nodelete-reloc-mod5.so: \
1679 $(objpfx)tst-dlopen-nodelete-reloc-mod4.so
1680 LDFLAGS-tst-dlopen-nodelete-reloc-mod5.so = -Wl,-z,nodelete,--no-as-needed
1681 tst-dlopen-nodelete-reloc-mod5.so-no-z-defs = yes
1682 tst-dlopen-nodelete-reloc-mod7.so-no-z-defs = yes
1683 $(objpfx)tst-dlopen-nodelete-reloc-mod8.so: $(libdl)
1684 $(objpfx)tst-dlopen-nodelete-reloc-mod10.so: $(libdl)
1685 tst-dlopen-nodelete-reloc-mod11.so-no-z-defs = yes
1686 $(objpfx)tst-dlopen-nodelete-reloc-mod13.so: \
1687 $(objpfx)tst-dlopen-nodelete-reloc-mod12.so
1688 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so: \
1689 $(objpfx)tst-dlopen-nodelete-reloc-mod14.so
1690 tst-dlopen-nodelete-reloc-mod16.so-no-z-defs = yes
1691 $(objpfx)tst-dlopen-nodelete-reloc-mod16.so: \
1692 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so
1693 LDFLAGS-tst-dlopen-nodelete-reloc-mod16.so = -Wl,--no-as-needed
1694 $(objpfx)tst-dlopen-nodelete-reloc-mod17.so: \
1695 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so \
1696 $(objpfx)tst-dlopen-nodelete-reloc-mod16.so
1697 LDFLAGS-tst-dlopen-nodelete-reloc-mod17.so = -Wl,--no-as-needed
1698
1699 $(objpfx)tst-ldconfig-ld_so_conf-update.out: $(objpfx)tst-ldconfig-ld-mod.so
1700 $(objpfx)tst-ldconfig-ld_so_conf-update: $(libdl)