]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/Makefile
elf: Process glibc-hwcaps subdirectories in ldconfig
[thirdparty/glibc.git] / elf / Makefile
CommitLineData
d614a753 1# Copyright (C) 1995-2020 Free Software Foundation, Inc.
01cc0be6
RM
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
41bdb6e2
AJ
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.
01cc0be6
RM
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
41bdb6e2 12# Lesser General Public License for more details.
01cc0be6 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6 15# License along with the GNU C Library; if not, see
5a82c748 16# <https://www.gnu.org/licenses/>.
01cc0be6 17
3db52d94
UD
18# Makefile for elf subdirectory of GNU C Library.
19
d66e34cd
RM
20subdir := elf
21
f57f8055
RM
22include ../Makeconfig
23
9fbdeb41 24headers = elf.h bits/elfclass.h link.h bits/link.h
ac9e0e5e 25routines = $(all-dl-routines) dl-support dl-iteratephdr \
d61ef735 26 dl-addr dl-addr-obj enbl-secure dl-profstub \
9d7a3741 27 dl-origin dl-libc dl-sym dl-sysdep dl-error \
ec935dea 28 dl-reloc-static-pie libc_early_init
266180eb
RM
29
30# The core dynamic linking functions are in libc for the static and
31# profiled libraries.
56f8d442 32dl-routines = $(addprefix dl-,load lookup object reloc deps \
9e78f6f6 33 runtime init fini debug misc \
eb73083e 34 version profile tls origin scope \
52a01100 35 execstack open close trampoline \
ec935dea 36 exception sort-maps lookup-direct \
1daccf40
FW
37 call-libc-early-init write \
38 thread_gscope_wait)
f57f8055
RM
39ifeq (yes,$(use-ldconfig))
40dl-routines += dl-cache
41endif
67e58f39 42
6765d5d3 43ifneq (no,$(have-tunables))
67e58f39 44dl-routines += dl-tunables
6765d5d3 45tunables-type = $(addprefix TUNABLES_FRONTEND_,$(have-tunables))
36975e8e 46CPPFLAGS-dl-tunables.c += -DTUNABLES_FRONTEND=$(tunables-type)
9dd409a5
SP
47
48# Make sure that the compiler does not insert any library calls in tunables
49# code paths.
50ifeq (yes,$(have-loop-to-function))
36975e8e 51CFLAGS-dl-tunables.c += -fno-tree-loop-distribute-patterns
9dd409a5 52endif
67e58f39
SP
53endif
54
b79f74cd 55all-dl-routines = $(dl-routines) $(sysdep-dl-routines)
266180eb 56# But they are absent from the shared libc, because that code is in ld.so.
368a8dec 57elide-routines.os = $(all-dl-routines) dl-support enbl-secure dl-origin \
1daccf40
FW
58 dl-sysdep dl-exception dl-reloc-static-pie \
59 thread_gscope_wait
266180eb
RM
60
61# ld.so uses those routines, plus some special stuff for being the program
62# interpreter and operating independent of libc.
9e78f6f6 63rtld-routines = rtld $(all-dl-routines) dl-sysdep dl-environ dl-minimal \
dad90d52
FW
64 dl-error-minimal dl-conflict dl-hwcaps dl-hwcaps_split dl-hwcaps-subdirs \
65 dl-usage
e39e6956 66all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines)
b79f74cd 67
36975e8e
L
68CFLAGS-dl-runtime.c += -fexceptions -fasynchronous-unwind-tables
69CFLAGS-dl-lookup.c += -fexceptions -fasynchronous-unwind-tables
70CFLAGS-dl-iterate-phdr.c += $(uses-callbacks)
80b54217 71
c72e5cd8
SL
72# On targets without __builtin_memset, rtld.c uses a hand-coded loop
73# in _dl_start. Make sure this isn't turned into a call to regular memset.
74ifeq (yes,$(have-loop-to-function))
75CFLAGS-rtld.c += -fno-tree-loop-distribute-patterns
76endif
77
995635f9
NA
78# Compile rtld itself without stack protection.
79# Also compile all routines in the static library that are elided from
80# the shared libc because they are in libc.a in the same way.
81
82define elide-stack-protector
83$(if $(filter $(@F),$(patsubst %,%$(1),$(2))), $(no-stack-protector))
84endef
85
86CFLAGS-.o += $(call elide-stack-protector,.o,$(elide-routines.os))
87CFLAGS-.op += $(call elide-stack-protector,.op,$(elide-routines.os))
88CFLAGS-.os += $(call elide-stack-protector,.os,$(all-rtld-routines))
89
74bd2300 90ifeq ($(unwind-find-fde),yes)
a0dcb689 91routines += unwind-dw2-fde-glibc
44094580 92shared-only-routines += unwind-dw2-fde-glibc
74bd2300
UD
93endif
94
f08e9a26
RM
95before-compile += $(objpfx)trusted-dirs.h
96generated += trusted-dirs.h trusted-dirs.st for-renamed/renamed.so
97generated-dirs += for-renamed
fd26970f 98
3f2e46a4 99ifeq ($(build-shared),yes)
a0edd63e 100ld-map = $(common-objpfx)ld.map
bdd421cc
UD
101endif
102
d66e34cd 103ifeq (yes,$(build-shared))
ce12fc71 104extra-objs = $(all-rtld-routines:%=%.os) sofini.os interp.os
40c4c9b5 105generated += librtld.os dl-allobjs.os ld.so ldd
aaa8cb4b 106install-others = $(inst_rtlddir)/$(rtld-installed-name)
6c3ebebd 107install-bin-script = ldd
f49bc43f 108endif
86d2c878 109
fe658845
RM
110others = sprof sln
111install-bin = sprof
9d141cae
UD
112others-static = sln
113install-rootsbin = sln
95f5a9a8
JM
114sln-modules := static-stubs
115extra-objs += $(sln-modules:=.o)
ae828bc6 116
591e1ffb 117ifeq (yes,$(use-ldconfig))
99ac5e47 118ifeq (yes,$(build-shared))
e1586792 119others-static += ldconfig
da2d1bc5 120others += ldconfig
9d141cae 121install-rootsbin += ldconfig
591e1ffb 122
73b6e50a
FW
123ldconfig-modules := cache readlib xmalloc xstrdup chroot_canon static-stubs \
124 stringtable
591e1ffb 125extra-objs += $(ldconfig-modules:=.o)
7b3ce395 126others-extras = $(ldconfig-modules)
6103ae3b
TS
127endif
128endif
591e1ffb
UD
129
130# To find xmalloc.c and xstrdup.c
131vpath %.c ../locale/programs
132
b93834ef 133ifeq ($(build-shared),yes)
a9171047
UD
134extra-objs += sotruss-lib.os sotruss-lib.so
135install-others += $(inst_auditdir)/sotruss-lib.so
b0316e56 136install-bin-script += sotruss
a9171047 137generated += sotruss
9a484857 138libof-sotruss-lib = extramodules
c57afec0 139LDFLAGS-sotruss-lib.so += $(z-now-$(bind-now))
a6928d51 140$(objpfx)sotruss-lib.so: $(objpfx)sotruss-lib.os
a9171047
UD
141 $(build-module-asneeded)
142$(objpfx)sotruss-lib.so: $(common-objpfx)libc.so $(objpfx)ld.so \
143 $(common-objpfx)libc_nonshared.a
144
b93834ef
MF
145$(objpfx)sotruss: sotruss.sh $(common-objpfx)config.make
146 sed -e 's%@BASH@%$(BASH)%g' \
a9171047 147 -e 's%@VERSION@%$(version)%g' \
314f6dee 148 -e 's%@TEXTDOMAINDIR@%$(localedir)%g' \
8b748aed
JM
149 -e 's%@PREFIX@%$(prefix)%g' \
150 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
151 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
152 < $< > $@.new
a9171047
UD
153 chmod 555 $@.new
154 mv -f $@.new $@
155$(inst_auditdir)/sotruss-lib.so: $(objpfx)sotruss-lib.so $(+force)
156 $(do-install-program)
157endif
158
7c3018f9
ZW
159tests-static-normal := tst-leaks1-static tst-array1-static tst-array5-static \
160 tst-dl-iter-static \
a0f83f0b 161 tst-tlsalign-static tst-tlsalign-extern-static \
706ad1e7
FW
162 tst-linkall-static tst-env-setuid tst-env-setuid-tunables \
163 tst-single_threaded-static tst-single_threaded-pthread-static
164
7c3018f9 165tests-static-internal := tst-tls1-static tst-tls2-static \
2000067a 166 tst-ptrguard1-static tst-stackguard1-static \
82eef55f 167 tst-tls1-static-non-pie tst-libc_dlvsym-static
2000067a 168
a67029ff 169CRT-tst-tls1-static-non-pie := $(csu-objpfx)crt1.o
9d7a3741 170tst-tls1-static-non-pie-no-pie = yes
7c3018f9 171
591236f1
AH
172tests-container := \
173 tst-ldconfig-bad-aux-cache \
174 tst-ldconfig-ld_so_conf-update
481c30cb 175
7c3018f9
ZW
176tests := tst-tls9 tst-leaks1 \
177 tst-array1 tst-array2 tst-array3 tst-array4 tst-array5 \
785969a0 178 tst-auxv tst-stringtable
7c3018f9
ZW
179tests-internal := tst-tls1 tst-tls2 $(tests-static-internal)
180tests-static := $(tests-static-normal) $(tests-static-internal)
181
2119dcfa 182ifeq (yes,$(build-shared))
706ad1e7
FW
183tests-static += tst-tls9-static tst-single_threaded-static-dlopen
184static-dlopen-environment = \
3dbbd2ff 185 LD_LIBRARY_PATH=$(ld-library-path):$(common-objpfx)dlfcn
706ad1e7
FW
186tst-tls9-static-ENV = $(static-dlopen-environment)
187tst-single_threaded-static-dlopen-ENV = $(static-dlopen-environment)
7c3018f9
ZW
188
189tests += restest1 preloadtest loadfail multiload origtest resolvfail \
190 constload1 order noload filter \
edcfe9ea 191 reldep reldep2 reldep3 reldep4 nodelete nodelete2 \
7c3018f9 192 nodlopen nodlopen2 lateglobal initfirst global \
cfaf5e56 193 restest2 next dblload dblunload reldep5 reldep6 reldep7 reldep8 \
7c3018f9 194 tst-tls4 tst-tls5 \
d78efd9f 195 tst-tls10 tst-tls11 tst-tls12 tst-tls13 tst-tls14 tst-tls15 \
d26dfc60 196 tst-tls16 tst-tls17 tst-tls18 tst-tls19 tst-tls-dlinfo \
b8114edd 197 tst-align tst-align2 \
d78efd9f 198 tst-dlmodcount tst-dlopenrpath tst-deep1 \
7c3018f9 199 tst-dlmopen1 tst-dlmopen3 \
39dd69df 200 unload3 unload4 unload5 unload6 unload7 unload8 tst-global1 order2 \
d0503676 201 tst-audit1 tst-audit2 tst-audit8 tst-audit9 \
7c3018f9 202 tst-addr1 tst-thrlock \
edcfe9ea 203 tst-unique1 tst-unique2 $(if $(CXX),tst-unique3 tst-unique4 \
365624e2 204 tst-nodelete tst-dlopen-nodelete-reloc) \
c61b4d41 205 tst-initorder tst-initorder2 tst-relsort1 tst-null-argv \
7c3018f9 206 tst-tlsalign tst-tlsalign-extern tst-nodelete-opened \
9e78f6f6 207 tst-nodelete2 tst-audit11 tst-audit12 tst-dlsym-error tst-noload \
592d5c75 208 tst-latepthread tst-tls-manydynamic tst-nodelete-dlclose \
6ca8284e 209 tst-debug1 tst-main1 tst-absolute-sym tst-absolute-zero tst-big-note \
f0b2132b 210 tst-unwind-ctor tst-unwind-main tst-audit13 \
7d3db434 211 tst-sonamemove-link tst-sonamemove-dlopen tst-dlopen-tlsmodid \
a332bd15 212 tst-dlopen-self tst-auditmany tst-initfinilazyfail tst-dlopenfail \
eb447b7b 213 tst-dlopenfail-2 \
8f7a75d7 214 tst-filterobj tst-filterobj-dlopen tst-auxobj tst-auxobj-dlopen \
706ad1e7 215 tst-audit14 tst-audit15 tst-audit16 \
ffb17e7b 216 tst-single_threaded tst-single_threaded-pthread \
dad90d52
FW
217 tst-tls-ie tst-tls-ie-dlmopen argv0test \
218 tst-glibc-hwcaps tst-glibc-hwcaps-prepend tst-glibc-hwcaps-mask
aff4519d 219# reldep9
7c3018f9
ZW
220tests-internal += loadtest unload unload2 circleload1 \
221 neededtest neededtest2 neededtest3 neededtest4 \
222 tst-tls3 tst-tls6 tst-tls7 tst-tls8 tst-dlmopen2 \
a5275ba5 223 tst-ptrguard1 tst-stackguard1 tst-libc_dlvsym \
dad90d52 224 tst-create_format1 tst-tls-surplus tst-dl-hwcaps_split
7d3db434
FW
225tests-container += tst-pldd tst-dlopen-tlsmodid-container \
226 tst-dlopen-self-container
5a384a91 227test-srcs = tst-pathopt
33f85a3f
UD
228selinux-enabled := $(shell cat /selinux/enforce 2> /dev/null)
229ifneq ($(selinux-enabled),1)
c70ba488 230tests-execstack-yes = tst-execstack tst-execstack-needed tst-execstack-prog
33f85a3f 231endif
2f512715 232endif
b8114edd 233tests += $(tests-execstack-$(have-z-execstack))
03ac099f 234ifeq ($(run-built-tests),yes)
0b20a9e8 235tests-special += $(objpfx)tst-leaks1-mem.out \
920b35c9
FW
236 $(objpfx)tst-leaks1-static-mem.out $(objpfx)noload-mem.out \
237 $(objpfx)tst-ldconfig-X.out
6d5c57fa 238endif
60a23f5a 239tlsmod17a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
41e25904 240tlsmod18a-suffixes = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
1f20b93a
AS
241tlsmod17a-modules = $(addprefix tst-tlsmod17a, $(tlsmod17a-suffixes))
242tlsmod18a-modules = $(addprefix tst-tlsmod18a, $(tlsmod17a-suffixes))
01b23a30
FW
243one-hundred = $(foreach x,0 1 2 3 4 5 6 7 8 9, \
244 0$x 1$x 2$x 3$x 4$x 5$x 6$x 7$x 8$x 9$x)
245tst-tls-many-dynamic-modules := \
246 $(foreach n,$(one-hundred),tst-tls-manydynamic$(n)mod)
b4bcb3ae
AS
247extra-test-objs += $(tlsmod17a-modules:=.os) $(tlsmod18a-modules:=.os) \
248 tst-tlsalign-vars.o
249test-extras += tst-tlsmod17a tst-tlsmod18a tst-tlsalign-vars
a25f2023 250modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
2b7238dd 251 testobj1_1 failobj constload2 constload3 unloadmod \
9fb11d4c 252 dep1 dep2 dep3 dep4 vismod1 vismod2 vismod3 \
11bf311e
UD
253 nodelmod1 nodelmod2 nodelmod3 nodelmod4 \
254 nodel2mod1 nodel2mod2 nodel2mod3 \
255 nodlopenmod nodlopenmod2 filtmod1 filtmod2 \
ceb579a3 256 reldepmod1 reldepmod2 reldepmod3 reldepmod4 nextmod1 nextmod2 \
1826d793 257 reldep4mod1 reldep4mod2 reldep4mod3 reldep4mod4 \
8edd9172 258 neededobj1 neededobj2 neededobj3 neededobj4 \
273a3cfb 259 neededobj5 neededobj6 firstobj globalmod1 \
3fac0001 260 unload2mod unload2dep ltglobmod1 ltglobmod2 pathoptobj \
c47e78b1 261 dblloadmod1 dblloadmod2 dblloadmod3 reldepmod5 reldepmod6 \
a3d731d3 262 reldep6mod0 reldep6mod1 reldep6mod2 reldep6mod3 reldep6mod4 \
a41d8a74 263 reldep7mod1 reldep7mod2 \
6d78cd00 264 tst-tlsmod1 tst-tlsmod2 tst-tlsmod3 tst-tlsmod4 \
94c24227
UD
265 tst-tlsmod5 tst-tlsmod6 tst-tlsmod7 tst-tlsmod8 \
266 tst-tlsmod9 tst-tlsmod10 tst-tlsmod11 tst-tlsmod12 \
99fe3b0e 267 tst-tlsmod13 tst-tlsmod13a tst-tlsmod14a tst-tlsmod14b \
4c533566 268 tst-tlsmod15a tst-tlsmod15b tst-tlsmod16a tst-tlsmod16b \
1f20b93a 269 $(tlsmod17a-modules) tst-tlsmod17b $(tlsmod18a-modules) \
d26dfc60 270 tst-tls19mod1 tst-tls19mod2 tst-tls19mod3 \
6d78cd00 271 circlemod1 circlemod1a circlemod2 circlemod2a \
cfaf5e56 272 circlemod3 circlemod3a \
aff4519d 273 reldep8mod1 reldep8mod2 reldep8mod3 \
06f6ca90 274 reldep9mod1 reldep9mod2 reldep9mod3 \
be184b1d
UD
275 tst-alignmod tst-alignmod2 \
276 $(modules-execstack-$(have-z-execstack)) \
c0f62c56 277 tst-dlopenrpathmod tst-deep1mod1 tst-deep1mod2 tst-deep1mod3 \
fab0abb4 278 tst-dlmopen1mod tst-auditmod1 \
20fe49b9 279 unload3mod1 unload3mod2 unload3mod3 unload3mod4 \
3d786f19 280 unload4mod1 unload4mod2 unload4mod3 unload4mod4 \
bfc832cc 281 unload6mod1 unload6mod2 unload6mod3 \
1ee2ff20 282 unload7mod1 unload7mod2 \
39dd69df 283 unload8mod1 unload8mod1x unload8mod2 unload8mod3 \
415ac3df
UD
284 order2mod1 order2mod2 order2mod3 order2mod4 \
285 tst-unique1mod1 tst-unique1mod2 \
968dad0a 286 tst-unique2mod1 tst-unique2mod2 \
d0503676 287 tst-auditmod9a tst-auditmod9b \
02d5e5d9 288 $(if $(CXX),tst-unique3lib tst-unique3lib2 tst-unique4lib \
edcfe9ea 289 tst-nodelete-uniquemod tst-nodelete-rtldmod \
365624e2
FW
290 tst-nodelete-zmod \
291 tst-dlopen-nodelete-reloc-mod1 \
292 tst-dlopen-nodelete-reloc-mod2 \
293 tst-dlopen-nodelete-reloc-mod3 \
294 tst-dlopen-nodelete-reloc-mod4 \
295 tst-dlopen-nodelete-reloc-mod5 \
296 tst-dlopen-nodelete-reloc-mod6 \
297 tst-dlopen-nodelete-reloc-mod7 \
298 tst-dlopen-nodelete-reloc-mod8 \
299 tst-dlopen-nodelete-reloc-mod9 \
300 tst-dlopen-nodelete-reloc-mod10 \
301 tst-dlopen-nodelete-reloc-mod11 \
302 tst-dlopen-nodelete-reloc-mod12 \
303 tst-dlopen-nodelete-reloc-mod13 \
304 tst-dlopen-nodelete-reloc-mod14 \
305 tst-dlopen-nodelete-reloc-mod15 \
306 tst-dlopen-nodelete-reloc-mod16 \
307 tst-dlopen-nodelete-reloc-mod17) \
968dad0a
UD
308 tst-initordera1 tst-initorderb1 \
309 tst-initordera2 tst-initorderb2 \
e888bcbe 310 tst-initordera3 tst-initordera4 \
6ee65ed6
UD
311 tst-initorder2a tst-initorder2b tst-initorder2c \
312 tst-initorder2d \
e5088dc6 313 tst-relsort1mod1 tst-relsort1mod2 tst-array2dep \
b5fe8ec8 314 tst-array5dep tst-null-argv-lib \
a1b85ae8
FW
315 tst-tlsalign-lib tst-nodelete-opened-lib tst-nodelete2mod \
316 tst-audit11mod1 tst-audit11mod2 tst-auditmod11 \
9e78f6f6 317 tst-audit12mod1 tst-audit12mod2 tst-audit12mod3 tst-auditmod12 \
57707b7f 318 tst-latepthreadmod $(tst-tls-many-dynamic-modules) \
5dba84b3 319 tst-nodelete-dlclose-dso tst-nodelete-dlclose-plugin \
0065aaaa 320 tst-main1mod tst-libc_dlvsym-dso tst-absolute-sym-lib \
b3fbfe81 321 tst-absolute-zero-lib tst-big-note-lib tst-unwind-ctor-lib \
f0b2132b 322 tst-audit13mod1 tst-sonamemove-linkmod1 \
c7bf5cea
FW
323 tst-sonamemove-runmod1 tst-sonamemove-runmod2 \
324 tst-auditmanymod1 tst-auditmanymod2 tst-auditmanymod3 \
325 tst-auditmanymod4 tst-auditmanymod5 tst-auditmanymod6 \
79e0cd7b 326 tst-auditmanymod7 tst-auditmanymod8 tst-auditmanymod9 \
f63b7381 327 tst-initlazyfailmod tst-finilazyfailmod \
591236f1 328 tst-dlopenfailmod1 tst-dlopenfaillinkmod tst-dlopenfailmod2 \
eb447b7b 329 tst-dlopenfailmod3 tst-ldconfig-ld-mod \
8f7a75d7 330 tst-filterobj-flt tst-filterobj-aux tst-filterobj-filtee \
706ad1e7
FW
331 tst-auditlogmod-1 tst-auditlogmod-2 tst-auditlogmod-3 \
332 tst-single_threaded-mod1 tst-single_threaded-mod2 \
ffb17e7b
SN
333 tst-single_threaded-mod3 tst-single_threaded-mod4 \
334 tst-tls-ie-mod0 tst-tls-ie-mod1 tst-tls-ie-mod2 \
335 tst-tls-ie-mod3 tst-tls-ie-mod4 tst-tls-ie-mod5 \
dad90d52
FW
336 tst-tls-ie-mod6 libmarkermod1-1 libmarkermod1-2 libmarkermod1-3 \
337 libmarkermod2-1 libmarkermod2-2 \
338 libmarkermod3-1 libmarkermod3-2 libmarkermod3-3 \
339 libmarkermod4-1 libmarkermod4-2 libmarkermod4-3 libmarkermod4-4 \
ffb17e7b 340
221e4bab
JM
341# Most modules build with _ISOMAC defined, but those filtered out
342# depend on internal headers.
343modules-names-tests = $(filter-out ifuncmod% tst-libc_dlvsym-dso tst-tlsmod%,\
344 $(modules-names))
0065aaaa 345
61655555
L
346ifeq (yes,$(have-mtls-dialect-gnu2))
347tests += tst-gnu2-tls1
348modules-names += tst-gnu2-tls1mod
349$(objpfx)tst-gnu2-tls1: $(objpfx)tst-gnu2-tls1mod.so
350tst-gnu2-tls1mod.so-no-z-defs = yes
351CFLAGS-tst-gnu2-tls1mod.c += -mtls-dialect=gnu2
352endif
83569fb8
L
353ifeq (yes,$(have-protected-data))
354modules-names += tst-protected1moda tst-protected1modb
355tests += tst-protected1a tst-protected1b
356$(objpfx)tst-protected1a: $(addprefix $(objpfx),tst-protected1moda.so tst-protected1modb.so)
357$(objpfx)tst-protected1b: $(addprefix $(objpfx),tst-protected1modb.so tst-protected1moda.so)
358tst-protected1modb.so-no-z-defs = yes
0092d4da
RM
359# These tests fail with GCC versions prior to 5.1 and with some versions
360# of binutils. See https://sourceware.org/bugzilla/show_bug.cgi?id=17709
361# and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248 for details.
362# Perhaps in future we can make these XFAILs conditional on some detection
363# of compiler/linker behavior/version.
364test-xfail-tst-protected1a = yes
365test-xfail-tst-protected1b = yes
83569fb8 366endif
f17ed1a9
UD
367ifeq (yesyes,$(have-fpie)$(build-shared))
368modules-names += tst-piemod1
7d3db434
FW
369tests += tst-pie1 tst-pie2 tst-dlopen-pie tst-dlopen-tlsmodid-pie \
370 tst-dlopen-self-pie
371tests-pie += tst-pie1 tst-pie2 tst-dlopen-tlsmodid-pie tst-dlopen-self-pie
3093fd5e 372ifeq (yes,$(have-protected-data))
ef4ad06f
L
373tests += vismain
374tests-pie += vismain
36975e8e 375CFLAGS-vismain.c += $(PIE-ccflag)
f17ed1a9 376endif
3093fd5e 377endif
2abf9ff1 378modules-execstack-yes = tst-execstack-mod
376e973a 379extra-test-objs += $(addsuffix .os,$(strip $(modules-names)))
dc18d4d8 380
c259196b
FW
381# filtmod1.so, tst-big-note-lib.so have special rules.
382modules-names-nobuild := filtmod1 tst-big-note-lib
aed48a2a 383
7c3018f9
ZW
384tests += $(tests-static)
385
92ad88fe 386ifeq (yes,$(have-ifunc))
7c3018f9 387tests-ifuncstatic := ifuncmain1static ifuncmain1picstatic \
2f083d75 388 ifuncmain2static ifuncmain2picstatic \
3c30afc8
L
389 ifuncmain4static ifuncmain4picstatic \
390 ifuncmain5static ifuncmain5picstatic \
cc3e573c
FW
391 ifuncmain7static ifuncmain7picstatic \
392 ifuncmain9static ifuncmain9picstatic
7c3018f9
ZW
393tests-static += $(tests-ifuncstatic)
394tests-internal += $(tests-ifuncstatic)
2f083d75 395ifeq (yes,$(build-shared))
4db71d2f 396tests += tst-ifunc-fault-lazy tst-ifunc-fault-bindnow
cc3e573c 397# Note: sysdeps/x86_64/ifuncmain8.c uses ifuncmain8.
7c3018f9
ZW
398tests-internal += \
399 ifuncmain1 ifuncmain1pic ifuncmain1vis ifuncmain1vispic \
2f083d75 400 ifuncmain1staticpic \
3c30afc8
L
401 ifuncmain2 ifuncmain2pic ifuncmain3 ifuncmain4 \
402 ifuncmain5 ifuncmain5pic ifuncmain5staticpic \
cc3e573c
FW
403 ifuncmain7 ifuncmain7pic \
404 ifuncmain9 ifuncmain9pic
1f20b93a
AS
405ifunc-test-modules = ifuncdep1 ifuncdep1pic ifuncdep2 ifuncdep2pic \
406 ifuncdep5 ifuncdep5pic
407extra-test-objs += $(ifunc-test-modules:=.o)
7c3018f9 408test-internal-extras += $(ifunc-test-modules)
2f083d75 409ifeq (yes,$(have-fpie))
1f20b93a 410ifunc-pie-tests = ifuncmain1pie ifuncmain1vispie ifuncmain1staticpie \
cc3e573c 411 ifuncmain5pie ifuncmain6pie ifuncmain7pie ifuncmain9pie
b5c45e83
AZ
412ifeq (yes,$(have-textrel_ifunc))
413ifunc-pie-tests += tst-ifunc-textrel
414endif
7c3018f9 415tests-internal += $(ifunc-pie-tests)
da62f81b 416tests-pie += $(ifunc-pie-tests)
2f083d75 417endif
3c30afc8 418modules-names += ifuncmod1 ifuncmod3 ifuncmod5 ifuncmod6
2f083d75
L
419endif
420endif
421
f214606a
JM
422ifeq (yes,$(build-shared))
423ifeq ($(run-built-tests),yes)
8692ebdb 424tests-special += $(objpfx)tst-pathopt.out $(objpfx)tst-rtld-load-self.out \
c6702789 425 $(objpfx)tst-rtld-preload.out $(objpfx)argv0test.out
f214606a
JM
426endif
427tests-special += $(objpfx)check-textrel.out $(objpfx)check-execstack.out \
0499a353 428 $(objpfx)check-wx-segment.out \
67c05796 429 $(objpfx)check-localplt.out $(objpfx)check-initfini.out
f214606a 430endif
aed48a2a 431
f214606a
JM
432ifeq ($(run-built-tests),yes)
433tests-special += $(objpfx)order-cmp.out $(objpfx)tst-array1-cmp.out \
434 $(objpfx)tst-array1-static-cmp.out \
435 $(objpfx)tst-array2-cmp.out $(objpfx)tst-array3-cmp.out \
436 $(objpfx)tst-array4-cmp.out $(objpfx)tst-array5-cmp.out \
437 $(objpfx)tst-array5-static-cmp.out $(objpfx)order2-cmp.out \
438 $(objpfx)tst-initorder-cmp.out \
439 $(objpfx)tst-initorder2-cmp.out $(objpfx)tst-unused-dep.out \
440 $(objpfx)tst-unused-dep-cmp.out
441endif
d66e34cd 442
1b6dd3f1 443check-abi: $(objpfx)check-abi-ld.out
f214606a 444tests-special += $(objpfx)check-abi-ld.out
fd54683c 445update-abi: update-abi-ld
c100dca3 446update-all-abi: update-all-abi-ld
fd54683c 447
89569c8b
L
448ifeq ($(have-glob-dat-reloc),yes)
449tests += tst-prelink
e13daad7
L
450# Don't compile tst-prelink.c with PIE for GLOB_DAT relocation.
451CFLAGS-tst-prelink.c += -fno-pie
ce16eb52 452tst-prelink-no-pie = yes
89569c8b
L
453ifeq ($(run-built-tests),yes)
454tests-special += $(objpfx)tst-prelink-cmp.out
455endif
456endif
457
d61ef735
CD
458# The test requires shared _and_ PIE because the executable
459# unit test driver must be able to link with the shared object
460# that is going to eventually go into an installed DSO.
461ifeq (yesyes,$(have-fpie)$(build-shared))
7c3018f9 462tests-internal += tst-_dl_addr_inside_object
d61ef735
CD
463tests-pie += tst-_dl_addr_inside_object
464$(objpfx)tst-_dl_addr_inside_object: $(objpfx)dl-addr-obj.os
465CFLAGS-tst-_dl_addr_inside_object.c += $(PIE-ccflag)
466endif
467
e69d994a
ZW
468# We can only test static libcrypt use if libcrypt has been built,
469# and either NSS crypto is not in use, or static NSS libraries are
470# available.
471ifeq ($(build-crypt),no)
472CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=0
473else
474ifeq ($(nss-crypt),no)
475CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=1
476else
477ifeq ($(static-nss-crypt),no)
478CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=0
479else
36975e8e 480CFLAGS-tst-linkall-static.c += -DUSE_CRYPT=1
e69d994a
ZW
481endif
482endif
84aa7516
CD
483endif
484
f214606a
JM
485include ../Rules
486
1ef32c3d 487ifeq (yes,$(build-shared))
a89d30d4
RM
488# Make sure these things are built in the `make lib' pass so they can be used
489# to run programs during the `make others' pass.
490lib-noranlib: $(objpfx)$(rtld-installed-name) \
491 $(addprefix $(objpfx),$(extra-objs))
492endif
493
db2286f6 494# Command to link into a larger single relocatable object.
b350afab 495reloc-link = $(LINK.o) -nostdlib -nostartfiles -r
db2286f6 496
a6928d51
RM
497$(objpfx)sotruss-lib.so: $(shlib-lds)
498
b79f74cd 499$(objpfx)dl-allobjs.os: $(all-rtld-routines:%=$(objpfx)%.os)
ce460d04 500 $(reloc-link) -o $@ $^
db2286f6 501
86d2c878 502# Link together the dynamic linker into a single relocatable object.
ce460d04
RM
503# First we do a link against libc_pic.a just to get a link map,
504# and discard the object produced by that link. From the link map
505# we can glean all the libc modules that need to go into the dynamic
506# linker. Then we do a recursive make that goes into all the subdirs
507# those modules come from and builds special rtld-foo.os versions that
508# are compiled with special flags, and puts these modules into rtld-libc.a
509# for us. Then we do the real link using rtld-libc.a instead of libc_pic.a.
510
abcc039d
FW
511# These symbols need to be stubbed out during symbol discovery because
512# their implementation is provided differently in rtld, and the symbol
513# discovery mechanism is not compatible with the libc implementation
514# when compiled for libc.
3a0ecccb
FW
515rtld-stubbed-symbols = \
516 calloc \
517 free \
518 malloc \
519 realloc \
abcc039d
FW
520
521# The GCC arguments that implement $(rtld-stubbed-symbols).
522rtld-stubbed-symbols-args = \
523 $(patsubst %,-Wl$(comma)--defsym=%=0, $(rtld-stubbed-symbols))
bc174f20
NA
524
525ifeq ($(have-ssp),yes)
abcc039d
FW
526# rtld is not built with the stack protector, so these references will
527# go away in the rebuilds.
528rtld-stubbed-symbols += __stack_chk_fail __stack_chk_fail_local
bc174f20
NA
529endif
530
ce460d04 531$(objpfx)librtld.map: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
240e87c2 532 @-rm -f $@T
abcc039d 533 $(reloc-link) -o $@.o $(rtld-stubbed-symbols-args) \
bc174f20 534 '-Wl,-(' $^ -lgcc '-Wl,-)' -Wl,-Map,$@T
ce460d04 535 rm -f $@.o
240e87c2 536 mv -f $@T $@
ce460d04 537
eb06601b 538# For lld, skip preceding addresses and values before matching the archive and the member.
ce460d04 539$(objpfx)librtld.mk: $(objpfx)librtld.map Makefile
b61c8aba 540 LC_ALL=C \
eb06601b 541 sed -n 's@^[0-9a-f ]*$(common-objpfx)\([^(]*\)(\([^)]*\.os\)) *.*$$@\1 \2@p' \
6461e577 542 $< | \
ce460d04
RM
543 while read lib file; do \
544 case $$lib in \
545 libc_pic.a) \
b61c8aba 546 LC_ALL=C fgrep -l /$$file \
ce460d04 547 $(common-objpfx)stamp.os $(common-objpfx)*/stamp.os | \
b61c8aba 548 LC_ALL=C \
ce460d04
RM
549 sed 's@^$(common-objpfx)\([^/]*\)/stamp\.os$$@rtld-\1'" +=$$file@"\
550 ;; \
551 */*.a) \
552 echo rtld-$${lib%%/*} += $$file ;; \
553 *) echo "Wasn't expecting $$lib($$file)" >&2; exit 1 ;; \
554 esac; \
555 done > $@T
b61c8aba
UD
556 echo rtld-subdirs = `LC_ALL=C sed 's/^rtld-\([^ ]*\).*$$/\1/' $@T \
557 | LC_ALL=C sort -u` >> $@T
ce460d04
RM
558 mv -f $@T $@
559
560$(objpfx)rtld-libc.a: $(objpfx)librtld.mk FORCE
561 $(MAKE) -f $< -f rtld-Rules
562
ce460d04 563$(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(objpfx)rtld-libc.a
b350afab 564 $(LINK.o) -nostdlib -nostartfiles -r -o $@ '-Wl,-(' $^ -lgcc '-Wl,-)' \
5896ffa8
UD
565 -Wl,-Map,$@.map
566
567generated += librtld.map librtld.mk rtld-libc.a librtld.os.map
d66e34cd 568
4df8c11d
UD
569z-now-yes = -Wl,-z,now
570
32e6df36 571$(objpfx)ld.so: $(objpfx)librtld.os $(ld-map)
f4a29fba
RM
572# Link into a temporary file so that we don't touch $@ at all
573# if the sanity check below fails.
574 $(LINK.o) -nostdlib -nostartfiles -shared -o $@.new \
4df8c11d 575 $(LDFLAGS-rtld) -Wl,-z,defs $(z-now-$(bind-now)) \
32e6df36 576 $(filter-out $(map-file),$^) $(load-map-file) \
4e34ac6a
RM
577 -Wl,-soname=$(rtld-installed-name) \
578 -Wl,-defsym=_begin=0
04f5a636 579 $(call after-link,$@.new)
f4a29fba 580 $(READELF) -s $@.new \
0a80eb74 581 | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
f4a29fba 582 mv -f $@.new $@
266180eb 583
ac63a078 584ifeq (yes,$(build-shared))
d330b980 585# interp.c exists just to get the runtime linker path into libc.so.
ac63a078
DL
586$(objpfx)interp.os: $(common-objpfx)runtime-linker.h
587endif
c7562c74 588
1ef32c3d 589ifneq (ld.so,$(rtld-installed-name))
afd4eb37 590# Make sure ld.so.1 exists in the build directory so we can link
852fc4b9
RM
591# against it.
592$(objpfx)$(rtld-installed-name): $(objpfx)ld.so
85ee9a0d 593 $(make-link)
da2d1bc5 594generated += $(rtld-installed-name)
852fc4b9
RM
595endif
596
fd26970f
UD
597# Build a file mentioning all trustworthy directories to look for shared
598# libraries when using LD_LIBRARY_PATH in a setuid program. The user can
599# add directories to the list by defining $(user-defined-trusted-dirs)
600# before starting make.
6598ac30
UD
601$(objpfx)trusted-dirs.h: $(objpfx)trusted-dirs.st; @:
602$(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig
1ef32c3d 603 $(make-target-directory)
ab7eb292
UD
604 echo "$(subst :, ,$(default-rpath) $(user-defined-trusted-dirs))" \
605 | $(AWK) -f gen-trusted-dirs.awk > ${@:st=T};
ce460d04 606 echo '#define DL_DST_LIB "$(notdir $(slibdir))"' >> ${@:st=T}
6598ac30
UD
607 $(move-if-change) ${@:st=T} ${@:st=h}
608 touch $@
36975e8e 609CPPFLAGS-dl-load.c += -I$(objpfx). -I$(csu-objpfx).
86d2c878 610
9f2a9248 611ifeq (yes,$(build-shared))
73237de3 612$(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force)
460adbb8 613 $(make-target-directory)
925e31d9 614 $(do-install-program)
1ef32c3d 615
aaa8cb4b 616$(inst_rtlddir)/$(rtld-installed-name): \
460adbb8
UD
617 $(inst_slibdir)/$(rtld-version-installed-name) \
618 $(inst_slibdir)/libc-$(version).so
aaa8cb4b 619 $(make-target-directory)
925e31d9 620 $(make-shlib-link)
b122c703 621
5148d49f
UD
622# Special target called by parent to install just the dynamic linker.
623.PHONY: ldso_install
aaa8cb4b 624ldso_install: $(inst_rtlddir)/$(rtld-installed-name)
9f2a9248 625endif
5148d49f 626
cb343854 627
9590a71a
FW
628# Workarounds for ${exec_prefix} expansion in configure variables.
629# config.status cannot be used directly for processing ldd.bash.in or
630# expanding variables such as sysconfdir because the expansion
631# contains the literal string ${exec_prefix}, which is not valid in C
632# headers or installed shell scripts.
633
43ca83ec
MF
634ldd-rewrite = -e 's%@RTLD@%$(rtlddir)/$(rtld-installed-name)%g' \
635 -e 's%@VERSION@%$(version)%g' \
636 -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
637 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
638 -e 's%@BASH@%$(BASH)%g' \
314f6dee 639 -e 's%@TEXTDOMAINDIR@%$(localedir)%g'
cb343854
UD
640
641ifeq ($(ldd-rewrite-script),no)
642define gen-ldd
43ca83ec 643LC_ALL=C sed $(ldd-rewrite) < $< > $@.new
cb343854 644endef
84384f5b 645else
cb343854 646define gen-ldd
43ca83ec 647LC_ALL=C sed $(ldd-rewrite) < $< \
52d4fef8 648| LC_ALL=C sed -f $(patsubst $(..)/%,/%,$(..)$(ldd-rewrite-script)) > $@.new
cb343854
UD
649endef
650endif
651
926e512f 652$(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \
ee74a442 653 $(common-objpfx)config.make
cb343854 654 $(gen-ldd)
84384f5b
UD
655 chmod 555 $@.new
656 mv -f $@.new $@
cb343854 657
aaff4ba9 658$(objpfx)sprof: $(libdl)
94e365c6 659
95f5a9a8
JM
660$(objpfx)sln: $(sln-modules:%=$(objpfx)%.o)
661
591e1ffb 662$(objpfx)ldconfig: $(ldconfig-modules:%=$(objpfx)%.o)
11988f8f 663
8ca91b36 664SYSCONF-FLAGS := -D'SYSCONFDIR="$(sysconfdir)"'
36975e8e 665CFLAGS-ldconfig.c += $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \
4f41c682 666 -D'SLIBDIR="$(slibdir)"'
9cd47470 667libof-ldconfig = ldconfig
36975e8e
L
668CFLAGS-dl-cache.c += $(SYSCONF-FLAGS)
669CFLAGS-cache.c += $(SYSCONF-FLAGS)
670CFLAGS-rtld.c += $(SYSCONF-FLAGS)
db03874d
FW
671CFLAGS-dl-usage.c += $(SYSCONF-FLAGS) \
672 -D'RTLD="$(rtlddir)/$(rtld-installed-name)"'
591e1ffb 673
9cd47470
SP
674cpp-srcs-left := $(all-rtld-routines:=.os)
675lib := rtld
2bfdaedd 676include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
9cd47470 677
9b014809
UD
678test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(strip $(modules-names))))
679generated += $(addsuffix .so,$(strip $(modules-names)))
482eec0d 680
aaff4ba9
UD
681$(objpfx)testobj1.so: $(libdl)
682$(objpfx)testobj1_1.so: $(objpfx)testobj1.so $(libdl)
683$(objpfx)testobj2.so: $(objpfx)testobj1.so $(libdl)
684$(objpfx)testobj3.so: $(libdl)
685$(objpfx)testobj4.so: $(libdl)
686$(objpfx)testobj5.so: $(libdl)
e30f2b98 687$(objpfx)testobj6.so: $(objpfx)testobj1.so $(objpfx)testobj2.so $(libdl)
e18db2b0 688$(objpfx)failobj.so: $(objpfx)testobj6.so
84ddc586
UD
689$(objpfx)dep1.so: $(objpfx)dep2.so $(objpfx)dep4.so
690$(objpfx)dep2.so: $(objpfx)dep3.so $(objpfx)dep4.so
691$(objpfx)dep4.so: $(objpfx)dep3.so
2cb8cefb 692$(objpfx)nodelmod3.so: $(objpfx)nodelmod4.so
917fd061 693$(objpfx)nextmod1.so: $(libdl)
ceb579a3
UD
694$(objpfx)neededobj1.so: $(libdl)
695$(objpfx)neededobj2.so: $(objpfx)neededobj1.so $(libdl)
696$(objpfx)neededobj3.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so $(libdl)
8edd9172
UD
697$(objpfx)neededobj4.so: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
698 $(objpfx)neededobj3.so $(libdl)
c77a4478 699$(objpfx)neededobj6.so: $(objpfx)neededobj5.so
f6de2239 700$(objpfx)unload2mod.so: $(objpfx)unload2dep.so
d785c366 701$(objpfx)ltglobmod2.so: $(libdl)
b71e7ce8 702$(objpfx)firstobj.so: $(shared-thread-library)
273a3cfb 703$(objpfx)globalmod1.so: $(libdl)
1826d793
UD
704$(objpfx)reldep4mod1.so: $(objpfx)reldep4mod3.so
705$(objpfx)reldep4mod2.so: $(objpfx)reldep4mod4.so
3fac0001
UD
706$(objpfx)dblloadmod1.so: $(objpfx)dblloadmod3.so
707$(objpfx)dblloadmod2.so: $(objpfx)dblloadmod3.so
c4bb124a
UD
708$(objpfx)reldepmod5.so: $(objpfx)reldepmod2.so
709$(objpfx)reldepmod6.so: $(objpfx)reldepmod2.so
c47e78b1
UD
710$(objpfx)reldep6mod1.so: $(objpfx)reldep6mod0.so
711$(objpfx)reldep6mod2.so: $(objpfx)reldep6mod1.so
712$(objpfx)reldep6mod3.so: $(objpfx)reldep6mod2.so
713$(objpfx)reldep6mod4.so: $(objpfx)reldep6mod1.so
fc093be1 714$(objpfx)tst-tlsmod3.so: $(objpfx)tst-tlsmod2.so
94c24227
UD
715$(objpfx)tst-tlsmod8.so: $(objpfx)tst-tlsmod7.so
716$(objpfx)tst-tlsmod10.so: $(objpfx)tst-tlsmod9.so
717$(objpfx)tst-tlsmod12.so: $(objpfx)tst-tlsmod11.so
541765b6 718$(objpfx)tst-tlsmod13a.so: $(objpfx)tst-tlsmod13.so
aff4519d
UD
719# For tst-tls9-static, make sure the modules it dlopens have libc.so in DT_NEEDED
720$(objpfx)tst-tlsmod5.so: $(common-objpfx)libc.so
721$(objpfx)tst-tlsmod6.so: $(common-objpfx)libc.so
d26dfc60
MG
722$(objpfx)tst-tls19mod1.so: $(objpfx)tst-tls19mod2.so $(objpfx)tst-tls19mod3.so
723$(objpfx)tst-tls19mod3.so: $(objpfx)ld.so
556224ab 724$(objpfx)reldep8mod3.so: $(objpfx)reldep8mod1.so $(objpfx)reldep8mod2.so
aff4519d
UD
725$(objpfx)nodel2mod3.so: $(objpfx)nodel2mod1.so $(objpfx)nodel2mod2.so
726$(objpfx)reldep9mod2.so: $(objpfx)reldep9mod1.so
727$(objpfx)reldep9mod3.so: $(objpfx)reldep9mod1.so $(objpfx)reldep9mod2.so
fab0abb4
UD
728$(objpfx)unload3mod1.so: $(objpfx)unload3mod3.so
729$(objpfx)unload3mod2.so: $(objpfx)unload3mod3.so
730$(objpfx)unload3mod3.so: $(objpfx)unload3mod4.so
20fe49b9
UD
731$(objpfx)unload4mod1.so: $(objpfx)unload4mod2.so $(objpfx)unload4mod3.so
732$(objpfx)unload4mod2.so: $(objpfx)unload4mod4.so $(objpfx)unload4mod3.so
bfc832cc
UD
733$(objpfx)unload6mod1.so: $(libdl)
734$(objpfx)unload6mod2.so: $(libdl)
735$(objpfx)unload6mod3.so: $(libdl)
1ee2ff20
UD
736$(objpfx)unload7mod1.so: $(libdl)
737$(objpfx)unload7mod2.so: $(objpfx)unload7mod1.so
39dd69df
AS
738$(objpfx)unload8mod1.so: $(objpfx)unload8mod2.so
739$(objpfx)unload8mod2.so: $(objpfx)unload8mod3.so
740$(objpfx)unload8mod3.so: $(libdl)
968dad0a
UD
741$(objpfx)tst-initordera2.so: $(objpfx)tst-initordera1.so
742$(objpfx)tst-initorderb2.so: $(objpfx)tst-initorderb1.so $(objpfx)tst-initordera2.so
743$(objpfx)tst-initordera3.so: $(objpfx)tst-initorderb2.so $(objpfx)tst-initorderb1.so
744$(objpfx)tst-initordera4.so: $(objpfx)tst-initordera3.so
745$(objpfx)tst-initorder: $(objpfx)tst-initordera4.so $(objpfx)tst-initordera1.so $(objpfx)tst-initorderb2.so
b9375348 746$(objpfx)tst-null-argv: $(objpfx)tst-null-argv-lib.so
b5fe8ec8 747$(objpfx)tst-tlsalign: $(objpfx)tst-tlsalign-lib.so
b632bdd3
SP
748$(objpfx)tst-nodelete-opened.out: $(objpfx)tst-nodelete-opened-lib.so
749$(objpfx)tst-nodelete-opened: $(libdl)
ead3cea7 750$(objpfx)tst-noload: $(libdl)
b5fe8ec8 751
1a1a6bde
RM
752$(objpfx)tst-tlsalign-extern: $(objpfx)tst-tlsalign-vars.o
753$(objpfx)tst-tlsalign-extern-static: $(objpfx)tst-tlsalign-vars.o
754
b9375348 755tst-null-argv-ENV = LD_DEBUG=all LD_DEBUG_OUTPUT=$(objpfx)tst-null-argv.debug.out
8b196ac4
FW
756LDFLAGS-nodel2mod3.so = -Wl,--no-as-needed
757LDFLAGS-reldepmod5.so = -Wl,--no-as-needed
758LDFLAGS-reldep6mod1.so = -Wl,--no-as-needed
759LDFLAGS-reldep6mod4.so = -Wl,--no-as-needed
760LDFLAGS-reldep8mod3.so = -Wl,--no-as-needed
761LDFLAGS-unload4mod1.so = -Wl,--no-as-needed
762LDFLAGS-unload4mod2.so = -Wl,--no-as-needed
763LDFLAGS-tst-initorder = -Wl,--no-as-needed
764LDFLAGS-tst-initordera2.so = -Wl,--no-as-needed
765LDFLAGS-tst-initordera3.so = -Wl,--no-as-needed
766LDFLAGS-tst-initordera4.so = -Wl,--no-as-needed
767LDFLAGS-tst-initorderb2.so = -Wl,--no-as-needed
768LDFLAGS-tst-tlsmod5.so = -nostdlib -Wl,--no-as-needed
769LDFLAGS-tst-tlsmod6.so = -nostdlib -Wl,--no-as-needed
6ef518c3 770
1a379ea0
UD
771testobj1.so-no-z-defs = yes
772testobj3.so-no-z-defs = yes
773testobj4.so-no-z-defs = yes
774testobj5.so-no-z-defs = yes
775testobj6.so-no-z-defs = yes
776failobj.so-no-z-defs = yes
777constload2.so-no-z-defs = yes
778constload3.so-no-z-defs = yes
779nodelmod1.so-no-z-defs = yes
780nodelmod2.so-no-z-defs = yes
781nodelmod4.so-no-z-defs = yes
782nodel2mod2.so-no-z-defs = yes
783reldepmod2.so-no-z-defs = yes
784reldepmod3.so-no-z-defs = yes
785reldepmod4.so-no-z-defs = yes
786reldep4mod4.so-no-z-defs = yes
787reldep4mod2.so-no-z-defs = yes
788ltglobmod2.so-no-z-defs = yes
789dblloadmod3.so-no-z-defs = yes
790tst-tlsmod1.so-no-z-defs = yes
791tst-tlsmod2.so-no-z-defs = yes
792tst-tlsmod3.so-no-z-defs = yes
793tst-tlsmod4.so-no-z-defs = yes
794tst-tlsmod7.so-no-z-defs = yes
795tst-tlsmod8.so-no-z-defs = yes
796tst-tlsmod9.so-no-z-defs = yes
797tst-tlsmod10.so-no-z-defs = yes
798tst-tlsmod12.so-no-z-defs = yes
99fe3b0e
UD
799tst-tlsmod14a.so-no-z-defs = yes
800tst-tlsmod14b.so-no-z-defs = yes
167d5acc 801tst-tlsmod15a.so-no-z-defs = yes
4c533566 802tst-tlsmod16b.so-no-z-defs = yes
1a379ea0
UD
803circlemod2.so-no-z-defs = yes
804circlemod3.so-no-z-defs = yes
805circlemod3a.so-no-z-defs = yes
806reldep8mod2.so-no-z-defs = yes
807reldep9mod1.so-no-z-defs = yes
fab0abb4 808unload3mod4.so-no-z-defs = yes
20fe49b9 809unload4mod1.so-no-z-defs = yes
2f083d75 810ifuncmod1.so-no-z-defs = yes
3c30afc8
L
811ifuncmod5.so-no-z-defs = yes
812ifuncmod6.so-no-z-defs = yes
d0503676
CD
813tst-auditmod9a.so-no-z-defs = yes
814tst-auditmod9b.so-no-z-defs = yes
02d5e5d9
PK
815tst-nodelete-uniquemod.so-no-z-defs = yes
816tst-nodelete-rtldmod.so-no-z-defs = yes
817tst-nodelete-zmod.so-no-z-defs = yes
f25238ff 818tst-nodelete2mod.so-no-z-defs = yes
a334319f 819
5181d776
RM
820ifeq ($(build-shared),yes)
821# Build all the modules even when not actually running test programs.
822tests: $(test-modules)
823endif
824
aaff4ba9 825$(objpfx)loadtest: $(libdl)
482eec0d
UD
826LDFLAGS-loadtest = -rdynamic
827
828$(objpfx)loadtest.out: $(test-modules)
6bd06384 829
ceb579a3 830$(objpfx)neededtest: $(libdl)
ceb579a3 831$(objpfx)neededtest.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
8edd9172 832 $(objpfx)neededobj3.so
ceb579a3 833
9807e540
UD
834$(objpfx)neededtest2: $(libdl)
835$(objpfx)neededtest2.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
8edd9172
UD
836 $(objpfx)neededobj3.so
837
838$(objpfx)neededtest3: $(libdl)
839$(objpfx)neededtest3.out: $(objpfx)neededobj1.so $(objpfx)neededobj2.so \
840 $(objpfx)neededobj3.so $(objpfx)neededobj4.so
9807e540 841
c77a4478
UD
842$(objpfx)neededtest4: $(libdl) $(objpfx)neededobj1.so
843$(objpfx)neededtest4.out: $(objpfx)neededobj5.so $(objpfx)neededobj6.so
844
aaff4ba9 845$(objpfx)restest1: $(objpfx)testobj1.so $(objpfx)testobj1_1.so $(libdl)
e18db2b0 846LDFLAGS-restest1 = -rdynamic
6bd06384 847
2373b30e
UD
848$(objpfx)restest2: $(libdl)
849LDFLAGS-restest2 = -rdynamic
850
6bd06384 851$(objpfx)restest1.out: $(test-modules)
3d91edb2 852
e18db2b0 853preloadtest-preloads = testobj1 testobj2 testobj3 testobj4 testobj5
10584d2e 854$(objpfx)preloadtest: $(objpfx)testobj6.so
10584d2e 855LDFLAGS-preloadtest = -rdynamic
e18db2b0
UD
856$(objpfx)preloadtest.out: $(preloadtest-preloads:%=$(objpfx)%.so)
857preloadtest-ENV = \
858 LD_PRELOAD=$(subst $(empty) ,:,$(strip $(preloadtest-preloads:=.so)))
1e262312 859
aaff4ba9 860$(objpfx)loadfail: $(libdl)
1e262312
UD
861LDFLAGS-loadfail = -rdynamic
862
61e0617a
UD
863$(objpfx)loadfail.out: $(objpfx)failobj.so
864
865$(objpfx)multiload: $(libdl)
866LDFLAGS-multiload = -rdynamic
36975e8e 867CFLAGS-multiload.c += -DOBJDIR=\"$(elf-objpfx)\"
61e0617a
UD
868
869$(objpfx)multiload.out: $(objpfx)testobj1.so
dc5efe83
UD
870
871$(objpfx)origtest: $(libdl)
394679eb 872LDFLAGS-origtest = -rdynamic
dc5efe83 873$(objpfx)origtest.out: $(objpfx)testobj1.so
ff5fad16
UD
874
875ifeq ($(have-thread-library),yes)
876$(objpfx)resolvfail: $(libdl) $(shared-thread-library)
877else
878$(objpfx)resolvfail: $(libdl)
879endif
19cf43be
UD
880
881$(objpfx)constload1: $(libdl)
882$(objpfx)constload1.out: $(objpfx)constload2.so $(objpfx)constload3.so
84ddc586 883
6d78cd00
UD
884$(objpfx)circleload1: $(libdl)
885$(objpfx)circleload1.out: $(objpfx)circlemod1.so \
886 $(objpfx)circlemod1a.so
887
888$(objpfx)circlemod1.so: $(objpfx)circlemod2.so
889$(objpfx)circlemod2.so: $(objpfx)circlemod3.so
890$(objpfx)circlemod1a.so: $(objpfx)circlemod2a.so
891$(objpfx)circlemod2a.so: $(objpfx)circlemod3a.so
892
84ddc586
UD
893$(objpfx)order: $(addprefix $(objpfx),dep4.so dep3.so dep2.so dep1.so)
894
6e89caf1 895$(objpfx)order-cmp.out: $(objpfx)order.out
f0881698
JM
896 (echo "0123456789" | cmp $< -) > $@; \
897 $(evaluate-test)
c1025c19
UD
898
899$(objpfx)vismain: $(addprefix $(objpfx),vismod1.so vismod2.so)
900$(objpfx)vismain.out: $(addprefix $(objpfx),vismod3.so)
901vismain-ENV = LD_PRELOAD=$(addprefix $(objpfx),vismod3.so)
5e61ef88 902
79520f4b 903$(objpfx)noload: $(objpfx)testobj1.so $(libdl)
8b196ac4 904LDFLAGS-noload = -rdynamic -Wl,--no-as-needed
5e61ef88 905$(objpfx)noload.out: $(objpfx)testobj5.so
0fb7851f 906
0b20a9e8 907$(objpfx)noload-mem.out: $(objpfx)noload.out
f0881698
JM
908 $(common-objpfx)malloc/mtrace $(objpfx)noload.mtrace > $@; \
909 $(evaluate-test)
4bff6e01
AS
910noload-ENV = MALLOC_TRACE=$(objpfx)noload.mtrace
911
ad7534c8 912LDFLAGS-nodelete = -rdynamic
0fb7851f 913LDFLAGS-nodelmod1.so = -Wl,--enable-new-dtags,-z,nodelete
2cb8cefb 914LDFLAGS-nodelmod4.so = -Wl,--enable-new-dtags,-z,nodelete
0fb7851f 915$(objpfx)nodelete: $(libdl)
2cb8cefb
UD
916$(objpfx)nodelete.out: $(objpfx)nodelmod1.so $(objpfx)nodelmod2.so \
917 $(objpfx)nodelmod3.so
2f54c82d
UD
918
919LDFLAGS-nodlopenmod.so = -Wl,--enable-new-dtags,-z,nodlopen
920$(objpfx)nodlopen: $(libdl)
921$(objpfx)nodlopen.out: $(objpfx)nodlopenmod.so
fcacb36a 922
87837aac
UD
923$(objpfx)nodlopenmod2.so: $(objpfx)nodlopenmod.so
924$(objpfx)nodlopen2: $(libdl)
925$(objpfx)nodlopen2.out: $(objpfx)nodlopenmod2.so
926
137bca87
UD
927$(objpfx)filtmod1.so: $(objpfx)filtmod1.os $(objpfx)filtmod2.so
928 $(LINK.o) -shared -o $@ -B$(csu-objpfx) $(LDFLAGS.so) \
929 -L$(subst :, -L,$(rpath-link)) \
930 -Wl,-rpath-link=$(rpath-link) \
931 $< -Wl,-F,$(objpfx)filtmod2.so
fcacb36a 932$(objpfx)filter: $(objpfx)filtmod1.so
2b7238dd 933
7cbb738d 934# This does not link against libc.
36975e8e 935CFLAGS-filtmod1.c += $(no-stack-protector)
7cbb738d 936
2b7238dd
UD
937$(objpfx)unload: $(libdl)
938$(objpfx)unload.out: $(objpfx)unloadmod.so
939
940$(objpfx)reldep: $(libdl)
941$(objpfx)reldep.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod2.so
942
943$(objpfx)reldep2: $(libdl)
944$(objpfx)reldep2.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod3.so
945
946$(objpfx)reldep3: $(libdl)
947$(objpfx)reldep3.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod4.so
917fd061 948
1826d793
UD
949$(objpfx)reldep4: $(libdl)
950$(objpfx)reldep4.out: $(objpfx)reldep4mod1.so $(objpfx)reldep4mod2.so
951
917fd061 952$(objpfx)next: $(objpfx)nextmod1.so $(objpfx)nextmod2.so $(libdl)
8b196ac4 953LDFLAGS-next = -Wl,--no-as-needed
f6de2239
UD
954
955$(objpfx)unload2: $(libdl)
956$(objpfx)unload2.out: $(objpfx)unload2mod.so $(objpfx)unload2dep.so
d785c366
UD
957
958$(objpfx)lateglobal: $(libdl)
959$(objpfx)lateglobal.out: $(objpfx)ltglobmod1.so $(objpfx)ltglobmod2.so
5a384a91
UD
960
961$(objpfx)tst-pathopt: $(libdl)
962$(objpfx)tst-pathopt.out: tst-pathopt.sh $(objpfx)tst-pathopt \
963 $(objpfx)pathoptobj.so
8540f6d2 964 $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' \
8f8052c2 965 '$(run-program-env)'; \
f0881698 966 $(evaluate-test)
b71e7ce8 967
f3fd569c 968$(objpfx)tst-rtld-load-self.out: tst-rtld-load-self.sh $(objpfx)ld.so
f0881698
JM
969 $(SHELL) $^ '$(test-wrapper)' '$(test-wrapper-env)' > $@; \
970 $(evaluate-test)
f3fd569c 971
8692ebdb
DN
972tst-rtld-preload-OBJS = $(subst $(empty) ,:,$(strip $(preloadtest-preloads:=.so)))
973$(objpfx)tst-rtld-preload.out: tst-rtld-preload.sh $(objpfx)ld.so \
974 $(objpfx)preloadtest \
975 $(preloadtest-preloads:%=$(objpfx)%.so)
976 $(SHELL) $< $(objpfx)ld.so $(objpfx)preloadtest \
d01fd5f0 977 '$(test-wrapper-env)' '$(run_program_env)' \
8692ebdb
DN
978 '$(rpath-link)' '$(tst-rtld-preload-OBJS)' > $@; \
979 $(evaluate-test)
980
b71e7ce8
UD
981$(objpfx)initfirst: $(libdl)
982$(objpfx)initfirst.out: $(objpfx)firstobj.so
273a3cfb
UD
983
984$(objpfx)global: $(objpfx)globalmod1.so
985$(objpfx)global.out: $(objpfx)reldepmod1.so
3fac0001
UD
986
987$(objpfx)dblload: $(libdl)
988$(objpfx)dblload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
989
990$(objpfx)dblunload: $(libdl)
991$(objpfx)dblunload.out: $(objpfx)dblloadmod1.so $(objpfx)dblloadmod2.so
c4bb124a
UD
992
993$(objpfx)reldep5: $(libdl)
ac2d6e9b 994$(objpfx)reldep5.out: $(objpfx)reldepmod5.so $(objpfx)reldepmod6.so
c47e78b1
UD
995
996$(objpfx)reldep6: $(libdl)
997$(objpfx)reldep6.out: $(objpfx)reldep6mod3.so $(objpfx)reldep6mod4.so
2e36cb48 998
a41d8a74
UD
999$(objpfx)reldep7: $(libdl)
1000$(objpfx)reldep7.out: $(objpfx)reldep7mod1.so $(objpfx)reldep7mod2.so
1001
cfaf5e56
UD
1002$(objpfx)reldep8: $(libdl)
1003$(objpfx)reldep8.out: $(objpfx)reldep8mod3.so
1004
aff4519d
UD
1005LDFLAGS-nodel2mod2.so = -Wl,--enable-new-dtags,-z,nodelete
1006$(objpfx)nodelete2: $(libdl)
1007$(objpfx)nodelete2.out: $(objpfx)nodel2mod3.so
1008
1009$(objpfx)reldep9: $(libdl)
1010$(objpfx)reldep9.out: $(objpfx)reldep9mod3.so
1011
2e36cb48 1012$(objpfx)tst-tls3: $(objpfx)tst-tlsmod1.so
aed283dd
UD
1013
1014$(objpfx)tst-tls4: $(libdl)
1015$(objpfx)tst-tls4.out: $(objpfx)tst-tlsmod2.so
1016
1017$(objpfx)tst-tls5: $(libdl)
1018$(objpfx)tst-tls5.out: $(objpfx)tst-tlsmod2.so
bb4cb252
UD
1019
1020$(objpfx)tst-tls6: $(libdl)
1021$(objpfx)tst-tls6.out: $(objpfx)tst-tlsmod2.so
fc093be1
UD
1022
1023$(objpfx)tst-tls7: $(libdl)
1024$(objpfx)tst-tls7.out: $(objpfx)tst-tlsmod3.so
ebda6173
UD
1025
1026$(objpfx)tst-tls8: $(libdl)
1027$(objpfx)tst-tls8.out: $(objpfx)tst-tlsmod3.so $(objpfx)tst-tlsmod4.so
6ef518c3
RM
1028
1029$(objpfx)tst-tls9: $(libdl)
1030$(objpfx)tst-tls9.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
1031
702e8f14 1032$(objpfx)tst-tls10: $(objpfx)tst-tlsmod8.so $(objpfx)tst-tlsmod7.so
94c24227 1033
702e8f14 1034$(objpfx)tst-tls11: $(objpfx)tst-tlsmod10.so $(objpfx)tst-tlsmod9.so
94c24227 1035
702e8f14 1036$(objpfx)tst-tls12: $(objpfx)tst-tlsmod12.so $(objpfx)tst-tlsmod11.so
94c24227 1037
541765b6
UD
1038$(objpfx)tst-tls13: $(libdl)
1039$(objpfx)tst-tls13.out: $(objpfx)tst-tlsmod13a.so
1040
167d5acc
UD
1041$(objpfx)tst-tls14: $(objpfx)tst-tlsmod14a.so $(libdl)
1042$(objpfx)tst-tls14.out: $(objpfx)tst-tlsmod14b.so
1043
1044$(objpfx)tst-tls15: $(libdl)
1045$(objpfx)tst-tls15.out: $(objpfx)tst-tlsmod15a.so $(objpfx)tst-tlsmod15b.so
99fe3b0e 1046
d78efd9f
RM
1047$(objpfx)tst-tls-dlinfo: $(libdl)
1048$(objpfx)tst-tls-dlinfo.out: $(objpfx)tst-tlsmod2.so
1049
1050
1051
4c533566
UD
1052$(objpfx)tst-tls16: $(libdl)
1053$(objpfx)tst-tls16.out: $(objpfx)tst-tlsmod16a.so $(objpfx)tst-tlsmod16b.so
1054
60a23f5a
UD
1055$(objpfx)tst-tls17: $(libdl)
1056$(objpfx)tst-tls17.out: $(objpfx)tst-tlsmod17b.so
1f20b93a
AS
1057$(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.os: tst-tlsmod17a.c
1058 $(compile-command.c) -DN=$*
1059$(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules)): $(objpfx)tst-tlsmod17a%.so: $(objpfx)ld.so
1060$(objpfx)tst-tlsmod17b.so: $(patsubst %,$(objpfx)%.so,$(tlsmod17a-modules))
60a23f5a 1061
41e25904 1062$(objpfx)tst-tls18: $(libdl)
1f20b93a
AS
1063$(objpfx)tst-tls18.out: $(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules))
1064$(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.os : tst-tlsmod18a.c
1065 $(compile-command.c) -DN=$*
1066$(patsubst %,$(objpfx)%.so,$(tlsmod18a-modules)): $(objpfx)tst-tlsmod18a%.so: $(objpfx)ld.so
41e25904 1067
d26dfc60
MG
1068$(objpfx)tst-tls19: $(libdl)
1069$(objpfx)tst-tls19.out: $(objpfx)tst-tls19mod1.so
1070
36975e8e
L
1071CFLAGS-tst-align.c += $(stack-align-test-flags)
1072CFLAGS-tst-align2.c += $(stack-align-test-flags)
1073CFLAGS-tst-alignmod.c += $(stack-align-test-flags)
1074CFLAGS-tst-alignmod2.c += $(stack-align-test-flags)
06f6ca90
UD
1075$(objpfx)tst-align: $(libdl)
1076$(objpfx)tst-align.out: $(objpfx)tst-alignmod.so
be184b1d 1077$(objpfx)tst-align2: $(objpfx)tst-alignmod2.so
06f6ca90 1078
fab0abb4
UD
1079$(objpfx)unload3: $(libdl)
1080$(objpfx)unload3.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
1081 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
1082
20fe49b9
UD
1083$(objpfx)unload4: $(libdl)
1084$(objpfx)unload4.out: $(objpfx)unload4mod1.so $(objpfx)unload4mod3.so
1085
1086$(objpfx)unload5: $(libdl)
1087$(objpfx)unload5.out: $(objpfx)unload3mod1.so $(objpfx)unload3mod2.so \
1088 $(objpfx)unload3mod3.so $(objpfx)unload3mod4.so
1089
bfc832cc
UD
1090$(objpfx)unload6: $(libdl)
1091$(objpfx)unload6.out: $(objpfx)unload6mod1.so $(objpfx)unload6mod2.so \
1092 $(objpfx)unload6mod3.so
1093
1ee2ff20
UD
1094$(objpfx)unload7: $(libdl)
1095$(objpfx)unload7.out: $(objpfx)unload7mod1.so $(objpfx)unload7mod2.so
1096unload7-ENV = MALLOC_PERTURB_=85
1097
39dd69df
AS
1098$(objpfx)unload8: $(libdl)
1099$(objpfx)unload8.out: $(objpfx)unload8mod1.so $(objpfx)unload8mod1x.so
1100
6ef518c3
RM
1101ifdef libdl
1102$(objpfx)tst-tls9-static: $(common-objpfx)dlfcn/libdl.a
1103$(objpfx)tst-tls9-static.out: $(objpfx)tst-tlsmod5.so $(objpfx)tst-tlsmod6.so
1104endif
dfe4c900 1105
2abf9ff1
RM
1106ifeq ($(have-z-execstack),yes)
1107$(objpfx)tst-execstack: $(libdl)
1108$(objpfx)tst-execstack.out: $(objpfx)tst-execstack-mod.so
36975e8e 1109CPPFLAGS-tst-execstack.c += -DUSE_PTHREADS=0
2abf9ff1 1110LDFLAGS-tst-execstack = -Wl,-z,noexecstack
41432ebe 1111LDFLAGS-tst-execstack-mod.so = -Wl,-z,execstack
2abf9ff1
RM
1112
1113$(objpfx)tst-execstack-needed: $(objpfx)tst-execstack-mod.so
1114LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
c70ba488
RM
1115
1116LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
b9205857
RH
1117CFLAGS-tst-execstack-prog.c += -Wno-trampolines
1118CFLAGS-tst-execstack-mod.c += -Wno-trampolines
2abf9ff1
RM
1119endif
1120
8b196ac4
FW
1121LDFLAGS-tst-array2 = -Wl,--no-as-needed
1122LDFLAGS-tst-array5 = -Wl,--no-as-needed
5655a0b5 1123
6e89caf1 1124$(objpfx)tst-array1-cmp.out: tst-array1.exp $(objpfx)tst-array1.out
f0881698
JM
1125 cmp $^ > $@; \
1126 $(evaluate-test)
6e89caf1
JM
1127
1128$(objpfx)tst-array1-static-cmp.out: tst-array1.exp \
1129 $(objpfx)tst-array1-static.out
f0881698
JM
1130 cmp $^ > $@; \
1131 $(evaluate-test)
43c59a70 1132
dfe4c900 1133$(objpfx)tst-array2: $(objpfx)tst-array2dep.so
6e89caf1 1134$(objpfx)tst-array2-cmp.out: tst-array2.exp $(objpfx)tst-array2.out
f0881698
JM
1135 cmp $^ > $@; \
1136 $(evaluate-test)
dfe4c900 1137
6e89caf1 1138$(objpfx)tst-array3-cmp.out: tst-array1.exp $(objpfx)tst-array3.out
f0881698
JM
1139 cmp $^ > $@; \
1140 $(evaluate-test)
efd56f53 1141
62f29da7 1142$(objpfx)tst-array4: $(libdl)
6e89caf1
JM
1143$(objpfx)tst-array4.out: $(objpfx)tst-array2dep.so
1144$(objpfx)tst-array4-cmp.out: tst-array4.exp $(objpfx)tst-array4.out
f0881698
JM
1145 cmp $^ > $@; \
1146 $(evaluate-test)
efd56f53 1147
04395c90 1148$(objpfx)tst-array5: $(objpfx)tst-array5dep.so
6e89caf1 1149$(objpfx)tst-array5-cmp.out: tst-array5.exp $(objpfx)tst-array5.out
f0881698
JM
1150 cmp $^ > $@; \
1151 $(evaluate-test)
04395c90 1152
6e89caf1
JM
1153$(objpfx)tst-array5-static-cmp.out: tst-array5-static.exp \
1154 $(objpfx)tst-array5-static.out
f0881698
JM
1155 cmp $^ > $@; \
1156 $(evaluate-test)
04395c90 1157
7b91359b 1158CFLAGS-tst-pie1.c += $(pie-ccflag)
798212a0 1159CFLAGS-tst-pie2.c += $(pie-ccflag)
f17ed1a9 1160
c23de0aa 1161$(objpfx)tst-piemod1.so: $(libsupport)
da62f81b 1162$(objpfx)tst-pie1: $(objpfx)tst-piemod1.so
2c75b545
FW
1163$(objpfx)tst-dlopen-pie: $(libdl)
1164$(objpfx)tst-dlopen-pie.out: $(objpfx)tst-pie1
f17ed1a9 1165
efd56f53 1166ifeq (yes,$(build-shared))
f753fa7d
L
1167# NB: Please keep cet-built-dso in sysdeps/x86/Makefile in sync with
1168# all-built-dso here.
da53d6db 1169all-built-dso := $(common-objpfx)elf/ld.so $(common-objpfx)libc.so \
82a79e7d
RM
1170 $(filter-out $(common-objpfx)linkobj/libc.so, \
1171 $(sort $(wildcard $(addprefix $(common-objpfx), \
1172 */lib*.so \
1173 iconvdata/*.so))))
1f20b93a 1174
82a79e7d
RM
1175$(all-built-dso:=.dyn): %.dyn: %
1176 @rm -f $@T
1177 LC_ALL=C $(READELF) -W -d $< > $@T
1178 test -s $@T
1179 mv -f $@T $@
d3dfcc41 1180common-generated += $(all-built-dso:$(common-objpfx)%=%.dyn)
82a79e7d
RM
1181
1182$(objpfx)check-textrel.out: $(..)scripts/check-textrel.awk \
1183 $(all-built-dso:=.dyn)
f0881698
JM
1184 LC_ALL=C $(AWK) -f $^ > $@; \
1185 $(evaluate-test)
82a79e7d 1186generated += check-textrel.out
bed12f78 1187
82397ed6
RM
1188$(objpfx)execstack-default: $(first-word $(wildcard $(sysdirs:%=%/stackinfo.h)))
1189 $(make-target-directory)
1190 { echo '#include <elf.h>'; \
1191 echo '#include <stackinfo.h>'; \
1192 echo '#if (DEFAULT_STACK_PERMS & PF_X) == 0'; \
1193 echo '@@@execstack-no@@@'; \
1194 echo '#else'; \
1195 echo '@@@execstack-yes@@@'; \
1196 echo '#endif'; } | \
1197 $(CC) $(CFLAGS) $(CPPFLAGS) -E -x c-header - | \
1198 sed -n -e 's/^@@@\(.*\)@@@/\1/p' > $@T
1199 mv -f $@T $@
1200generated += execstack-default
1201
1202$(all-built-dso:=.phdr): %.phdr: %
1203 @rm -f $@T
1204 LC_ALL=C $(READELF) -W -l $< > $@T
1205 test -s $@T
1206 mv -f $@T $@
d3dfcc41 1207common-generated += $(all-built-dso:$(common-objpfx)%=%.phdr)
82397ed6
RM
1208
1209$(objpfx)check-execstack.out: $(..)scripts/check-execstack.awk \
1210 $(objpfx)execstack-default \
1211 $(all-built-dso:=.phdr)
2d5c41de 1212 LC_ALL=C $(AWK) -v "xfail=$(check-execstack-xfail)" -f $^ > $@; \
f0881698 1213 $(evaluate-test)
82397ed6 1214generated += check-execstack.out
774f5a30 1215
0499a353
FW
1216$(objpfx)check-wx-segment.out: $(..)scripts/check-wx-segment.py \
1217 $(all-built-dso:=.phdr)
1218 $(PYTHON) $^ --xfail="$(check-wx-segment-xfail)" > $@; \
1219 $(evaluate-test)
1220generated += check-wx-segment.out
1221
bed12f78
UD
1222$(objpfx)tst-dlmodcount: $(libdl)
1223$(objpfx)tst-dlmodcount.out: $(test-modules)
1224
90fe4186
RM
1225$(all-built-dso:=.jmprel): %.jmprel: % Makefile
1226 @rm -f $@T
1227 LC_ALL=C $(READELF) -W -S -d -r $< > $@T
1228 test -s $@T
1229 mv -f $@T $@
d3dfcc41 1230common-generated += $(all-built-dso:$(common-objpfx)%=%.jmprel)
90fe4186 1231
90fe4186
RM
1232localplt-built-dso := $(addprefix $(common-objpfx),\
1233 libc.so \
da53d6db 1234 elf/ld.so \
90fe4186
RM
1235 math/libm.so \
1236 rt/librt.so \
1237 dlfcn/libdl.so \
1238 resolv/libresolv.so \
90fe4186 1239 )
829a679f
AS
1240ifeq ($(build-mathvec),yes)
1241localplt-built-dso += $(addprefix $(common-objpfx), mathvec/libmvec.so)
1242endif
d9266ea0 1243ifeq ($(have-thread-library),yes)
90fe4186 1244localplt-built-dso += $(filter-out %_nonshared.a, $(shared-thread-library))
d9266ea0 1245endif
e69d994a
ZW
1246ifeq ($(build-crypt),yes)
1247localplt-built-dso += $(addprefix $(common-objpfx), crypt/libcrypt.so)
1248endif
d9266ea0 1249
0f48659e
JM
1250vpath localplt.data $(+sysdep_dirs)
1251
90fe4186
RM
1252$(objpfx)check-localplt.out: $(..)scripts/check-localplt.awk \
1253 $(..)scripts/localplt.awk \
1254 $(localplt-built-dso:=.jmprel) \
0f48659e
JM
1255 localplt.data
1256 LC_ALL=C $(AWK) -f $(filter-out $< %localplt.data,$^) | \
1257 LC_ALL=C $(AWK) -f $< $(filter %localplt.data,$^) - \
f0881698
JM
1258 > $@; \
1259 $(evaluate-test)
3baf2e9b 1260endif
28977c2c 1261
67c05796
L
1262$(all-built-dso:=.dynsym): %.dynsym: %
1263 @rm -f $@T
1264 LC_ALL=C $(READELF) -W --dyn-syms $< > $@T
1265 test -s $@T
1266 mv -f $@T $@
1267common-generated += $(all-built-dso:$(common-objpfx)%=%.dynsym)
1268
1269$(objpfx)check-initfini.out: $(..)scripts/check-initfini.awk \
1270 $(all-built-dso:=.dynsym)
1271 LC_ALL=C $(AWK) -f $^ > $@; \
1272 $(evaluate-test)
1273generated += check-initfini.out
1274
28977c2c
UD
1275$(objpfx)tst-dlopenrpathmod.so: $(libdl)
1276$(objpfx)tst-dlopenrpath: $(objpfx)tst-dlopenrpathmod.so $(libdl)
1277CFLAGS-tst-dlopenrpath.c += -DPFX=\"$(objpfx)\"
1278LDFLAGS-tst-dlopenrpathmod.so += -Wl,-rpath,\$$ORIGIN/test-subdir
1279$(objpfx)tst-dlopenrpath.out: $(objpfx)firstobj.so
1fc07491
UD
1280
1281$(objpfx)tst-deep1mod2.so: $(objpfx)tst-deep1mod3.so
1282$(objpfx)tst-deep1: $(libdl) $(objpfx)tst-deep1mod1.so
1283$(objpfx)tst-deep1.out: $(objpfx)tst-deep1mod2.so
1284LDFLAGS-tst-deep1 += -rdynamic
1285tst-deep1mod3.so-no-z-defs = yes
c0f62c56
UD
1286
1287$(objpfx)tst-dlmopen1mod.so: $(libdl)
1288$(objpfx)tst-dlmopen1: $(libdl)
1289$(objpfx)tst-dlmopen1.out: $(objpfx)tst-dlmopen1mod.so
1290
1291$(objpfx)tst-dlmopen2: $(libdl)
1292$(objpfx)tst-dlmopen2.out: $(objpfx)tst-dlmopen1mod.so
b1f68750
UD
1293
1294$(objpfx)tst-dlmopen3: $(libdl)
1295$(objpfx)tst-dlmopen3.out: $(objpfx)tst-dlmopen1mod.so
9dcafc55
UD
1296
1297$(objpfx)tst-audit1.out: $(objpfx)tst-auditmod1.so
1298tst-audit1-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
fab0abb4 1299
58007e9e
L
1300$(objpfx)tst-audit2: $(libdl)
1301$(objpfx)tst-audit2.out: $(objpfx)tst-auditmod1.so $(objpfx)tst-auditmod9b.so
51225803
AS
1302# Prevent GCC-5 from translating a malloc/memset pair into calloc
1303CFLAGS-tst-audit2.c += -fno-builtin
cafdfdb6
RM
1304tst-audit2-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1305
d0503676
CD
1306$(objpfx)tst-audit9: $(libdl)
1307$(objpfx)tst-audit9.out: $(objpfx)tst-auditmod9a.so $(objpfx)tst-auditmod9b.so
1308tst-audit9-ENV = LD_AUDIT=$(objpfx)tst-auditmod9a.so
1309
79520f4b 1310$(objpfx)tst-audit8: $(libm)
2e64d265
L
1311$(objpfx)tst-audit8.out: $(objpfx)tst-auditmod1.so
1312tst-audit8-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so
1313
fab0abb4
UD
1314$(objpfx)tst-global1: $(libdl)
1315$(objpfx)tst-global1.out: $(objpfx)testobj6.so $(objpfx)testobj2.so
3d786f19
UD
1316
1317$(objpfx)order2: $(libdl)
6e89caf1
JM
1318$(objpfx)order2.out: $(objpfx)order2mod1.so $(objpfx)order2mod2.so
1319$(objpfx)order2-cmp.out: $(objpfx)order2.out
f0881698
JM
1320 (echo "12345" | cmp $< -) > $@; \
1321 $(evaluate-test)
3d786f19
UD
1322$(objpfx)order2mod1.so: $(objpfx)order2mod4.so
1323$(objpfx)order2mod4.so: $(objpfx)order2mod3.so
1324$(objpfx)order2mod2.so: $(objpfx)order2mod3.so
1325order2mod2.so-no-z-defs = yes
8b196ac4
FW
1326LDFLAGS-order2mod1.so = -Wl,--no-as-needed
1327LDFLAGS-order2mod2.so = -Wl,--no-as-needed
35f1e827 1328
740b3dbe 1329tst-stackguard1-ARGS = --command "$(host-test-program-cmd) --child"
35f1e827 1330tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child"
2e0fc40c 1331
c61b4d41 1332tst-ptrguard1-ARGS = --command "$(host-test-program-cmd) --child"
0b1f8e35
CD
1333# When built statically, the pointer guard interface uses
1334# __pointer_chk_guard_local.
36975e8e 1335CFLAGS-tst-ptrguard1-static.c += -DPTRGUARD_LOCAL
c61b4d41
CD
1336tst-ptrguard1-static-ARGS = --command "$(objpfx)tst-ptrguard1-static --child"
1337
2e0fc40c 1338$(objpfx)tst-leaks1: $(libdl)
0b20a9e8 1339$(objpfx)tst-leaks1-mem.out: $(objpfx)tst-leaks1.out
f0881698
JM
1340 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1.mtrace > $@; \
1341 $(evaluate-test)
2e0fc40c 1342
f2eed205 1343$(objpfx)tst-leaks1-static: $(common-objpfx)dlfcn/libdl.a
0b20a9e8 1344$(objpfx)tst-leaks1-static-mem.out: $(objpfx)tst-leaks1-static.out
f0881698
JM
1345 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1-static.mtrace > $@; \
1346 $(evaluate-test)
f2eed205 1347
2e0fc40c 1348tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace
f2eed205 1349tst-leaks1-static-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1-static.mtrace
93b53ca2
UD
1350
1351$(objpfx)tst-addr1: $(libdl)
ffd0e1b7
UD
1352
1353$(objpfx)tst-thrlock: $(libdl) $(shared-thread-library)
77523d5e 1354
7d3db434
FW
1355tst-tst-dlopen-tlsmodid-no-pie = yes
1356$(objpfx)tst-dlopen-tlsmodid: $(libdl) $(shared-thread-library)
1357$(objpfx)tst-dlopen-tlsmodid.out: $(objpfx)tst-dlopen-self
1358CFLAGS-tst-dlopen-tlsmodid-pie.c += $(pie-ccflag)
1359$(objpfx)tst-dlopen-tlsmodid-pie: $(libdl) $(shared-thread-library)
1360$(objpfx)tst-dlopen-tlsmodid-pie.out: $(objpfx)tst-dlopen-self-pie
1361$(objpfx)tst-dlopen-tlsmodid-container: $(libdl) $(shared-thread-library)
1362LDFLAGS-tst-dlopen-tlsmodid-container += -Wl,-rpath,\$$ORIGIN
1363
1364tst-tst-dlopen-self-no-pie = yes
1365$(objpfx)tst-dlopen-self: $(libdl)
1366CFLAGS-tst-dlopen-self-pie.c += $(pie-ccflag)
1367$(objpfx)tst-dlopen-self-pie: $(libdl)
1368$(objpfx)tst-dlopen-self-container: $(libdl)
1369LDFLAGS-tst-dlopen-self-container += -Wl,-rpath,\$$ORIGIN
2f083d75
L
1370
1371CFLAGS-ifuncmain1pic.c += $(pic-ccflag)
1372CFLAGS-ifuncmain1picstatic.c += $(pic-ccflag)
1373CFLAGS-ifuncmain1staticpic.c += $(pic-ccflag)
1374CFLAGS-ifuncdep1pic.c += $(pic-ccflag)
1375CFLAGS-ifuncmain1vispic.c += $(pic-ccflag)
1376CFLAGS-ifuncmain2pic.c += $(pic-ccflag)
1377CFLAGS-ifuncmain2picstatic.c += $(pic-ccflag)
1378CFLAGS-ifuncdep2pic.c += $(pic-ccflag)
1379CFLAGS-ifuncmain4picstatic.c += $(pic-ccflag)
3c30afc8
L
1380CFLAGS-ifuncmain5pic.c += $(pic-ccflag)
1381CFLAGS-ifuncmain5picstatic.c += $(pic-ccflag)
1382CFLAGS-ifuncmain5staticpic.c += $(pic-ccflag)
1383CFLAGS-ifuncdep5pic.c += $(pic-ccflag)
1384CFLAGS-ifuncmain7pic.c += $(pic-ccflag)
1385CFLAGS-ifuncmain7picstatic.c += $(pic-ccflag)
cc3e573c
FW
1386CFLAGS-ifuncmain9pic.c += $(pic-ccflag)
1387CFLAGS-ifuncmain9picstatic.c += $(pic-ccflag)
2f083d75
L
1388
1389LDFLAGS-ifuncmain3 = -Wl,-export-dynamic
1390
2f083d75
L
1391CFLAGS-ifuncmain1pie.c += $(pie-ccflag)
1392CFLAGS-ifuncmain1vispie.c += $(pie-ccflag)
3c30afc8
L
1393CFLAGS-ifuncmain1staticpie.c += $(pie-ccflag)
1394CFLAGS-ifuncmain5pie.c += $(pie-ccflag)
1395CFLAGS-ifuncmain6pie.c += $(pie-ccflag)
1396CFLAGS-ifuncmain7pie.c += $(pie-ccflag)
cc3e573c 1397CFLAGS-ifuncmain9pie.c += $(pie-ccflag)
b5c45e83 1398CFLAGS-tst-ifunc-textrel.c += $(pic-ccflag)
2f083d75 1399
da62f81b
AS
1400$(objpfx)ifuncmain1pie: $(objpfx)ifuncmod1.so
1401$(objpfx)ifuncmain1staticpie: $(objpfx)ifuncdep1pic.o
1402$(objpfx)ifuncmain1vispie: $(objpfx)ifuncmod1.so
1403$(objpfx)ifuncmain5pie: $(objpfx)ifuncmod5.so
1404$(objpfx)ifuncmain6pie: $(objpfx)ifuncmod6.so
2f083d75
L
1405
1406$(objpfx)ifuncmain1: $(addprefix $(objpfx),ifuncmod1.so)
1407$(objpfx)ifuncmain1pic: $(addprefix $(objpfx),ifuncmod1.so)
1408$(objpfx)ifuncmain1staticpic: $(addprefix $(objpfx),ifuncdep1pic.o)
1409$(objpfx)ifuncmain1static: $(addprefix $(objpfx),ifuncdep1.o)
1410$(objpfx)ifuncmain1picstatic: $(addprefix $(objpfx),ifuncdep1pic.o)
1411$(objpfx)ifuncmain1vis: $(addprefix $(objpfx),ifuncmod1.so)
1412$(objpfx)ifuncmain1vispic: $(addprefix $(objpfx),ifuncmod1.so)
1413$(objpfx)ifuncmain2: $(addprefix $(objpfx),ifuncdep2.o)
1414$(objpfx)ifuncmain2pic: $(addprefix $(objpfx),ifuncdep2pic.o)
1415$(objpfx)ifuncmain2static: $(addprefix $(objpfx),ifuncdep2.o)
1416$(objpfx)ifuncmain2picstatic: $(addprefix $(objpfx),ifuncdep2pic.o)
1417
1418$(objpfx)ifuncmain3: $(libdl)
1419$(objpfx)ifuncmain3.out: $(objpfx)ifuncmod3.so
3c30afc8
L
1420
1421$(objpfx)ifuncmain5: $(addprefix $(objpfx),ifuncmod5.so)
1422$(objpfx)ifuncmain5pic: $(addprefix $(objpfx),ifuncmod5.so)
1423$(objpfx)ifuncmain5static: $(addprefix $(objpfx),ifuncdep5.o)
1424$(objpfx)ifuncmain5staticpic: $(addprefix $(objpfx),ifuncdep5pic.o)
1425$(objpfx)ifuncmain5picstatic: $(addprefix $(objpfx),ifuncdep5pic.o)
415ac3df 1426
4db71d2f
FW
1427LDFLAGS-tst-ifunc-fault-lazy = -Wl,-z,lazy
1428LDFLAGS-tst-ifunc-fault-bindnow = -Wl,-z,now
1429define tst-ifunc-fault-script
00167b53
JM
1430( $(test-wrapper) $(rtld-prefix) --verify $^ \
1431 && $(test-wrapper-env) LD_TRACE_LOADED_OBJECTS=1 $(rtld-prefix) $^ \
1432 && $(test-wrapper-env) LD_TRACE_LOADED_OBJECTS=1 LD_DEBUG=unused \
1433 $(rtld-prefix) $^ \
4db71d2f
FW
1434) > $@; $(evaluate-test)
1435endef
1436$(objpfx)tst-ifunc-fault-lazy.out: $(objpfx)tst-ifunc-fault-lazy $(objpfx)ld.so
1437 $(tst-ifunc-fault-script)
1438$(objpfx)tst-ifunc-fault-bindnow.out: $(objpfx)tst-ifunc-fault-bindnow \
1439 $(objpfx)ld.so
1440 $(tst-ifunc-fault-script)
1441
415ac3df
UD
1442$(objpfx)tst-unique1: $(libdl)
1443$(objpfx)tst-unique1.out: $(objpfx)tst-unique1mod1.so \
1444 $(objpfx)tst-unique1mod2.so
1445
1446$(objpfx)tst-unique2: $(libdl) $(objpfx)tst-unique2mod1.so
1447$(objpfx)tst-unique2.out: $(objpfx)tst-unique2mod2.so
b0ecde3a 1448
028478fa
UD
1449$(objpfx)tst-unique3: $(libdl) $(objpfx)tst-unique3lib.so
1450$(objpfx)tst-unique3.out: $(objpfx)tst-unique3lib2.so
33f85a3f 1451
320a5dc0
PB
1452$(objpfx)tst-unique4: $(objpfx)tst-unique4lib.so
1453
02d5e5d9
PK
1454$(objpfx)tst-nodelete: $(libdl)
1455$(objpfx)tst-nodelete.out: $(objpfx)tst-nodelete-uniquemod.so \
1456 $(objpfx)tst-nodelete-rtldmod.so \
1457 $(objpfx)tst-nodelete-zmod.so
1458
1459LDFLAGS-tst-nodelete = -rdynamic
1460LDFLAGS-tst-nodelete-zmod.so = -Wl,--enable-new-dtags,-z,nodelete
1461
f25238ff
MO
1462$(objpfx)tst-nodelete2: $(libdl)
1463$(objpfx)tst-nodelete2.out: $(objpfx)tst-nodelete2mod.so
1464
1465LDFLAGS-tst-nodelete2 = -rdynamic
1466
6e89caf1 1467$(objpfx)tst-initorder-cmp.out: tst-initorder.exp $(objpfx)tst-initorder.out
f0881698
JM
1468 cmp $^ > $@; \
1469 $(evaluate-test)
968dad0a 1470
e888bcbe
AS
1471$(objpfx)tst-initorder2: $(objpfx)tst-initorder2a.so $(objpfx)tst-initorder2d.so $(objpfx)tst-initorder2c.so
1472$(objpfx)tst-initorder2a.so: $(objpfx)tst-initorder2b.so
1473$(objpfx)tst-initorder2b.so: $(objpfx)tst-initorder2c.so
1474$(objpfx)tst-initorder2c.so: $(objpfx)tst-initorder2d.so
8b196ac4
FW
1475LDFLAGS-tst-initorder2 = -Wl,--no-as-needed
1476LDFLAGS-tst-initorder2a.so = -Wl,--no-as-needed
1477LDFLAGS-tst-initorder2b.so = -Wl,--no-as-needed
1478LDFLAGS-tst-initorder2c.so = -Wl,--no-as-needed
e888bcbe
AS
1479define o-iterator-doit
1480$(objpfx)tst-initorder2$o.os: tst-initorder2.c; \
1481$$(compile-command.c) -DNAME=\"$o\"
1482endef
1483object-suffixes-left := a b c d
1484include $(o-iterator)
1485
6e89caf1 1486$(objpfx)tst-initorder2-cmp.out: tst-initorder2.exp $(objpfx)tst-initorder2.out
f0881698
JM
1487 cmp $^ > $@; \
1488 $(evaluate-test)
e888bcbe 1489
6ee65ed6
UD
1490$(objpfx)tst-relsort1: $(libdl)
1491$(objpfx)tst-relsort1mod1.so: $(libm) $(objpfx)tst-relsort1mod2.so
1492$(objpfx)tst-relsort1mod2.so: $(libm)
1493$(objpfx)tst-relsort1.out: $(objpfx)tst-relsort1mod1.so \
1494 $(objpfx)tst-relsort1mod2.so
1f393a11 1495
1f393a11 1496$(objpfx)tst-unused-dep.out: $(objpfx)testobj1.so
cc1290d0 1497 $(test-wrapper-env) \
1f393a11
MP
1498 LD_TRACE_LOADED_OBJECTS=1 \
1499 LD_DEBUG=unused \
1500 LD_PRELOAD= \
85d89278 1501 $(rtld-prefix) \
f0881698
JM
1502 $< > $@; \
1503 $(evaluate-test)
6e89caf1
JM
1504
1505$(objpfx)tst-unused-dep-cmp.out: $(objpfx)tst-unused-dep.out
f0881698
JM
1506 cmp $< /dev/null > $@; \
1507 $(evaluate-test)
a1b85ae8
FW
1508
1509$(objpfx)tst-audit11.out: $(objpfx)tst-auditmod11.so $(objpfx)tst-audit11mod1.so
1510$(objpfx)tst-audit11: $(libdl)
1511tst-audit11-ENV = LD_AUDIT=$(objpfx)tst-auditmod11.so
1512$(objpfx)tst-audit11mod1.so: $(objpfx)tst-audit11mod2.so
1513LDFLAGS-tst-audit11mod2.so = -Wl,--version-script=tst-audit11mod2.map,-soname,tst-audit11mod2.so
1514
1515$(objpfx)tst-audit12.out: $(objpfx)tst-auditmod12.so $(objpfx)tst-audit12mod1.so $(objpfx)tst-audit12mod3.so
1516$(objpfx)tst-audit12: $(libdl)
1517tst-audit12-ENV = LD_AUDIT=$(objpfx)tst-auditmod12.so
1518$(objpfx)tst-audit12mod1.so: $(objpfx)tst-audit12mod2.so
1519LDFLAGS-tst-audit12mod2.so = -Wl,--version-script=tst-audit12mod2.map
89569c8b 1520
b3fbfe81
AZ
1521$(objpfx)tst-audit13.out: $(objpfx)tst-audit13mod1.so
1522LDFLAGS-tst-audit13mod1.so = -Wl,-z,lazy
1523tst-audit13-ENV = LD_AUDIT=$(objpfx)tst-audit13mod1.so
1524
c7bf5cea
FW
1525$(objpfx)tst-auditmany.out: $(objpfx)tst-auditmanymod1.so \
1526 $(objpfx)tst-auditmanymod2.so $(objpfx)tst-auditmanymod3.so \
1527 $(objpfx)tst-auditmanymod4.so $(objpfx)tst-auditmanymod5.so \
1528 $(objpfx)tst-auditmanymod6.so $(objpfx)tst-auditmanymod7.so \
1529 $(objpfx)tst-auditmanymod8.so $(objpfx)tst-auditmanymod9.so
1530tst-auditmany-ENV = \
1531 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
1532
8f7a75d7
FW
1533LDFLAGS-tst-audit14 = -Wl,--audit=tst-auditlogmod-1.so
1534$(objpfx)tst-auditlogmod-1.so: $(libsupport)
1535$(objpfx)tst-audit14.out: $(objpfx)tst-auditlogmod-1.so
1536LDFLAGS-tst-audit15 = \
1537 -Wl,--audit=tst-auditlogmod-1.so,--depaudit=tst-auditlogmod-2.so
1538$(objpfx)tst-auditlogmod-2.so: $(libsupport)
1539$(objpfx)tst-audit15.out: \
1540 $(objpfx)tst-auditlogmod-1.so $(objpfx)tst-auditlogmod-2.so
1541LDFLAGS-tst-audit16 = \
1542 -Wl,--audit=tst-auditlogmod-1.so:tst-auditlogmod-2.so \
1543 -Wl,--depaudit=tst-auditlogmod-3.so
1544$(objpfx)tst-auditlogmod-3.so: $(libsupport)
1545$(objpfx)tst-audit16.out: \
1546 $(objpfx)tst-auditlogmod-1.so $(objpfx)tst-auditlogmod-2.so \
1547 $(objpfx)tst-auditlogmod-3.so
1548
f0b2132b
FW
1549# tst-sonamemove links against an older implementation of the library.
1550LDFLAGS-tst-sonamemove-linkmod1.so = \
1551 -Wl,--version-script=tst-sonamemove-linkmod1.map \
1552 -Wl,-soname,tst-sonamemove-runmod1.so
1553LDFLAGS-tst-sonamemove-runmod1.so = -Wl,--no-as-needed \
1554 -Wl,--version-script=tst-sonamemove-runmod1.map \
1555 -Wl,-soname,tst-sonamemove-runmod1.so
1556LDFLAGS-tst-sonamemove-runmod2.so = \
1557 -Wl,--version-script=tst-sonamemove-runmod2.map \
1558 -Wl,-soname,tst-sonamemove-runmod2.so
1559$(objpfx)tst-sonamemove-runmod1.so: $(objpfx)tst-sonamemove-runmod2.so
1560# Link against the link module, but depend on the run-time modules
1561# for execution.
1562$(objpfx)tst-sonamemove-link: $(objpfx)tst-sonamemove-linkmod1.so
1563$(objpfx)tst-sonamemove-link.out: \
1564 $(objpfx)tst-sonamemove-runmod1.so \
1565 $(objpfx)tst-sonamemove-runmod2.so
1566$(objpfx)tst-sonamemove-dlopen: $(libdl)
1567$(objpfx)tst-sonamemove-dlopen.out: \
1568 $(objpfx)tst-sonamemove-runmod1.so \
1569 $(objpfx)tst-sonamemove-runmod2.so
1570
9e78f6f6
FW
1571# Override -z defs, so that we can reference an undefined symbol.
1572# Force lazy binding for the same reason.
1573LDFLAGS-tst-latepthreadmod.so = \
1574 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
f91d3fd6
SL
1575# Do not optimize sibling calls as the test relies on a JMP_SLOT relocation for
1576# function this_function_is_not_defined.
36975e8e 1577CFLAGS-tst-latepthreadmod.c += -fno-optimize-sibling-calls
9e78f6f6
FW
1578$(objpfx)tst-latepthreadmod.so: $(shared-thread-library)
1579$(objpfx)tst-latepthread: $(libdl)
1580$(objpfx)tst-latepthread.out: $(objpfx)tst-latepthreadmod.so
1581
01b23a30
FW
1582# The test modules are parameterized by preprocessor macros.
1583$(patsubst %,$(objpfx)%.os,$(tst-tls-many-dynamic-modules)): \
1584 $(objpfx)tst-tls-manydynamic%mod.os : tst-tls-manydynamicmod.c
1585 $(compile-command.c) \
1586 -DNAME=tls_global_$* -DSETTER=set_value_$* -DGETTER=get_value_$*
1587$(objpfx)tst-tls-manydynamic: $(libdl) $(shared-thread-library)
1588$(objpfx)tst-tls-manydynamic.out: \
1589 $(patsubst %,$(objpfx)%.so,$(tst-tls-many-dynamic-modules))
1590
89569c8b
L
1591tst-prelink-ENV = LD_TRACE_PRELINKING=1
1592
1593$(objpfx)tst-prelink-conflict.out: $(objpfx)tst-prelink.out
1594 grep stdout $< | grep conflict | $(AWK) '{ print $$10, $$11 }' > $@
1595
1596$(objpfx)tst-prelink-cmp.out: tst-prelink.exp \
1597 $(objpfx)tst-prelink-conflict.out
1598 cmp $^ > $@; \
1599 $(evaluate-test)
920b35c9
FW
1600
1601$(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
d4d629e6
JM
1602 $(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' \
1603 '$(run-program-env)' > $@; \
920b35c9 1604 $(evaluate-test)
7d45c163
FW
1605
1606$(objpfx)tst-dlsym-error: $(libdl)
a0f83f0b 1607
84aa7516
CD
1608# Test static linking of all the libraries we can possibly link
1609# together. Note that in some configurations this may be less than the
1610# complete list of libraries we build but we try to maxmimize this list.
a0f83f0b
FW
1611$(objpfx)tst-linkall-static: \
1612 $(common-objpfx)math/libm.a \
a0f83f0b
FW
1613 $(common-objpfx)resolv/libresolv.a \
1614 $(common-objpfx)dlfcn/libdl.a \
1615 $(common-objpfx)login/libutil.a \
1616 $(common-objpfx)rt/librt.a \
1617 $(common-objpfx)resolv/libanl.a \
84aa7516
CD
1618 $(static-thread-library)
1619
e69d994a 1620ifeq ($(build-crypt),yes)
84aa7516
CD
1621# If we are using NSS crypto and we have the ability to link statically
1622# then we include libcrypt.a, otherwise we leave out libcrypt.a and
1623# link as much as we can into the tst-linkall-static test. This assumes
1624# that linking with libcrypt.a does everything required to include the
1625# static NSS crypto library.
1626ifeq (yesyes,$(nss-crypt)$(static-nss-crypt))
1627$(objpfx)tst-linkall-static: \
1628 $(common-objpfx)crypt/libcrypt.a
1629endif
1630# If we are not using NSS crypto then we always have the ability to link
1631# with libcrypt.a.
1632ifeq (no,$(nss-crypt))
1633$(objpfx)tst-linkall-static: \
1634 $(common-objpfx)crypt/libcrypt.a
1635endif
e69d994a 1636endif
57707b7f
CD
1637
1638# The application depends on the DSO, and the DSO loads the plugin.
1639# The plugin also depends on the DSO. This creates the circular
1640# dependency via dlopen that we're testing to make sure works.
1641$(objpfx)tst-nodelete-dlclose-dso.so: $(libdl)
1642$(objpfx)tst-nodelete-dlclose-plugin.so: $(objpfx)tst-nodelete-dlclose-dso.so
1643$(objpfx)tst-nodelete-dlclose: $(objpfx)tst-nodelete-dlclose-dso.so
1644$(objpfx)tst-nodelete-dlclose.out: $(objpfx)tst-nodelete-dlclose-dso.so \
1645 $(objpfx)tst-nodelete-dlclose-plugin.so
8b9e9c3c 1646
1c1243b6 1647tst-env-setuid-ENV = MALLOC_CHECK_=2 MALLOC_MMAP_THRESHOLD_=4096 \
ce79740b 1648 LD_HWCAP_MASK=0x1
8b9e9c3c
SP
1649tst-env-setuid-tunables-ENV = \
1650 GLIBC_TUNABLES=glibc.malloc.check=2:glibc.malloc.mmap_threshold=4096
592d5c75
L
1651
1652$(objpfx)tst-debug1: $(libdl)
1653$(objpfx)tst-debug1.out: $(objpfx)tst-debug1mod1.so
1654
1655$(objpfx)tst-debug1mod1.so: $(objpfx)testobj1.so
1656 $(OBJCOPY) --only-keep-debug $< $@
5dba84b3
L
1657
1658$(objpfx)tst-main1: $(objpfx)tst-main1mod.so
1659CRT-tst-main1 := $(csu-objpfx)crt1.o
ce16eb52 1660tst-main1-no-pie = yes
5dba84b3
L
1661LDLIBS-tst-main1 = $(libsupport)
1662tst-main1mod.so-no-z-defs = yes
82eef55f 1663
e7feec37
MR
1664LDLIBS-tst-absolute-sym-lib.so = tst-absolute-sym-lib.lds
1665$(objpfx)tst-absolute-sym-lib.so: $(LDLIBS-tst-absolute-sym-lib.so)
1666$(objpfx)tst-absolute-sym: $(objpfx)tst-absolute-sym-lib.so
1667
bac15a72
MR
1668LDLIBS-tst-absolute-zero-lib.so = tst-absolute-zero-lib.lds
1669$(objpfx)tst-absolute-zero-lib.so: $(LDLIBS-tst-absolute-zero-lib.so)
1670$(objpfx)tst-absolute-zero: $(objpfx)tst-absolute-zero-lib.so
1671
82eef55f
FW
1672# Both the main program and the DSO for tst-libc_dlvsym need to link
1673# against libdl.
1674$(objpfx)tst-libc_dlvsym: $(libdl)
1675$(objpfx)tst-libc_dlvsym-dso.so: $(libsupport) $(libdl)
1676$(objpfx)tst-libc_dlvsym.out: $(objpfx)tst-libc_dlvsym-dso.so
1677$(objpfx)tst-libc_dlvsym-static: $(common-objpfx)dlfcn/libdl.a
1678tst-libc_dlvsym-static-ENV = \
3dbbd2ff 1679 LD_LIBRARY_PATH=$(ld-library-path):$(common-objpfx)dlfcn
82eef55f 1680$(objpfx)tst-libc_dlvsym-static.out: $(objpfx)tst-libc_dlvsym-dso.so
0065aaaa
PP
1681
1682$(objpfx)tst-big-note: $(objpfx)tst-big-note-lib.so
c259196b
FW
1683# Avoid creating an ABI tag note, which may come before the
1684# artificial, large note in tst-big-note-lib.o and invalidate the
1685# test.
1686$(objpfx)tst-big-note-lib.so: $(objpfx)tst-big-note-lib.o
1687 $(LINK.o) -shared -o $@ $(LDFLAGS.so) $<
6ca8284e
AS
1688
1689$(objpfx)tst-unwind-ctor: $(objpfx)tst-unwind-ctor-lib.so
2dd12baa 1690
85bd1ddb 1691CFLAGS-tst-unwind-main.c += -funwind-tables -DUSE_PTHREADS=0
79e0cd7b
FW
1692
1693$(objpfx)tst-initfinilazyfail: $(libdl)
1694$(objpfx)tst-initfinilazyfail.out: \
1695 $(objpfx)tst-initlazyfailmod.so $(objpfx)tst-finilazyfailmod.so
1696# Override -z defs, so that we can reference an undefined symbol.
1697# Force lazy binding for the same reason.
1698LDFLAGS-tst-initlazyfailmod.so = \
1699 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
1700LDFLAGS-tst-finilazyfailmod.so = \
1701 -Wl,-z,lazy -Wl,--unresolved-symbols=ignore-all
f63b7381
FW
1702
1703$(objpfx)tst-dlopenfail: $(libdl)
1704$(objpfx)tst-dlopenfail.out: \
1705 $(objpfx)tst-dlopenfailmod1.so $(objpfx)tst-dlopenfailmod2.so
61a7c9df
FW
1706# Order matters here. tst-dlopenfaillinkmod.so's soname ensures a
1707# run-time loader failure. --as-needed breaks this test because
1708# nothing actually references tst-dlopenfailmod2.so (with its soname
1709# tst-dlopenfail-missingmod.so).
1710LDFLAGS-tst-dlopenfailmod1.so = -Wl,--no-as-needed
f63b7381
FW
1711$(objpfx)tst-dlopenfailmod1.so: \
1712 $(shared-thread-library) $(objpfx)tst-dlopenfaillinkmod.so
1713LDFLAGS-tst-dlopenfaillinkmod.so = -Wl,-soname,tst-dlopenfail-missingmod.so
1714$(objpfx)tst-dlopenfailmod2.so: $(shared-thread-library)
a332bd15
FW
1715$(objpfx)tst-dlopenfail-2: $(libdl)
1716$(objpfx)tst-dlopenfail.out: \
1717 $(objpfx)tst-dlopenfailmod1.so $(objpfx)tst-dlopenfailmod2.so \
1718 $(objpfx)tst-dlopenfailmod3.so
365624e2
FW
1719
1720$(objpfx)tst-dlopen-nodelete-reloc: $(libdl)
1721$(objpfx)tst-dlopen-nodelete-reloc.out: \
1722 $(objpfx)tst-dlopen-nodelete-reloc-mod1.so \
1723 $(objpfx)tst-dlopen-nodelete-reloc-mod2.so \
1724 $(objpfx)tst-dlopen-nodelete-reloc-mod3.so \
1725 $(objpfx)tst-dlopen-nodelete-reloc-mod4.so \
1726 $(objpfx)tst-dlopen-nodelete-reloc-mod5.so \
1727 $(objpfx)tst-dlopen-nodelete-reloc-mod6.so \
1728 $(objpfx)tst-dlopen-nodelete-reloc-mod7.so \
1729 $(objpfx)tst-dlopen-nodelete-reloc-mod8.so \
1730 $(objpfx)tst-dlopen-nodelete-reloc-mod9.so \
1731 $(objpfx)tst-dlopen-nodelete-reloc-mod10.so \
1732 $(objpfx)tst-dlopen-nodelete-reloc-mod11.so \
1733 $(objpfx)tst-dlopen-nodelete-reloc-mod12.so \
1734 $(objpfx)tst-dlopen-nodelete-reloc-mod13.so \
1735 $(objpfx)tst-dlopen-nodelete-reloc-mod14.so \
1736 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so \
1737 $(objpfx)tst-dlopen-nodelete-reloc-mod16.so \
1738 $(objpfx)tst-dlopen-nodelete-reloc-mod17.so
1739tst-dlopen-nodelete-reloc-mod2.so-no-z-defs = yes
1740LDFLAGS-tst-dlopen-nodelete-reloc-mod2.so = -Wl,-z,nodelete
1741$(objpfx)tst-dlopen-nodelete-reloc-mod4.so: \
1742 $(objpfx)tst-dlopen-nodelete-reloc-mod3.so
1743LDFLAGS-tst-dlopen-nodelete-reloc-mod4.so = -Wl,--no-as-needed
1744$(objpfx)tst-dlopen-nodelete-reloc-mod5.so: \
1745 $(objpfx)tst-dlopen-nodelete-reloc-mod4.so
1746LDFLAGS-tst-dlopen-nodelete-reloc-mod5.so = -Wl,-z,nodelete,--no-as-needed
1747tst-dlopen-nodelete-reloc-mod5.so-no-z-defs = yes
1748tst-dlopen-nodelete-reloc-mod7.so-no-z-defs = yes
1749$(objpfx)tst-dlopen-nodelete-reloc-mod8.so: $(libdl)
1750$(objpfx)tst-dlopen-nodelete-reloc-mod10.so: $(libdl)
1751tst-dlopen-nodelete-reloc-mod11.so-no-z-defs = yes
1752$(objpfx)tst-dlopen-nodelete-reloc-mod13.so: \
1753 $(objpfx)tst-dlopen-nodelete-reloc-mod12.so
1754$(objpfx)tst-dlopen-nodelete-reloc-mod15.so: \
1755 $(objpfx)tst-dlopen-nodelete-reloc-mod14.so
1756tst-dlopen-nodelete-reloc-mod16.so-no-z-defs = yes
1757$(objpfx)tst-dlopen-nodelete-reloc-mod16.so: \
1758 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so
1759LDFLAGS-tst-dlopen-nodelete-reloc-mod16.so = -Wl,--no-as-needed
1760$(objpfx)tst-dlopen-nodelete-reloc-mod17.so: \
1761 $(objpfx)tst-dlopen-nodelete-reloc-mod15.so \
1762 $(objpfx)tst-dlopen-nodelete-reloc-mod16.so
1763LDFLAGS-tst-dlopen-nodelete-reloc-mod17.so = -Wl,--no-as-needed
591236f1
AH
1764
1765$(objpfx)tst-ldconfig-ld_so_conf-update.out: $(objpfx)tst-ldconfig-ld-mod.so
1766$(objpfx)tst-ldconfig-ld_so_conf-update: $(libdl)
eb447b7b
DK
1767
1768LDFLAGS-tst-filterobj-flt.so = -Wl,--filter=$(objpfx)tst-filterobj-filtee.so
1769$(objpfx)tst-filterobj: $(objpfx)tst-filterobj-flt.so
1770$(objpfx)tst-filterobj-dlopen: $(libdl)
1771$(objpfx)tst-filterobj.out: $(objpfx)tst-filterobj-filtee.so
1772$(objpfx)tst-filterobj-dlopen.out: $(objpfx)tst-filterobj-filtee.so
1773
1774LDFLAGS-tst-filterobj-aux.so = -Wl,--auxiliary=$(objpfx)tst-filterobj-filtee.so
1775$(objpfx)tst-auxobj: $(objpfx)tst-filterobj-aux.so
1776$(objpfx)tst-auxobj-dlopen: $(libdl)
1777$(objpfx)tst-auxobj.out: $(objpfx)tst-filterobj-filtee.so
1778$(objpfx)tst-auxobj-dlopen.out: $(objpfx)tst-filterobj-filtee.so
706ad1e7
FW
1779
1780$(objpfx)tst-single_threaded: $(objpfx)tst-single_threaded-mod1.so $(libdl)
1781$(objpfx)tst-single_threaded.out: \
1782 $(objpfx)tst-single_threaded-mod2.so $(objpfx)tst-single_threaded-mod3.so
1783$(objpfx)tst-single_threaded-static-dlopen: \
1784 $(objpfx)tst-single_threaded-mod1.o $(common-objpfx)dlfcn/libdl.a
1785$(objpfx)tst-single_threaded-static-dlopen.out: \
1786 $(objpfx)tst-single_threaded-mod2.so
1787$(objpfx)tst-single_threaded-pthread: \
1788 $(objpfx)tst-single_threaded-mod1.so $(libdl) $(shared-thread-library)
1789$(objpfx)tst-single_threaded-pthread.out: \
1790 $(objpfx)tst-single_threaded-mod2.so $(objpfx)tst-single_threaded-mod3.so \
1791 $(objpfx)tst-single_threaded-mod4.so
1792$(objpfx)tst-single_threaded-pthread-static: $(static-thread-library)
ffb17e7b
SN
1793
1794$(objpfx)tst-tls-ie: $(libdl) $(shared-thread-library)
1795$(objpfx)tst-tls-ie.out: \
1796 $(objpfx)tst-tls-ie-mod0.so \
1797 $(objpfx)tst-tls-ie-mod1.so \
1798 $(objpfx)tst-tls-ie-mod2.so \
1799 $(objpfx)tst-tls-ie-mod3.so \
1800 $(objpfx)tst-tls-ie-mod4.so \
1801 $(objpfx)tst-tls-ie-mod5.so \
1802 $(objpfx)tst-tls-ie-mod6.so
1803
1804$(objpfx)tst-tls-ie-dlmopen: $(libdl) $(shared-thread-library)
1805$(objpfx)tst-tls-ie-dlmopen.out: \
1806 $(objpfx)tst-tls-ie-mod0.so \
1807 $(objpfx)tst-tls-ie-mod1.so \
1808 $(objpfx)tst-tls-ie-mod2.so \
1809 $(objpfx)tst-tls-ie-mod3.so \
1810 $(objpfx)tst-tls-ie-mod4.so \
1811 $(objpfx)tst-tls-ie-mod5.so \
1812 $(objpfx)tst-tls-ie-mod6.so
07ed32f9
FW
1813
1814$(objpfx)tst-tls-surplus: $(libdl)
c6702789
VM
1815
1816$(objpfx)argv0test.out: tst-rtld-argv0.sh $(objpfx)ld.so \
1817 $(objpfx)argv0test
1818 $(SHELL) $< $(objpfx)ld.so $(objpfx)argv0test \
1819 '$(test-wrapper-env)' '$(run_program_env)' \
1820 '$(rpath-link)' 'test-argv0' > $@; \
1821 $(evaluate-test)
dad90d52
FW
1822
1823# A list containing the name of the most likely searched subdirectory
1824# of the glibc-hwcaps directory, for each supported architecture (in
1825# other words, the oldest hardware level recognized by the
1826# glibc-hwcaps mechanism for this architecture). Used to obtain test
1827# coverage for some glibc-hwcaps tests for the widest possible range
1828# of systems.
1829glibc-hwcaps-first-subdirs-for-tests =
1830
1831# The test modules are parameterized by preprocessor macros.
1832LDFLAGS-libmarkermod1-1.so += -Wl,-soname,libmarkermod1.so
1833LDFLAGS-libmarkermod2-1.so += -Wl,-soname,libmarkermod2.so
1834LDFLAGS-libmarkermod3-1.so += -Wl,-soname,libmarkermod3.so
1835LDFLAGS-libmarkermod4-1.so += -Wl,-soname,libmarkermod4.so
1836$(objpfx)libmarkermod%.os : markermodMARKER-VALUE.c
1837 $(compile-command.c) \
1838 -DMARKER=marker$(firstword $(subst -, ,$*)) \
1839 -DVALUE=$(lastword $(subst -, ,$*))
1840$(objpfx)libmarkermod1.so: $(objpfx)libmarkermod1-1.so
1841 cp $< $@
1842$(objpfx)libmarkermod2.so: $(objpfx)libmarkermod2-1.so
1843 cp $< $@
1844$(objpfx)libmarkermod3.so: $(objpfx)libmarkermod3-1.so
1845 cp $< $@
1846$(objpfx)libmarkermod4.so: $(objpfx)libmarkermod4-1.so
1847 cp $< $@
1848
1849# tst-glibc-hwcaps-prepend checks that --glibc-hwcaps-prepend is
1850# preferred over auto-detected subdirectories.
1851$(objpfx)tst-glibc-hwcaps-prepend: $(objpfx)libmarkermod1-1.so
1852$(objpfx)glibc-hwcaps/prepend-markermod1/libmarkermod1.so: \
1853 $(objpfx)libmarkermod1-2.so
1854 $(make-target-directory)
1855 cp $< $@
1856$(objpfx)glibc-hwcaps/%/libmarkermod1.so: $(objpfx)libmarkermod1-3.so
1857 $(make-target-directory)
1858 cp $< $@
1859$(objpfx)tst-glibc-hwcaps-prepend.out: \
1860 $(objpfx)tst-glibc-hwcaps-prepend $(objpfx)libmarkermod1.so \
1861 $(patsubst %,$(objpfx)glibc-hwcaps/%/libmarkermod1.so,prepend-markermod1 \
1862 $(glibc-hwcaps-first-subdirs-for-tests))
1863 $(test-wrapper) $(rtld-prefix) \
1864 --glibc-hwcaps-prepend prepend-markermod1 \
1865 $< > $@; \
1866 $(evaluate-test)
1867
1868# tst-glibc-hwcaps-mask checks that --glibc-hwcaps-mask can be used to
1869# suppress all auto-detected subdirectories.
1870$(objpfx)tst-glibc-hwcaps-mask: $(objpfx)libmarkermod1-1.so
1871$(objpfx)tst-glibc-hwcaps-mask.out: \
1872 $(objpfx)tst-glibc-hwcaps-mask $(objpfx)libmarkermod1.so \
1873 $(patsubst %,$(objpfx)glibc-hwcaps/%/libmarkermod1.so,\
1874 $(glibc-hwcaps-first-subdirs-for-tests))
1875 $(test-wrapper) $(rtld-prefix) \
1876 --glibc-hwcaps-mask does-not-exist \
1877 $< > $@; \
1878 $(evaluate-test)