*** empty log message ***
[deliverable/binutils-gdb.git] / gold / testsuite / Makefile.am
CommitLineData
5a6f7e2d
ILT
1# Process this file with automake to generate Makefile.in
2
537b5f51
ILT
3# As far as I can tell automake testing support assumes that the build
4# system and the host system are the same. So these tests will not
5# work when building with a cross-compiler.
6
14ec8efd
RW
7# Ignore warning about AM_PROG_CC_C_O due to large_CFLAGS
8AUTOMAKE_OPTIONS = foreign -Wno-portability
5a6f7e2d 9
f958d5fc
ILT
10# The two_file_test tests -fmerge-constants, so we simply always turn
11# it on. This may need to be controlled by a configure option
12# eventually.
89fc3421 13AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS) -fmerge-constants
494e05f4 14AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS) -fmerge-constants
5a6f7e2d 15
14ec8efd 16AM_CPPFLAGS = \
5a6f7e2d 17 -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../../include \
155a0dd7 18 -I$(srcdir)/../../elfcpp -I.. \
5a6f7e2d
ILT
19 -DLOCALEDIR="\"$(datadir)/locale\"" \
20 @INCINTL@
21
6835af53
ILT
22TEST_READELF = $(top_builddir)/../binutils/readelf
23TEST_OBJDUMP = $(top_builddir)/../binutils/objdump
24TEST_CXXFILT = $(top_builddir)/../binutils/cxxfilt
25TEST_STRIP = $(top_builddir)/../binutils/strip-new
fbd8a257 26TEST_AR = $(top_builddir)/../binutils/ar
531813ad 27TEST_NM = $(top_builddir)/../binutils/nm-new
364c7fa5 28TEST_AS = $(top_builddir)/../gas/as-new
6835af53 29
89fc3421
CC
30if PLUGINS
31LIBDL = -ldl
32endif
33
fe9a4c12
ILT
34if THREADS
35THREADSLIB = -lpthread
36endif
37
155a0dd7
ILT
38if OMP_SUPPORT
39TLS_TEST_C_CFLAGS = -fopenmp
40endif
41
351a8000
ILT
42# 'make clean' is good about deleting some intermediate files (such as
43# .o's), but not all of them (such as .so's and .err files). We
44# improve on that here. automake-1.9 info docs say "mostlyclean" is
45# the right choice for files 'make' builds that people rebuild.
72fef11a 46MOSTLYCLEANFILES = *.so *.syms *.stdout
6eee141f 47
6eee141f 48
351a8000
ILT
49# We will add to these later, for each individual test. Note
50# that we add each test under check_SCRIPTS or check_PROGRAMS;
51# the TESTS variable is automatically populated from these.
52check_SCRIPTS =
53check_DATA =
54check_PROGRAMS =
d491d34e
ILT
55BUILT_SOURCES =
56
351a8000 57TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
22dc1b09 58
351a8000
ILT
59# ---------------------------------------------------------------------
60# These tests test the internals of gold (unittests).
5a6f7e2d 61
351a8000 62# Infrastucture needed for the unittests
5a6f7e2d
ILT
63check_LIBRARIES = libgoldtest.a
64libgoldtest_a_SOURCES = test.cc testmain.cc testfile.cc
65
ad2d6943
ILT
66DEPENDENCIES = \
67 libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL_DEP)
fe9a4c12 68LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
89fc3421 69 $(THREADSLIB) $(LIBDL)
5a6f7e2d 70
5a6f7e2d 71
351a8000
ILT
72# The unittests themselves
73check_PROGRAMS += object_unittest
5a6f7e2d 74object_unittest_SOURCES = object_unittest.cc
22dc1b09 75
bc644c6c
ILT
76check_PROGRAMS += binary_unittest
77binary_unittest_SOURCES = binary_unittest.cc
78
351a8000
ILT
79
80# ---------------------------------------------------------------------
81# These tests test the output of gold (end-to-end tests). In
82# particular, they make sure that gold can link "difficult" object
83# files, and the resulting object files run correctly. These can only
84# run if we've built ld-new for the native architecture (that is,
85# we're not cross-compiling it), since we run ld-new as part of these
86# tests. We use the gcc-specific flag '-B' to use our linker instead
87# of the default linker, which is why we only run our tests under gcc.
a360aedd 88
e2827e5f 89if NATIVE_LINKER
351a8000 90if GCC
e2827e5f 91
351a8000
ILT
92# Infrastucture needed for the unittests: a directory where the linker
93# is named 'ld'. This is because the -B flag appends 'ld' to its arg.
e2827e5f
ILT
94gcctestdir/ld: ../ld-new
95 test -d gcctestdir || mkdir -p gcctestdir
96 rm -f gcctestdir/ld
97 (cd gcctestdir && $(LN_S) ../../ld-new ld)
98
351a8000
ILT
99# Each of these .o's is a useful, small complete program. They're
100# particularly useful for making sure ld-new's flags do what they're
101# supposed to (hence their names), but are used for many tests that
102# don't actually involve analyzing input data.
43771f76
ILT
103flagstest_debug.o: constructor_test.cc
104 $(CXXCOMPILE) -O0 -g -c -o $@ $<
105flagstest_ndebug.o: constructor_test.cc
106 $(CXXCOMPILE) -O0 -c -o $@ $<
107
325e6408
RÁE
108check_SCRIPTS += incremental_test.sh
109check_DATA += incremental_test.stdout
110MOSTLYCLEANFILES += incremental_test
111incremental_test_1.o: incremental_test_1.c
112 $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
113incremental_test_2.o: incremental_test_2.c
114 $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
115incremental_test: incremental_test_1.o incremental_test_2.o gcctestdir/ld
116 $(LINK) -Bgcctestdir/ -Wl,-incremental incremental_test_1.o incremental_test_2.o -Wl,-debug 2> incremental_test.cmdline
117incremental_test.stdout: incremental_test ../incremental-dump
118 ../incremental-dump incremental_test > $@
43771f76 119
531813ad
ST
120check_SCRIPTS += gc_comdat_test.sh
121check_DATA += gc_comdat_test.stdout
72fef11a 122MOSTLYCLEANFILES += gc_comdat_test
531813ad 123gc_comdat_test_1.o: gc_comdat_test_1.cc
4daadc0d 124 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
531813ad 125gc_comdat_test_2.o: gc_comdat_test_2.cc
4daadc0d 126 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
531813ad 127gc_comdat_test: gc_comdat_test_1.o gc_comdat_test_2.o gcctestdir/ld
4daadc0d 128 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
531813ad
ST
129gc_comdat_test.stdout: gc_comdat_test
130 $(TEST_NM) -C gc_comdat_test > gc_comdat_test.stdout
131
27721062
ST
132check_SCRIPTS += gc_tls_test.sh
133check_DATA += gc_tls_test.stdout
72fef11a 134MOSTLYCLEANFILES += gc_tls_test
27721062
ST
135gc_tls_test.o: gc_tls_test.cc
136 $(CXXCOMPILE) -O0 -c -g -o $@ $<
137gc_tls_test:gc_tls_test.o gcctestdir/ld
138 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_tls_test.o
139gc_tls_test.stdout: gc_tls_test
140 $(TEST_NM) -C gc_tls_test > gc_tls_test.stdout
141
f1ec9ded
ST
142check_SCRIPTS += gc_orphan_section_test.sh
143check_DATA += gc_orphan_section_test.stdout
144MOSTLYCLEANFILES += gc_orphan_section_test
145gc_orphan_section_test.o: gc_orphan_section_test.cc
146 $(CXXCOMPILE) -O0 -c -g -o $@ $<
147gc_orphan_section_test:gc_orphan_section_test.o gcctestdir/ld
148 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_orphan_section_test.o
149gc_orphan_section_test.stdout: gc_orphan_section_test
150 $(TEST_NM) gc_orphan_section_test > gc_orphan_section_test.stdout
151
ef15dade
ST
152check_SCRIPTS += icf_test.sh
153check_DATA += icf_test.stdout
72fef11a 154MOSTLYCLEANFILES += icf_test
ef15dade
ST
155icf_test.o: icf_test.cc
156 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
157icf_test: icf_test.o gcctestdir/ld
032ce4e9 158 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all icf_test.o
ef15dade
ST
159icf_test.stdout: icf_test
160 $(TEST_NM) -C icf_test > icf_test.stdout
161
48c187ce
ST
162check_SCRIPTS += icf_keep_unique_test.sh
163check_DATA += icf_keep_unique_test.stdout
72fef11a 164MOSTLYCLEANFILES += icf_keep_unique_test
48c187ce
ST
165icf_keep_unique_test.o: icf_keep_unique_test.cc
166 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
167icf_keep_unique_test: icf_keep_unique_test.o gcctestdir/ld
032ce4e9 168 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all -Wl,--keep-unique,_Z11unique_funcv icf_keep_unique_test.o
48c187ce
ST
169icf_keep_unique_test.stdout: icf_keep_unique_test
170 $(TEST_NM) -C icf_keep_unique_test > icf_keep_unique_test.stdout
531813ad 171
032ce4e9 172check_SCRIPTS += icf_safe_test.sh
21bb3914 173check_DATA += icf_safe_test_1.stdout icf_safe_test_2.stdout
032ce4e9 174MOSTLYCLEANFILES += icf_safe_test
21bb3914 175icf_safe_test.o: icf_safe_test.cc
032ce4e9
ST
176 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
177icf_safe_test: icf_safe_test.o gcctestdir/ld
178 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=safe icf_safe_test.o
21bb3914
ST
179icf_safe_test_1.stdout: icf_safe_test
180 $(TEST_NM) icf_safe_test > icf_safe_test_1.stdout
181icf_safe_test_2.stdout: icf_safe_test
182 $(TEST_READELF) -h icf_safe_test > icf_safe_test_2.stdout
183
184check_SCRIPTS += icf_safe_so_test.sh
185check_DATA += icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout
186MOSTLYCLEANFILES += icf_safe_so_test
187icf_safe_so_test.o: icf_safe_so_test.cc
188 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
189icf_safe_so_test: icf_safe_so_test.o gcctestdir/ld
190 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=safe icf_safe_so_test.o -fPIC -shared
191icf_safe_so_test_1.stdout: icf_safe_so_test
192 $(TEST_NM) icf_safe_so_test > icf_safe_so_test_1.stdout
193icf_safe_so_test_2.stdout: icf_safe_so_test
194 $(TEST_READELF) -h icf_safe_so_test > icf_safe_so_test_2.stdout
032ce4e9 195
351a8000
ILT
196check_PROGRAMS += basic_test
197check_PROGRAMS += basic_static_test
198check_PROGRAMS += basic_pic_test
199check_PROGRAMS += basic_static_pic_test
56ba9a23 200basic_test.o: basic_test.cc
22dc1b09 201 $(CXXCOMPILE) -O0 -c -o $@ $<
56ba9a23
ILT
202basic_test: basic_test.o gcctestdir/ld
203 $(CXXLINK) -Bgcctestdir/ basic_test.o
204basic_static_test: basic_test.o gcctestdir/ld
205 $(CXXLINK) -Bgcctestdir/ -static basic_test.o
22dc1b09 206
56ba9a23 207basic_pic_test.o: basic_test.cc
22dc1b09 208 $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
56ba9a23
ILT
209basic_pic_test: basic_pic_test.o gcctestdir/ld
210 $(CXXLINK) -Bgcctestdir/ basic_pic_test.o
211basic_static_pic_test: basic_pic_test.o gcctestdir/ld
212 $(CXXLINK) -Bgcctestdir/ -static basic_pic_test.o
22dc1b09 213
374ad285
ILT
214check_PROGRAMS += basic_pie_test
215basic_pie_test.o: basic_test.cc
216 $(CXXCOMPILE) -O0 -c -fpie -o $@ $<
217basic_pie_test: basic_pie_test.o gcctestdir/ld
218 $(CXXLINK) -Bgcctestdir/ -pie basic_pie_test.o
351a8000
ILT
219
220check_PROGRAMS += constructor_test
221check_PROGRAMS += constructor_static_test
d5026652
ILT
222constructor_test_SOURCES = constructor_test.cc
223constructor_test_DEPENDENCIES = gcctestdir/ld
224constructor_test_LDFLAGS = -Bgcctestdir/
1abce4a6 225constructor_test_LDADD =
d5026652 226
351a8000
ILT
227constructor_static_test_SOURCES = $(constructor_test_SOURCES)
228constructor_static_test_DEPENDENCIES = $(constructor_test_DEPENDENCIES)
229constructor_static_test_LDFLAGS = $(constructor_test_LDFLAGS) -static
1abce4a6 230constructor_static_test_LDADD = $(constructor_test_LDADD)
cb615bc1 231
351a8000
ILT
232
233check_PROGRAMS += two_file_test
234check_PROGRAMS += two_file_static_test
235check_PROGRAMS += two_file_pic_test
3bd52c28
ILT
236two_file_test_SOURCES = \
237 two_file_test_1.cc \
03e8f2b2 238 two_file_test_1b.cc \
3bd52c28
ILT
239 two_file_test_2.cc \
240 two_file_test_main.cc \
241 two_file_test.h
242two_file_test_DEPENDENCIES = gcctestdir/ld
243two_file_test_LDFLAGS = -Bgcctestdir/
1abce4a6 244two_file_test_LDADD =
3bd52c28 245
351a8000
ILT
246two_file_static_test_SOURCES = $(two_file_test_SOURCES)
247two_file_static_test_DEPENDENCIES = $(two_file_test_DEPENDENCIES)
248two_file_static_test_LDFLAGS = $(two_file_test_LDFLAGS) -static
1abce4a6 249two_file_static_test_LDADD = $(two_file_test_LDADD)
f958d5fc
ILT
250
251two_file_pic_test_SOURCES = two_file_test_main.cc
252two_file_pic_test_DEPENDENCIES = \
03e8f2b2 253 gcctestdir/ld two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 254two_file_pic_test_LDFLAGS = -Bgcctestdir/
03e8f2b2 255two_file_pic_test_LDADD = two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 256
351a8000
ILT
257
258check_PROGRAMS += two_file_shared_1_test
259check_PROGRAMS += two_file_shared_2_test
260check_PROGRAMS += two_file_shared_1_pic_2_test
261check_PROGRAMS += two_file_shared_2_pic_1_test
262check_PROGRAMS += two_file_same_shared_test
263check_PROGRAMS += two_file_separate_shared_12_test
264check_PROGRAMS += two_file_separate_shared_21_test
265two_file_test_1_pic.o: two_file_test_1.cc
266 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
267two_file_test_1b_pic.o: two_file_test_1b.cc
268 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000
ILT
269two_file_test_2_pic.o: two_file_test_2.cc
270 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
271two_file_shared_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o gcctestdir/ld
272 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o
351a8000
ILT
273two_file_shared_2.so: two_file_test_2_pic.o gcctestdir/ld
274 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2_pic.o
03e8f2b2
ILT
275two_file_shared.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o gcctestdir/ld
276 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
351a8000 277
3bd52c28
ILT
278two_file_shared_1_test_SOURCES = two_file_test_2.cc two_file_test_main.cc
279two_file_shared_1_test_DEPENDENCIES = gcctestdir/ld two_file_shared_1.so
280two_file_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
281two_file_shared_1_test_LDADD = two_file_shared_1.so
282
03e8f2b2 283two_file_shared_2_test_SOURCES = two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
284two_file_shared_2_test_DEPENDENCIES = gcctestdir/ld two_file_shared_2.so
285two_file_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
286two_file_shared_2_test_LDADD = two_file_shared_2.so
287
386c048c
ILT
288two_file_shared_1_pic_2_test_SOURCES = two_file_test_main.cc
289two_file_shared_1_pic_2_test_DEPENDENCIES = \
2f2de248 290 gcctestdir/ld two_file_shared_2.so two_file_test_1_pic.o two_file_test_1b_pic.o
386c048c 291two_file_shared_1_pic_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
03e8f2b2 292two_file_shared_1_pic_2_test_LDADD = two_file_test_1_pic.o two_file_test_1b_pic.o two_file_shared_2.so
386c048c
ILT
293
294two_file_shared_2_pic_1_test_SOURCES = two_file_test_main.cc
295two_file_shared_2_pic_1_test_DEPENDENCIES = \
296 gcctestdir/ld two_file_shared_2.so two_file_test_2_pic.o
297two_file_shared_2_pic_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
298two_file_shared_2_pic_1_test_LDADD = two_file_test_2_pic.o two_file_shared_1.so
299
3bd52c28
ILT
300two_file_same_shared_test_SOURCES = two_file_test_main.cc
301two_file_same_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared.so
302two_file_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
303two_file_same_shared_test_LDADD = two_file_shared.so
304
305two_file_separate_shared_12_test_SOURCES = two_file_test_main.cc
306two_file_separate_shared_12_test_DEPENDENCIES = \
307 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
308two_file_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
309two_file_separate_shared_12_test_LDADD = \
310 two_file_shared_1.so two_file_shared_2.so
311
312two_file_separate_shared_21_test_SOURCES = two_file_test_main.cc
313two_file_separate_shared_21_test_DEPENDENCIES = \
314 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
315two_file_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
316two_file_separate_shared_21_test_LDADD = \
317 two_file_shared_2.so two_file_shared_1.so
318
6a74a719
ILT
319check_PROGRAMS += two_file_relocatable_test
320two_file_relocatable_test_SOURCES = two_file_test_main.cc
321two_file_relocatable_test_DEPENDENCIES = \
322 gcctestdir/ld two_file_relocatable.o
323two_file_relocatable_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
324two_file_relocatable_test_LDADD = two_file_relocatable.o
325two_file_relocatable.o: gcctestdir/ld two_file_test_1.o two_file_test_1b.o two_file_test_2.o
326 gcctestdir/ld -r -o $@ two_file_test_1.o two_file_test_1b.o two_file_test_2.o
327
374ad285
ILT
328check_PROGRAMS += two_file_pie_test
329two_file_test_1_pie.o: two_file_test_1.cc
330 $(CXXCOMPILE) -c -fpie -o $@ $<
331two_file_test_1b_pie.o: two_file_test_1b.cc
332 $(CXXCOMPILE) -c -fpie -o $@ $<
333two_file_test_2_pie.o: two_file_test_2.cc
334 $(CXXCOMPILE) -c -fpie -o $@ $<
335two_file_test_main_pie.o: two_file_test_main.cc
336 $(CXXCOMPILE) -c -fpie -o $@ $<
337two_file_pie_test: two_file_test_1_pie.o two_file_test_1b_pie.o \
338 two_file_test_2_pie.o two_file_test_main_pie.o gcctestdir/ld
339 $(CXXLINK) -Bgcctestdir/ -pie two_file_test_1_pie.o two_file_test_1b_pie.o two_file_test_2_pie.o two_file_test_main_pie.o
340
031cdbed
ILT
341check_SCRIPTS += two_file_shared.sh
342check_DATA += two_file_shared.dbg
72fef11a 343MOSTLYCLEANFILES += two_file_shared.dbg
031cdbed
ILT
344two_file_shared.dbg: two_file_shared.so
345 $(TEST_READELF) -w $< >$@ 2>/dev/null
346
63402fe4
ILT
347# The nonpic tests will fail on platforms which can not put non-PIC
348# code into shared libraries, so we just don't run them in that case.
63402fe4 349if FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 350
351a8000
ILT
351check_PROGRAMS += two_file_shared_1_nonpic_test
352check_PROGRAMS += two_file_shared_2_nonpic_test
353check_PROGRAMS += two_file_same_shared_nonpic_test
354check_PROGRAMS += two_file_separate_shared_12_nonpic_test
355check_PROGRAMS += two_file_separate_shared_21_nonpic_test
03e8f2b2
ILT
356check_PROGRAMS += two_file_mixed_shared_test
357check_PROGRAMS += two_file_mixed_2_shared_test
351a8000 358two_file_shared_1_nonpic.so: two_file_test_1.o gcctestdir/ld
03e8f2b2 359 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o
351a8000
ILT
360two_file_shared_2_nonpic.so: two_file_test_2.o gcctestdir/ld
361 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2.o
03e8f2b2
ILT
362two_file_shared_nonpic.so: two_file_test_1.o two_file_test_1b.o two_file_test_2.o gcctestdir/ld
363 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o
364two_file_shared_mixed.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o gcctestdir/ld
365 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o
366two_file_shared_mixed_1.so: two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so gcctestdir/ld
367 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so
351a8000 368
3bd52c28
ILT
369two_file_shared_1_nonpic_test_SOURCES = \
370 two_file_test_2.cc two_file_test_main.cc
371two_file_shared_1_nonpic_test_DEPENDENCIES = \
372 gcctestdir/ld two_file_shared_1_nonpic.so
373two_file_shared_1_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
374two_file_shared_1_nonpic_test_LDADD = two_file_shared_1_nonpic.so
375
376two_file_shared_2_nonpic_test_SOURCES = \
03e8f2b2 377 two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
378two_file_shared_2_nonpic_test_DEPENDENCIES = \
379 gcctestdir/ld two_file_shared_2_nonpic.so
380two_file_shared_2_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
381two_file_shared_2_nonpic_test_LDADD = two_file_shared_2_nonpic.so
382
383two_file_same_shared_nonpic_test_SOURCES = two_file_test_main.cc
384two_file_same_shared_nonpic_test_DEPENDENCIES = \
385 gcctestdir/ld two_file_shared_nonpic.so
386two_file_same_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
387two_file_same_shared_nonpic_test_LDADD = two_file_shared_nonpic.so
388
389two_file_separate_shared_12_nonpic_test_SOURCES = two_file_test_main.cc
390two_file_separate_shared_12_nonpic_test_DEPENDENCIES = \
391 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
392two_file_separate_shared_12_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
393two_file_separate_shared_12_nonpic_test_LDADD = \
394 two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
395
396two_file_separate_shared_21_nonpic_test_SOURCES = two_file_test_main.cc
397two_file_separate_shared_21_nonpic_test_DEPENDENCIES = \
398 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
399two_file_separate_shared_21_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
400two_file_separate_shared_21_nonpic_test_LDADD = \
401 two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so
402
03e8f2b2
ILT
403two_file_mixed_shared_test_SOURCES = two_file_test_main.cc
404two_file_mixed_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed.so
405two_file_mixed_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
406two_file_mixed_shared_test_LDADD = two_file_shared_mixed.so
407
408two_file_mixed_2_shared_test_SOURCES = two_file_test_main.cc
409two_file_mixed_2_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed_1.so two_file_shared_2.so
410two_file_mixed_2_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
411two_file_mixed_2_shared_test_LDADD = two_file_shared_mixed_1.so two_file_shared_2.so
412
351a8000 413endif FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 414
6835af53
ILT
415check_PROGRAMS += two_file_strip_test
416two_file_strip_test: two_file_test
417 $(TEST_STRIP) -o two_file_strip_test two_file_test
418
419check_PROGRAMS += two_file_same_shared_strip_test
420two_file_same_shared_strip_test_SOURCES = two_file_test_main.cc
421two_file_same_shared_strip_test_DEPENDENCIES = \
422 gcctestdir/ld two_file_shared_strip.so
423two_file_same_shared_strip_test_LDFLAGS = -Bgcctestdir/ -Wl,-R.
424two_file_same_shared_strip_test_LDADD = two_file_shared_strip.so
425two_file_shared_strip.so: two_file_shared.so
426 $(TEST_STRIP) -S -o two_file_shared_strip.so two_file_shared.so
427
49bdd526
ILT
428check_PROGRAMS += common_test_1
429common_test_1_SOURCES = common_test_1.c
430common_test_1_DEPENDENCIES = gcctestdir/ld
431common_test_1_LDFLAGS = -Bgcctestdir/
1abce4a6 432common_test_1_LDADD =
351a8000 433
eda294df
ILT
434check_PROGRAMS += common_test_2
435common_test_2_SOURCES = common_test_1.c
436common_test_2_DEPENDENCIES = common_test_2.so common_test_3.so gcctestdir/ld
437common_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
438common_test_2_LDADD = common_test_2.so common_test_3.so
439common_test_2_pic.o: common_test_2.c
440 $(COMPILE) -c -fpic -o $@ $<
441common_test_2.so: common_test_2_pic.o common_test_3.so gcctestdir/ld
442 $(LINK) -Bgcctestdir/ -shared common_test_2_pic.o common_test_3.so
443common_test_3_pic.o: common_test_3.c
444 $(COMPILE) -c -fpic -o $@ $<
445common_test_3.so: common_test_3_pic.o ver_test_2.script gcctestdir/ld
446 $(LINK) -Bgcctestdir/ -shared common_test_3_pic.o -Wl,--version-script,$(srcdir)/ver_test_2.script
447
351a8000
ILT
448check_PROGRAMS += exception_test
449check_PROGRAMS += exception_static_test
450check_PROGRAMS += exception_shared_1_test
451check_PROGRAMS += exception_shared_2_test
452check_PROGRAMS += exception_same_shared_test
453check_PROGRAMS += exception_separate_shared_12_test
454check_PROGRAMS += exception_separate_shared_21_test
455exception_test_1_pic.o: exception_test_1.cc
456 $(CXXCOMPILE) -c -fpic -o $@ $<
457exception_test_2_pic.o: exception_test_2.cc
458 $(CXXCOMPILE) -c -fpic -o $@ $<
459exception_shared_1.so: exception_test_1_pic.o gcctestdir/ld
460 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o
461exception_shared_2.so: exception_test_2_pic.o gcctestdir/ld
462 $(CXXLINK) -Bgcctestdir/ -shared exception_test_2_pic.o
463exception_shared.so: exception_test_1_pic.o exception_test_2_pic.o gcctestdir/ld
464 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o exception_test_2_pic.o
63402fe4 465
3151305a
ILT
466exception_test_SOURCES = \
467 exception_test_main.cc \
468 exception_test_1.cc \
469 exception_test_2.cc \
470 exception_test.h
471exception_test_DEPENDENCIES = gcctestdir/ld
472exception_test_LDFLAGS = -Bgcctestdir/
1abce4a6 473exception_test_LDADD =
3151305a 474
351a8000
ILT
475exception_static_test_SOURCES = $(exception_test_SOURCES)
476exception_static_test_DEPENDENCIES = $(exception_test_DEPENDENCIES)
477exception_static_test_LDFLAGS = $(exception_test_LDFLAGS) -static
1abce4a6 478exception_static_test_LDADD = $(exception_test_LDADD)
3151305a
ILT
479
480exception_shared_1_test_SOURCES = exception_test_2.cc exception_test_main.cc
481exception_shared_1_test_DEPENDENCIES = gcctestdir/ld exception_shared_1.so
482exception_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
483exception_shared_1_test_LDADD = exception_shared_1.so
484
485exception_shared_2_test_SOURCES = exception_test_1.cc exception_test_main.cc
486exception_shared_2_test_DEPENDENCIES = gcctestdir/ld exception_shared_2.so
487exception_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
488exception_shared_2_test_LDADD = exception_shared_2.so
489
490exception_same_shared_test_SOURCES = exception_test_main.cc
491exception_same_shared_test_DEPENDENCIES = gcctestdir/ld exception_shared.so
492exception_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
493exception_same_shared_test_LDADD = exception_shared.so
494
495exception_separate_shared_12_test_SOURCES = exception_test_main.cc
496exception_separate_shared_12_test_DEPENDENCIES = \
497 gcctestdir/ld exception_shared_1.so exception_shared_2.so
498exception_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
499exception_separate_shared_12_test_LDADD = \
500 exception_shared_1.so exception_shared_2.so
501
502exception_separate_shared_21_test_SOURCES = exception_test_main.cc
503exception_separate_shared_21_test_DEPENDENCIES = \
504 gcctestdir/ld exception_shared_1.so exception_shared_2.so
505exception_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
506exception_separate_shared_21_test_LDADD = \
507 exception_shared_2.so exception_shared_1.so
508
3151305a 509
351a8000 510check_PROGRAMS += weak_test
a360aedd 511weak_test_SOURCES = weak_test.cc
0e470e5c 512weak_test_DEPENDENCIES = gcctestdir/ld
a360aedd 513weak_test_LDFLAGS = -Bgcctestdir/
1abce4a6 514weak_test_LDADD =
a360aedd 515
86925eef 516check_PROGRAMS += weak_undef_test
72fef11a 517MOSTLYCLEANFILES += alt/weak_undef_lib.so
86925eef
CC
518weak_undef_test_SOURCES = weak_undef_test.cc
519weak_undef_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib.so alt/weak_undef_lib.so
520weak_undef_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
521weak_undef_test_LDADD = -L . weak_undef_lib.so
522weak_undef_file1.o: weak_undef_file1.cc
523 $(CXXCOMPILE) -c -fpic -o $@ $<
524weak_undef_file2.o: weak_undef_file2.cc
525 $(CXXCOMPILE) -c -fpic -o $@ $<
526weak_undef_lib.so: weak_undef_file1.o
527 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1.o
528alt/weak_undef_lib.so: weak_undef_file2.o
529 test -d alt || mkdir -p alt
530 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2.o
351a8000 531
f3c69fca
CC
532if FN_PTRS_IN_SO_WITHOUT_PIC
533check_PROGRAMS += weak_undef_nonpic_test
72fef11a 534MOSTLYCLEANFILES += alt/weak_undef_lib_nonpic.so
f3c69fca
CC
535weak_undef_nonpic_test_SOURCES = weak_undef_test.cc
536weak_undef_nonpic_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib_nonpic.so alt/weak_undef_lib_nonpic.so
537weak_undef_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
538weak_undef_nonpic_test_LDADD = -L . weak_undef_lib_nonpic.so
539weak_undef_file1_nonpic.o: weak_undef_file1.cc
540 $(CXXCOMPILE) -c -o $@ $<
541weak_undef_file2_nonpic.o: weak_undef_file2.cc
542 $(CXXCOMPILE) -c -o $@ $<
543weak_undef_lib_nonpic.so: weak_undef_file1_nonpic.o
544 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1_nonpic.o
545alt/weak_undef_lib_nonpic.so: weak_undef_file2_nonpic.o
546 test -d alt || mkdir -p alt
547 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2_nonpic.o
548endif FN_PTRS_IN_SO_WITHOUT_PIC
549
550
99a37bfd
ILT
551check_PROGRAMS += weak_alias_test
552weak_alias_test_SOURCES = weak_alias_test_main.cc
553weak_alias_test_DEPENDENCIES = \
554 gcctestdir/ld weak_alias_test_1.so weak_alias_test_2.so \
555 weak_alias_test_3.o weak_alias_test_4.so
556weak_alias_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
557weak_alias_test_LDADD = \
558 weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o \
559 weak_alias_test_4.so
560weak_alias_test_1_pic.o: weak_alias_test_1.cc
561 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 562weak_alias_test_1.so: weak_alias_test_1_pic.o gcctestdir/ld
99a37bfd
ILT
563 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_1_pic.o
564weak_alias_test_2_pic.o: weak_alias_test_2.cc
565 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 566weak_alias_test_2.so: weak_alias_test_2_pic.o gcctestdir/ld
99a37bfd
ILT
567 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_2_pic.o
568weak_alias_test_3.o: weak_alias_test_3.cc
569 $(CXXCOMPILE) -c -o $@ $<
570weak_alias_test_4_pic.o: weak_alias_test_4.cc
571 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 572weak_alias_test_4.so: weak_alias_test_4_pic.o gcctestdir/ld
99a37bfd
ILT
573 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_4_pic.o
574
de4c45bd
ILT
575check_SCRIPTS += weak_plt.sh
576check_PROGRAMS += weak_plt
577check_DATA += weak_plt_shared.so
578weak_plt_main_pic.o: weak_plt_main.cc
579 $(CXXCOMPILE) -c -fpic -o $@ $<
580weak_plt: weak_plt_main_pic.o gcctestdir/ld
581 $(CXXLINK) -Bgcctestdir/ weak_plt_main_pic.o
582weak_plt_shared_pic.o: weak_plt_shared.cc
583 $(CXXCOMPILE) -c -fpic -o $@ $<
584weak_plt_shared.so: weak_plt_shared_pic.o gcctestdir/ld
585 $(CXXLINK) -Bgcctestdir/ -shared weak_plt_shared_pic.o
586
f34787f8
ILT
587check_PROGRAMS += copy_test
588copy_test_SOURCES = copy_test.cc
589copy_test_DEPENDENCIES = gcctestdir/ld copy_test_1.so copy_test_2.so
590copy_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
591copy_test_LDADD = copy_test_1.so copy_test_2.so
592copy_test_1_pic.o: copy_test_1.cc
593 $(CXXCOMPILE) -c -fpic -o $@ $<
594copy_test_1.so: gcctestdir/ld copy_test_1_pic.o
595 $(CXXLINK) -Bgcctestdir/ -shared copy_test_1_pic.o
596copy_test_2_pic.o: copy_test_2.cc
597 $(CXXCOMPILE) -c -fpic -o $@ $<
598copy_test_2.so: gcctestdir/ld copy_test_2_pic.o
599 $(CXXLINK) -Bgcctestdir/ -shared copy_test_2_pic.o
600
6eee141f
ILT
601if TLS
602
351a8000
ILT
603check_PROGRAMS += tls_test
604check_PROGRAMS += tls_pic_test
c7177d31 605check_PROGRAMS += tls_pie_test
b3705d2a 606check_PROGRAMS += tls_pie_pic_test
351a8000 607check_PROGRAMS += tls_shared_test
c03c7692 608check_PROGRAMS += tls_shared_ie_test
c2b45e22 609check_PROGRAMS += tls_shared_gd_to_ie_test
351a8000
ILT
610tls_test_pic.o: tls_test.cc
611 $(CXXCOMPILE) -c -fpic -o $@ $<
612tls_test_file2_pic.o: tls_test_file2.cc
613 $(CXXCOMPILE) -c -fpic -o $@ $<
155a0dd7
ILT
614tls_test_c_pic.o: tls_test_c.c
615 $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
616tls_test_shared.so: tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o gcctestdir/ld
9c2d0ef9 617 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
c2b45e22
CC
618tls_test_shared2.so: tls_test_file2_pic.o gcctestdir/ld
619 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_pic.o
351a8000 620
c03c7692
ILT
621tls_test_pic_ie.o: tls_test.cc
622 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
623tls_test_file2_pic_ie.o: tls_test_file2.cc
624 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
155a0dd7
ILT
625tls_test_c_pic_ie.o: tls_test_c.c
626 $(COMPILE) -c -fpic -ftls-model=initial-exec $(TLS_TEST_C_CFLAGS) -o $@ $<
627tls_test_ie_shared.so: tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o gcctestdir/ld
628 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
c03c7692 629
e0374858 630tls_test_SOURCES = tls_test.cc tls_test_file2.cc tls_test_main.cc tls_test.h
155a0dd7 631tls_test_DEPENDENCIES = gcctestdir/ld tls_test_c.o
6eee141f 632tls_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
633tls_test_LDADD = tls_test_c.o -lpthread
634tls_test_c.o: tls_test_c.c
635 $(COMPILE) -c $(TLS_TEST_C_CFLAGS) -o $@ $<
6eee141f
ILT
636
637tls_pic_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
638tls_pic_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o tls_test_file2_pic.o \
639 tls_test_c_pic.o
6eee141f 640tls_pic_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
641tls_pic_test_LDADD = tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o \
642 -lpthread
6eee141f 643
c7177d31
ILT
644tls_test_main_pie.o: tls_test_main.cc tls_test.h
645 $(CXXCOMPILE) -c -fpie -o $@ $<
646tls_test_pie.o: tls_test.cc tls_test.h
647 $(CXXCOMPILE) -c -fpie -o $@ $<
648tls_test_file2_pie.o: tls_test_file2.cc tls_test.h
649 $(CXXCOMPILE) -c -fpie -o $@ $<
650tls_test_c_pie.o: tls_test_c.c
651 $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
652tls_pie_test: tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o \
653 tls_test_c_pie.o gcctestdir/ld
654 $(CXXLINK) -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o tls_test_c_pie.o -lpthread
655
b3705d2a
ILT
656tls_pie_pic_test: tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o \
657 tls_test_c_pic.o gcctestdir/ld
658 $(CXXLINK) -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread
659
6eee141f
ILT
660tls_shared_test_SOURCES = tls_test_main.cc
661tls_shared_test_DEPENDENCIES = gcctestdir/ld tls_test_shared.so
662tls_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
663tls_shared_test_LDADD = tls_test_shared.so -lpthread
664
c03c7692
ILT
665tls_shared_ie_test_SOURCES = tls_test_main.cc
666tls_shared_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_ie_shared.so
667tls_shared_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
668tls_shared_ie_test_LDADD = tls_test_ie_shared.so -lpthread
669
c2b45e22 670tls_shared_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
671tls_shared_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o \
672 tls_test_c_pic.o tls_test_shared2.so
c2b45e22 673tls_shared_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
674tls_shared_gd_to_ie_test_LDADD = tls_test_pic.o tls_test_c_pic.o \
675 tls_test_shared2.so -lpthread
c2b45e22
CC
676
677if TLS_GNU2_DIALECT
678
679check_PROGRAMS += tls_shared_gnu2_gd_to_ie_test
680
681tls_test_gnu2.o: tls_test.cc
682 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
683tls_test_file2_gnu2.o: tls_test_file2.cc
684 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
155a0dd7
ILT
685tls_test_c_gnu2.o: tls_test_c.c
686 $(COMPILE) -c -fpic -mtls-dialect=gnu2 $(TLS_TEST_C_CFLAGS) -o $@ $<
c2b45e22
CC
687tls_test_gnu2_shared2.so: tls_test_file2_gnu2.o gcctestdir/ld
688 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_gnu2.o
689
690tls_shared_gnu2_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
691tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2.o \
692 tls_test_c_gnu2.o tls_test_gnu2_shared2.so
c2b45e22 693tls_shared_gnu2_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
694tls_shared_gnu2_gd_to_ie_test_LDADD = tls_test_gnu2.o tls_test_c_gnu2.o \
695 tls_test_gnu2_shared2.so -lpthread
c2b45e22
CC
696
697if TLS_DESCRIPTORS
698
699check_PROGRAMS += tls_shared_gnu2_test
700
155a0dd7
ILT
701tls_test_gnu2_shared.so: tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o gcctestdir/ld
702 $(CXXLINK) -Bgcctestdir/ -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
c2b45e22
CC
703
704tls_shared_gnu2_test_SOURCES = tls_test_main.cc
705tls_shared_gnu2_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2_shared.so
706tls_shared_gnu2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
707tls_shared_gnu2_test_LDADD = tls_test_gnu2_shared.so -lpthread
708
709endif TLS_DESCRIPTORS
710
711endif TLS_GNU2_DIALECT
712
351a8000
ILT
713if STATIC_TLS
714check_PROGRAMS += tls_static_test
715check_PROGRAMS += tls_static_pic_test
716
717tls_static_test_SOURCES = $(tls_test_SOURCES)
718tls_static_test_DEPENDENCIES = $(tls_test_DEPENDENCIES)
719tls_static_test_LDFLAGS = $(tls_test_LDFLAGS) -static
720tls_static_test_LDADD = $(tls_test_LDADD)
721
722tls_static_pic_test_SOURCES = $(tls_pic_test_SOURCES)
723tls_static_pic_test_DEPENDENCIES = $(tls_pic_test_DEPENDENCIES)
724tls_static_pic_test_LDFLAGS = $(tls_pic_test_LDFLAGS) -static
725tls_static_pic_test_LDADD = $(tls_pic_test_LDADD)
726endif
6eee141f
ILT
727
728if FN_PTRS_IN_SO_WITHOUT_PIC
351a8000 729check_PROGRAMS += tls_shared_nonpic_test
155a0dd7
ILT
730tls_test_shared_nonpic.so: tls_test.o tls_test_file2.o tls_test_c.o gcctestdir/ld
731 $(CXXLINK) -Bgcctestdir/ -shared tls_test.o tls_test_file2.o tls_test_c.o
6eee141f
ILT
732
733tls_shared_nonpic_test_SOURCES = tls_test_main.cc
734tls_shared_nonpic_test_DEPENDENCIES = gcctestdir/ld tls_test_shared_nonpic.so
735tls_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
736tls_shared_nonpic_test_LDADD = tls_test_shared_nonpic.so -lpthread
351a8000 737endif FN_PTRS_IN_SO_WITHOUT_PIC
6eee141f 738
351a8000 739endif TLS
6eee141f 740
d491d34e
ILT
741check_PROGRAMS += many_sections_test
742many_sections_test_SOURCES = many_sections_test.cc
743many_sections_test_DEPENDENCIES = gcctestdir/ld
744many_sections_test_LDFLAGS = -Bgcctestdir/ -rdynamic
1abce4a6 745many_sections_test_LDADD =
d491d34e
ILT
746
747BUILT_SOURCES += many_sections_define.h
72fef11a 748MOSTLYCLEANFILES += many_sections_define.h
d491d34e
ILT
749many_sections_define.h:
750 (for i in `seq 1 70000`; do \
751 echo "int var_$$i __attribute__((section(\"section_$$i\"))) = $$i;"; \
752 done) > $@.tmp
753 mv -f $@.tmp $@
754
755BUILT_SOURCES += many_sections_check.h
72fef11a 756MOSTLYCLEANFILES += many_sections_check.h
d491d34e 757many_sections_check.h:
4c94d6ae 758 (for i in `seq 1 1000 70000`; do \
d491d34e
ILT
759 echo "assert(var_$$i == $$i);"; \
760 done) > $@.tmp
761 mv -f $@.tmp $@
762
763check_PROGRAMS += many_sections_r_test
d491d34e
ILT
764many_sections_r_test.o: many_sections_test.o gcctestdir/ld
765 gcctestdir/ld -r -o $@ many_sections_test.o
7bc3e21a
ILT
766many_sections_r_test: many_sections_r_test.o gcctestdir/ld
767 $(CXXLINK) -Bgcctestdir/ many_sections_r_test.o $(LIBS)
6eee141f 768
2fd32231
ILT
769if CONSTRUCTOR_PRIORITY
770
771check_PROGRAMS += initpri1
772initpri1_SOURCES = initpri1.c
773initpri1_DEPENDENCIES = gcctestdir/ld
774initpri1_LDFLAGS = -Bgcctestdir/
1abce4a6 775initpri1_LDADD =
2fd32231
ILT
776
777endif
778
779
351a8000
ILT
780# Test --detect-odr-violations
781check_SCRIPTS += debug_msg.sh
6eee141f 782
351a8000
ILT
783# Create the data files that debug_msg.sh analyzes.
784check_DATA += debug_msg.err
785MOSTLYCLEANFILES += debug_msg.err
786debug_msg.o: debug_msg.cc
787 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/debug_msg.cc
788odr_violation1.o: odr_violation1.cc
789 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation1.cc
790odr_violation2.o: odr_violation2.cc
791 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation2.cc
792debug_msg.err: debug_msg.o odr_violation1.o odr_violation2.o gcctestdir/ld
793 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o "2>$@"
794 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>$@; \
795 then \
796 echo 1>&2 "Link of debug_msg should have failed"; \
797 rm -f $@; \
798 exit 1; \
799 fi
800
801# See if we can also detect problems when we're linking .so's, not .o's.
802check_DATA += debug_msg_so.err
803MOSTLYCLEANFILES += debug_msg_so.err
804debug_msg.so: debug_msg.cc gcctestdir/ld
805 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
806odr_violation1.so: odr_violation1.cc gcctestdir/ld
807 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
808odr_violation2.so: odr_violation2.cc gcctestdir/ld
809 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
810debug_msg_so.err: debug_msg.so odr_violation1.so odr_violation2.so gcctestdir/ld
811 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so "2>$@"
812 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>$@; \
813 then \
814 echo 1>&2 "Link of debug_msg_so should have failed"; \
815 rm -f $@; \
816 exit 1; \
817 fi
818
819# We also want to make sure we do something reasonable when there's no
820# debug info available. For the best test, we use .so's.
821check_DATA += debug_msg_ndebug.err
822MOSTLYCLEANFILES += debug_msg_ndebug.err
823debug_msg_ndebug.so: debug_msg.cc gcctestdir/ld
824 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
825odr_violation1_ndebug.so: odr_violation1.cc gcctestdir/ld
826 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
827odr_violation2_ndebug.so: odr_violation2.cc gcctestdir/ld
828 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
829debug_msg_ndebug.err: debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so gcctestdir/ld
830 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so "2>$@"
831 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so 2>$@; \
832 then \
833 echo 1>&2 "Link of debug_msg_ndebug should have failed"; \
834 rm -f $@; \
835 exit 1; \
836 fi
837
838
839# Similar to --detect-odr-violations: check for undefined symbols in .so's
840check_SCRIPTS += undef_symbol.sh
841check_DATA += undef_symbol.err
842MOSTLYCLEANFILES += undef_symbol.err
843undef_symbol.o: undef_symbol.cc
844 $(CXXCOMPILE) -O0 -g -c -fPIC $<
845undef_symbol.so: undef_symbol.o gcctestdir/ld
846 $(CXXLINK) -Bgcctestdir/ -shared undef_symbol.o
847undef_symbol.err: undef_symbol_main.o undef_symbol.so gcctestdir/ld
848 @echo $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so "2>$@"
849 @if $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>$@; \
850 then \
851 echo 1>&2 "Link of undef_symbol_test should have failed"; \
852 rm -f $@; \
853 exit 1; \
854 fi
855
856
351a8000
ILT
857# Test -o when emitting to a special file (such as something in /dev).
858check_PROGRAMS += flagstest_o_specialfile
0e470e5c 859flagstest_o_specialfile: flagstest_debug.o gcctestdir/ld
351a8000
ILT
860 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< 2>&1 | cat > $@
861 chmod a+x $@
862 test -s $@
863
7fcd0256
ILT
864if HAVE_ZLIB
865
866# Test --compress-debug-sections. FIXME: check we actually compress.
867check_PROGRAMS += flagstest_compress_debug_sections
868flagstest_compress_debug_sections: flagstest_debug.o gcctestdir/ld
869 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib
870 test -s $@
871
872
351a8000
ILT
873# The specialfile output has a tricky case when we also compress debug
874# sections, because it requires output-file resizing.
875check_PROGRAMS += flagstest_o_specialfile_and_compress_debug_sections
0e470e5c
ILT
876flagstest_o_specialfile_and_compress_debug_sections: flagstest_debug.o \
877 gcctestdir/ld
126f3ece 878 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< -Wl,--compress-debug-sections=zlib 2>&1 | cat > $@
351a8000
ILT
879 chmod a+x $@
880 test -s $@
881
7fcd0256
ILT
882endif HAVE_ZLIB
883
99f8faca
ILT
884# Test symbol versioning.
885check_PROGRAMS += ver_test
886ver_test_SOURCES = ver_test_main.cc
887ver_test_DEPENDENCIES = gcctestdir/ld ver_test_1.so ver_test_2.so ver_test_4.so
888ver_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
889ver_test_LDADD = ver_test_1.so ver_test_2.so ver_test_4.so
890ver_test_1.so: ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so gcctestdir/ld
891 $(CXXLINK) -Bgcctestdir/ -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
09124467
ILT
892ver_test_2.so: ver_test_2.o $(srcdir)/ver_test_2.script ver_test_4.so gcctestdir/ld
893 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_2.script ver_test_2.o ver_test_4.so
894ver_test_4.so: ver_test_4.o $(srcdir)/ver_test_4.script gcctestdir/ld
895 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o
99f8faca
ILT
896ver_test_1.o: ver_test_1.cc
897 $(CXXCOMPILE) -c -fpic -o $@ $<
898ver_test_2.o: ver_test_2.cc
899 $(CXXCOMPILE) -c -fpic -o $@ $<
900ver_test_3.o: ver_test_3.cc
901 $(CXXCOMPILE) -c -fpic -o $@ $<
902ver_test_4.o: ver_test_4.cc
903 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000 904
0602e05a
ILT
905check_SCRIPTS += ver_test_1.sh
906check_DATA += ver_test_1.syms
907ver_test_1.syms: ver_test_1.so
908 $(TEST_READELF) -s $< >$@ 2>/dev/null
909
be3e6201
ILT
910check_PROGRAMS += ver_test_2
911ver_test_2_SOURCES = ver_test_main_2.cc
912ver_test_2_DEPENDENCIES = gcctestdir/ld ver_test_4.so ver_test_2.so
913ver_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
914ver_test_2_LDADD = ver_test_4.so ver_test_2.so
915
be3e6201
ILT
916check_SCRIPTS += ver_test_2.sh
917check_DATA += ver_test_2.syms
918ver_test_2.syms: ver_test_2
6835af53 919 $(TEST_READELF) -s $< >$@ 2>/dev/null
be3e6201 920
686c8caf
ILT
921check_SCRIPTS += ver_test_4.sh
922check_DATA += ver_test_4.syms
923ver_test_4.syms: ver_test_4.so
6835af53 924 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f
ILT
925
926ver_test_5.so: ver_test_5.o $(srcdir)/ver_test_5.script ver_test_4.so gcctestdir/ld
927 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_5.script ver_test_5.o ver_test_4.so
928ver_test_5.o: ver_test_5.cc
929 $(CXXCOMPILE) -c -fpic -o $@ $<
930check_SCRIPTS += ver_test_5.sh
931check_DATA += ver_test_5.syms
932ver_test_5.syms: ver_test_5.so
6835af53 933 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f 934
18e6b24e
ILT
935check_PROGRAMS += ver_test_6
936ver_test_6_SOURCES = ver_test_6.c
937ver_test_6_DEPENDENCIES = gcctestdir/ld ver_test_2.so
938ver_test_6_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
939ver_test_6_LDADD = ver_test_2.so
940
479f6503
ILT
941ver_test_7.so: ver_test_4.o $(srcdir)/ver_test_4.script ver_test_7.o gcctestdir/ld
942 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o ver_test_7.o
943ver_test_7.o: ver_test_7.cc
944 $(CXXCOMPILE) -c -fpic -o $@ $<
945check_SCRIPTS += ver_test_7.sh
946check_DATA += ver_test_7.syms
947ver_test_7.syms: ver_test_7.so
6835af53 948 $(TEST_READELF) -s $< >$@ 2>/dev/null
479f6503 949
75517b77
ILT
950check_PROGRAMS += ver_test_8
951ver_test_8_SOURCES = two_file_test_main.cc
952ver_test_8_DEPENDENCIES = gcctestdir/ld ver_test_8_1.so ver_test_8_2.so
953ver_test_8_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
954ver_test_8_LDADD = ver_test_8_1.so ver_test_8_2.so
955ver_test_8_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so gcctestdir/ld
956 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
957ver_test_8_2.so: two_file_test_2_pic.o $(srcdir)/ver_test_8.script gcctestdir/ld
958 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_8.script two_file_test_2_pic.o
959
95d14cd3
ILT
960check_PROGRAMS += ver_test_9
961ver_test_9_SOURCES = ver_test_main.cc
962ver_test_9_DEPENDENCIES = gcctestdir/ld ver_test_9.so
963ver_test_9_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
964ver_test_9_LDADD = ver_test_9.so
965ver_test_9.so: ver_test_9.o ver_test_4.so ver_test_5.so gcctestdir/ld
966 $(CXXLINK) -Bgcctestdir/ -shared ver_test_9.o ver_test_5.so ver_test_4.so
967ver_test_9.o: ver_test_9.cc
968 $(CXXCOMPILE) -c -fpic -o $@ $<
969
057ead22
ILT
970check_SCRIPTS += ver_test_10.sh
971check_DATA += ver_test_10.syms
972ver_test_10.syms: ver_test_10.so
973 $(TEST_READELF) -s $< >$@ 2>/dev/null
974ver_test_10.so: gcctestdir/ld ver_test_2.o ver_test_10.script
975 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_10.script ver_test_2.o
976
9c5b8369 977check_PROGRAMS += ver_test_11
72fef11a 978MOSTLYCLEANFILES += ver_test_11.a
9c5b8369
ILT
979ver_test_11_SOURCES = ver_test_main_2.cc
980ver_test_11_DEPENDENCIES = gcctestdir/ld ver_test_11.a
981ver_test_11_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
982ver_test_11_LDADD = ver_test_11.a
983ver_test_11.a: ver_test_1.o ver_test_2.o ver_test_4.o
984 $(TEST_AR) rc $@ $^
985
8bdcdf2c
ILT
986check_PROGRAMS += protected_1
987protected_1_SOURCES = \
988 protected_main_1.cc protected_main_2.cc protected_main_3.cc
989protected_1_DEPENDENCIES = gcctestdir/ld protected_1.so
990protected_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
991protected_1_LDADD = protected_1.so
992
993protected_1.so: gcctestdir/ld protected_1_pic.o protected_2_pic.o protected_3_pic.o
994 $(CXXLINK) -Bgcctestdir/ -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
995protected_1_pic.o: protected_1.cc
996 $(CXXCOMPILE) -c -fpic -o $@ $<
997protected_2_pic.o: protected_2.cc
998 $(CXXCOMPILE) -c -fpic -o $@ $<
999protected_3_pic.o: protected_3.cc
1000 $(CXXCOMPILE) -c -fpic -o $@ $<
1001
1002check_PROGRAMS += protected_2
1003protected_2_SOURCES = protected_main_1.cc protected_3.cc
1004protected_2_DEPENDENCIES = gcctestdir/ld protected_1.so
1005protected_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1006protected_2_LDADD = protected_1.so
1007
837504c4
ILT
1008check_DATA += protected_3.err
1009MOSTLYCLEANFILES += protected_3.err
1010protected_4_pic.o: protected_4.cc
1011 $(CXXCOMPILE) -c -fpic -o $@ $<
1012protected_3.err: protected_4_pic.o gcctestdir/ld
1013 @echo $(CXXLINK) -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o "2>$@"
1014 @if $(CXXLINK) -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o 2>$@; then \
1015 echo 1>&2 "Link of protected_4.so should have failed"; \
1016 rm -f $@; \
1017 exit 1; \
1018 fi
1019
9f1d377b
ILT
1020check_PROGRAMS += relro_test
1021relro_test_SOURCES = relro_test_main.cc
1022relro_test_DEPENDENCIES = gcctestdir/ld relro_test.so
1023relro_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1024relro_test_LDADD = relro_test.so
1025relro_test.so: gcctestdir/ld relro_test_pic.o
1026 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro relro_test_pic.o
1027relro_test_pic.o: relro_test.cc
1028 $(CXXCOMPILE) -c -fpic -o $@ $<
1029
2d924fd9
ILT
1030check_PROGRAMS += relro_script_test
1031relro_script_test_SOURCES = relro_test_main.cc
1032relro_script_test_DEPENDENCIES = gcctestdir/ld relro_script_test.so
1033relro_script_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1034relro_script_test_LDADD = relro_script_test.so
1035relro_script_test.so: gcctestdir/ld relro_script_test.t relro_test_pic.o
1036 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro -T $(srcdir)/relro_script_test.t relro_test_pic.o
1037
e5756efb
ILT
1038check_PROGRAMS += script_test_1
1039script_test_1_SOURCES = script_test_1.cc
1040script_test_1_DEPENDENCIES = gcctestdir/ld script_test_1.t
1041script_test_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -T $(srcdir)/script_test_1.t
1abce4a6 1042script_test_1_LDADD =
e5756efb 1043
a445fddf
ILT
1044check_PROGRAMS += script_test_2
1045script_test_2_SOURCES = script_test_2.cc script_test_2a.cc script_test_2b.cc
1046script_test_2_DEPENDENCIES = gcctestdir/ld script_test_2.t
1047script_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -T $(srcdir)/script_test_2.t
1abce4a6 1048script_test_2_LDADD =
a445fddf 1049
88dd47ac
ILT
1050check_PROGRAMS += justsyms
1051justsyms_SOURCES = justsyms_1.cc
1052justsyms_DEPENDENCIES = gcctestdir/ld justsyms_2r.o
1053justsyms_LDFLAGS = -Bgcctestdir/ -Wl,-R,justsyms_2r.o
1abce4a6 1054justsyms_LDADD =
88dd47ac
ILT
1055justsyms_2.o: justsyms_2.cc
1056 $(CXXCOMPILE) -c -o $@ $<
83bfb6b7 1057justsyms_2r.o: justsyms_2.o gcctestdir/ld $(srcdir)/justsyms.t
88dd47ac
ILT
1058 gcctestdir/ld -o $@ -r -T $(srcdir)/justsyms.t justsyms_2.o
1059
bc644c6c 1060check_PROGRAMS += binary_test
72fef11a 1061MOSTLYCLEANFILES += binary.txt
bc644c6c
ILT
1062binary_test_SOURCES = binary_test.cc
1063binary_test_DEPENDENCIES = gcctestdir/ld binary.txt
1064binary_test_LDFLAGS = -Bgcctestdir/ -Wl,--format,binary,binary.txt,--format,elf
1abce4a6 1065binary_test_LDADD =
bc644c6c
ILT
1066# Copy the file to the build directory to avoid worrying about the
1067# full pathname in the generated symbols.
1068binary.txt: $(srcdir)/binary.in
1069 rm -f $@
1070 $(LN_S) $< $@
1071
09124467
ILT
1072check_SCRIPTS += ver_matching_test.sh
1073check_DATA += ver_matching_test.stdout
1074MOSTLYCLEANFILES += ver_matching_test.stdout
6affe781 1075ver_matching_def.so: ver_matching_def.cc $(srcdir)/version_script.map gcctestdir/ld
09124467
ILT
1076 $(CXXLINK) -O0 -Bgcctestdir/ -shared $(srcdir)/ver_matching_def.cc -Wl,--version-script=$(srcdir)/version_script.map
1077ver_matching_test.stdout: ver_matching_def.so
6835af53 1078 $(TEST_OBJDUMP) -T ver_matching_def.so | $(TEST_CXXFILT) > ver_matching_test.stdout
1c4f3631
ILT
1079
1080check_PROGRAMS += script_test_3
1081check_SCRIPTS += script_test_3.sh
1082check_DATA += script_test_3.stdout
1083MOSTLYCLEANFILES += script_test_3.stdout
1084script_test_3: basic_test.o gcctestdir/ld script_test_3.t
1085 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_3.t
1086script_test_3.stdout: script_test_3
2cefc357 1087 $(TEST_READELF) -SlW script_test_3 > script_test_3.stdout
09124467 1088
e6188289
ILT
1089check_SCRIPTS += script_test_4.sh
1090check_DATA += script_test_4.stdout
72fef11a 1091MOSTLYCLEANFILES += script_test_4
e6188289
ILT
1092script_test_4: basic_test.o gcctestdir/ld $(srcdir)/script_test_4.t
1093 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_4.t
1094script_test_4.stdout: script_test_4
1095 $(TEST_READELF) -SlW script_test_4 > script_test_4.stdout
1096
401a9a73
CC
1097check_SCRIPTS += script_test_5.sh
1098check_DATA += script_test_5.stdout
72fef11a 1099MOSTLYCLEANFILES += script_test_5
401a9a73
CC
1100script_test_5: script_test_5.o gcctestdir/ld $(srcdir)/script_test_5.t
1101 $(CXXLINK) -Bgcctestdir/ script_test_5.o -T $(srcdir)/script_test_5.t
1102script_test_5.stdout: script_test_5
1103 $(TEST_READELF) -SW script_test_5 > script_test_5.stdout
1104
3c12dcdb
DK
1105check_SCRIPTS += script_test_6.sh
1106check_DATA += script_test_6.stdout
1107MOSTLYCLEANFILES += script_test_6
1108script_test_6: basic_test.o gcctestdir/ld $(srcdir)/script_test_6.t
1109 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_6.t \
1110 -Wl,-Ttext=0x10001000 -Wl,-Tdata=0x10200000 -Wl,-Tbss=0x10400000
1111script_test_6.stdout: script_test_6
1112 $(TEST_READELF) -SlW script_test_6 > script_test_6.stdout
1113
1114check_SCRIPTS += script_test_7.sh
1115check_DATA += script_test_7.stdout
1116MOSTLYCLEANFILES += script_test_7
1117script_test_7: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
1118 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_7.t
1119script_test_7.stdout: script_test_7
1120 $(TEST_READELF) -SlW script_test_7 > script_test_7.stdout
1121
1122check_SCRIPTS += script_test_8.sh
1123check_DATA += script_test_8.stdout
1124MOSTLYCLEANFILES += script_test_8
1125script_test_8: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
1126 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_7.t \
1127 -Wl,-Ttext=0x20001000 -Wl,-Tdata=0x20200000 -Wl,-Tbss=0x20400000
1128script_test_8.stdout: script_test_8
1129 $(TEST_READELF) -SlW script_test_8 > script_test_8.stdout
1130
c82fbeee
CS
1131# Test --dynamic-list, --dynamic-list-data, --dynamic-list-cpp-new,
1132# and --dynamic-list-cpp-typeinfo
1133
1134check_SCRIPTS += dynamic_list.sh
1135check_DATA += dynamic_list.stdout
72fef11a 1136MOSTLYCLEANFILES += dynamic_list dynamic_list.stdout
c82fbeee
CS
1137dynamic_list: basic_test.o gcctestdir/ld $(srcdir)/dynamic_list.t
1138 $(CXXLINK) -Bgcctestdir/ basic_test.o \
1139 -Wl,--dynamic-list $(srcdir)/dynamic_list.t \
1140 -Wl,--dynamic-list-data \
1141 -Wl,--dynamic-list-cpp-new \
1142 -Wl,--dynamic-list-cpp-typeinfo
1143dynamic_list.stdout: dynamic_list
94e6ee91 1144 $(TEST_READELF) -W --dyn-syms dynamic_list > dynamic_list.stdout
c82fbeee 1145
fbd8a257 1146check_PROGRAMS += thin_archive_test_1
72fef11a
CC
1147MOSTLYCLEANFILES += libthin1.a libthin3.a libthinall.a \
1148 alt/thin_archive_test_2.o alt/thin_archive_test_4.o \
1149 alt/libthin2.a alt/libthin4.a
fbd8a257
CC
1150thin_archive_test_1_SOURCES = thin_archive_main.cc
1151thin_archive_test_1_DEPENDENCIES = gcctestdir/ld libthin1.a alt/libthin2.a
1152thin_archive_test_1_LDFLAGS = -Bgcctestdir/ -Lalt
1153thin_archive_test_1_LDADD = libthin1.a -lthin2
1154
1155check_PROGRAMS += thin_archive_test_2
1156thin_archive_test_2_SOURCES = thin_archive_main.cc
1157thin_archive_test_2_DEPENDENCIES = gcctestdir/ld libthinall.a
1158thin_archive_test_2_LDFLAGS = -Bgcctestdir/ -L.
1159thin_archive_test_2_LDADD = -lthinall
1160
1161libthin1.a: thin_archive_test_1.o alt/thin_archive_test_2.o
1162 rm -f $@
1163 $(TEST_AR) crT $@ $^
1164alt/libthin2.a: thin_archive_test_3.o alt/thin_archive_test_4.o
1165 rm -f $@
1166 $(TEST_AR) crT $@ $^
1167libthin3.a: thin_archive_test_1.o alt/thin_archive_test_4.o
1168 rm -f $@
1169 $(TEST_AR) crT $@ $^
1170alt/libthin4.a: alt/thin_archive_test_2.o thin_archive_test_3.o
1171 rm -f $@
1172 $(TEST_AR) crT $@ $^
1173libthinall.a: libthin3.a alt/libthin4.a
1174 rm -f $@
1175 $(TEST_AR) crT $@ $^
1176alt/thin_archive_test_2.o: thin_archive_test_2.cc
1177 test -d alt || mkdir -p alt
1178 $(CXXCOMPILE) -c -o $@ $<
1179alt/thin_archive_test_4.o: thin_archive_test_4.cc
1180 test -d alt || mkdir -p alt
1181 $(CXXCOMPILE) -c -o $@ $<
1182
89fc3421
CC
1183if PLUGINS
1184
1185check_PROGRAMS += plugin_test_1
1186check_SCRIPTS += plugin_test_1.sh
1187check_DATA += plugin_test_1.err
1188MOSTLYCLEANFILES += plugin_test_1.err
abc8dcba
CC
1189plugin_test_1: two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms empty.syms gcctestdir/ld plugin_test.so
1190 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms empty.syms 2>plugin_test_1.err
89fc3421
CC
1191plugin_test_1.err: plugin_test_1
1192 @touch plugin_test_1.err
1193
1194check_PROGRAMS += plugin_test_2
1195check_SCRIPTS += plugin_test_2.sh
1196check_DATA += plugin_test_2.err
1197MOSTLYCLEANFILES += plugin_test_2.err
1198plugin_test_2: two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_shared_2.so gcctestdir/ld plugin_test.so
1199 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,-R,.,--plugin,"./plugin_test.so" two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_shared_2.so 2>plugin_test_2.err
1200plugin_test_2.err: plugin_test_2
1201 @touch plugin_test_2.err
1202
d66a9eb3
CC
1203check_PROGRAMS += plugin_test_3
1204check_SCRIPTS += plugin_test_3.sh
1205check_DATA += plugin_test_3.err
1206MOSTLYCLEANFILES += plugin_test_3.err
1207plugin_test_3: two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms empty.syms gcctestdir/ld plugin_test.so
1208 $(CXXLINK) -Bgcctestdir/ -Wl,--export-dynamic -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms empty.syms 2>plugin_test_3.err
1209plugin_test_3.err: plugin_test_3
1210 @touch plugin_test_3.err
1211
0f7c0701
CC
1212check_PROGRAMS += plugin_test_4
1213check_SCRIPTS += plugin_test_4.sh
1214check_DATA += plugin_test_4.err
72fef11a 1215MOSTLYCLEANFILES += plugin_test_4.a plugin_test_4.err
0f7c0701
CC
1216plugin_test_4: two_file_test_main.o plugin_test_4.a gcctestdir/ld plugin_test.so
1217 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o -Wl,--whole-archive,plugin_test_4.a,--no-whole-archive 2>plugin_test_4.err
1218plugin_test_4.err: plugin_test_4
1219 @touch plugin_test_4.err
1220
1221plugin_test_4.a: two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms
1222 $(TEST_AR) cr $@ $^
1223
24998053
CC
1224check_PROGRAMS += plugin_test_5
1225plugin_test_5: two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms unused.syms gcctestdir/ld plugin_test.so
1226 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv",--gc-sections two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms unused.syms
1227
89fc3421
CC
1228plugin_test.so: plugin_test.o
1229 $(LINK) -Bgcctestdir/ -shared plugin_test.o
1230plugin_test.o: plugin_test.c
1231 $(COMPILE) -O0 -c -fpic -o $@ $<
1232
1233two_file_test_main.syms: two_file_test_main.o
1234 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1235two_file_test_1.syms: two_file_test_1.o
1236 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1237two_file_test_1b.syms: two_file_test_1b.o
1238 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1239two_file_test_2.syms: two_file_test_2.o
1240 $(TEST_READELF) -sW $< >$@ 2>/dev/null
24998053 1241
abc8dcba 1242empty.syms:
24998053
CC
1243 @echo "" >$@
1244 @echo "Symbol table" >>$@
1245
1246MOSTLYCLEANFILES += unused.c
1247unused.syms: unused.o
1248 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1249 @echo " 1: 00000000 4 FUNC GLOBAL DEFAULT 1 UNUSED" >>$@
1250unused.o: unused.c
1251 $(COMPILE) -c -o $@ $<
1252unused.c:
1253 @cp /dev/null $@
89fc3421
CC
1254
1255endif PLUGINS
1256
65514900
CC
1257check_PROGRAMS += exclude_libs_test
1258check_SCRIPTS += exclude_libs_test.sh
1259check_DATA += exclude_libs_test.syms
1260MOSTLYCLEANFILES += exclude_libs_test.syms libexclude_libs_test_1.a \
2fdd743f 1261 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
65514900
CC
1262exclude_libs_test_SOURCES = exclude_libs_test.c
1263exclude_libs_test_DEPENDENCIES = gcctestdir/ld libexclude_libs_test_1.a \
2fdd743f
DK
1264 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
1265exclude_libs_test_LDFLAGS = -Bgcctestdir/ -L. -Lalt \
1266 -Wl,--exclude-libs,dummy:libexclude_libs_test_1 \
1267 -Wl,--exclude-libs,libexclude_libs_test_3
1268exclude_libs_test_LDADD = -lexclude_libs_test_1 -lexclude_libs_test_2 \
1269 alt/libexclude_libs_test_3.a
65514900
CC
1270exclude_libs_test.syms: exclude_libs_test
1271 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1272libexclude_libs_test_1.a: exclude_libs_test_1.o
1273 $(TEST_AR) rc $@ $^
1274libexclude_libs_test_2.a: exclude_libs_test_2.o
1275 $(TEST_AR) rc $@ $^
2fdd743f
DK
1276alt/libexclude_libs_test_3.a: exclude_libs_test_3.o
1277 test -d alt || mkdir -p alt
1278 $(TEST_AR) rc $@ $^
65514900 1279
805bb01c
DK
1280check_PROGRAMS += local_labels_test
1281local_labels_test.o: ver_test_6.c
1282 $(COMPILE) -g -c -Wa,-L -o $@ $<
1283local_labels_test: local_labels_test.o
1284 $(LINK) -Bgcctestdir/ local_labels_test.o
1285
bb04269c
DK
1286check_PROGRAMS += discard_locals_test
1287check_SCRIPTS += discard_locals_test.sh
1288check_DATA += discard_locals_test.syms
1289MOSTLYCLEANFILES += discard_locals_test.syms
1290discard_locals_test_SOURCES = discard_locals_test.c
1291discard_locals_test_LDFLAGS = -Bgcctestdir/ -Wl,--discard-locals
1292discard_locals_test.syms: discard_locals_test
1293 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1294# '-Wa,-L' is required to preserve the local label used for testing.
1295discard_locals_test.o: discard_locals_test.c
1296 $(COMPILE) -c -Wa,-L -o $@ $<
1297
8a5e3e08
ILT
1298if MCMODEL_MEDIUM
1299check_PROGRAMS += large
1300large_SOURCES = large.c
1301large_CFLAGS = -mcmodel=medium
1302large_DEPENDENCIES = gcctestdir/ld
1303large_LDFLAGS = -Bgcctestdir/
1abce4a6 1304large_LDADD =
8a5e3e08
ILT
1305endif MCMODEL_MEDIUM
1306
645afe0c
CC
1307# Test that hidden and internal symbols in the main program cannot be
1308# referenced by a shared library.
1309check_SCRIPTS += hidden_test.sh
1310check_DATA += hidden_test.err
1311MOSTLYCLEANFILES += hidden_test hidden_test.err
1312libhidden.so: hidden_test_1.c gcctestdir/ld
1313 $(COMPILE) -Bgcctestdir/ -g -shared -fPIC -w -o $@ $(srcdir)/hidden_test_1.c
1314hidden_test: hidden_test_main.o libhidden.so gcctestdir/ld
1315 $(LINK) -Bgcctestdir/ -Wl,-R,. hidden_test_main.o libhidden.so 2>hidden_test.err
1316hidden_test.err: hidden_test
1317 @touch hidden_test.err
1318
8c604651
CS
1319# Test -retain-symbols-file.
1320check_SCRIPTS += retain_symbols_file_test.sh
1321check_DATA += retain_symbols_file_test.stdout
1322MOSTLYCLEANFILES += retain_symbols_file_test retain_symbols_file_test.in \
1323 retain_symbols_file_test.stdout
1324retain_symbols_file_test.so: basic_pic_test.o gcctestdir/ld
1325 echo 'main' > retain_symbols_file_test.in
1326 echo 't1' >> retain_symbols_file_test.in
1327 echo '_ZN4t16bC1Ev' >> retain_symbols_file_test.in
1328 echo '_ZNK4t20a3getEv' >> retain_symbols_file_test.in
1329 echo '_Z3t18v' >> retain_symbols_file_test.in
1330 echo '__tcf_0' >> retain_symbols_file_test.in
1331 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-retain-symbols-file,retain_symbols_file_test.in basic_pic_test.o
1332retain_symbols_file_test.stdout: retain_symbols_file_test.so
1333 $(TEST_NM) -C retain_symbols_file_test.so > $@
1334
1335
6a89f575
CC
1336# Test that if the output file already exists and is empty,
1337# it will get execute permission.
1338check_PROGRAMS += permission_test
1339permission_test: basic_test.o gcctestdir/ld
1340 umask 022; \
1341 rm -f $@; \
1342 touch $@; \
1343 chmod 600 $@; \
1344 $(CXXLINK) -Bgcctestdir/ basic_test.o
1345
ae3b5189
CD
1346# Check -l:foo.a
1347check_PROGRAMS += searched_file_test
1348MOSTLYCLEANFILES += searched_file_test searched_file_test_lib.o \
1349 alt/searched_file_test_lib.a
1350searched_file_test_SOURCES = searched_file_test.cc
1351searched_file_test_DEPENDENCIES = alt/searched_file_test_lib.a
1352searched_file_test_LDFLAGS = -Bgcctestdir/ -Lalt
1353searched_file_test_LDADD = -l:searched_file_test_lib.a
1354searched_file_test_lib.o: searched_file_test_lib.cc
1355 $(CXXCOMPILE) -c -o $@ $<
1356alt/searched_file_test_lib.a: searched_file_test_lib.o
1357 test -d alt || mkdir -p alt
1358 $(TEST_AR) rc $@ $^
1359
c5617f2f
DK
1360# Test that no .gnu.version sections are created when
1361# symbol versioning is not used.
1362check_SCRIPTS += no_version_test.sh
1363check_DATA += no_version_test.stdout
1364MOSTLYCLEANFILES += libno_version_test.so no_version_test.stdout
1365# We invoke the linker directly since gcc may include additional objects that
1366# uses symbol versioning.
1367libno_version_test.so: no_version_test.o gcctestdir/ld
1368 gcctestdir/ld -shared -o $@ no_version_test.o
1369no_version_test.o: no_version_test.c
1370 $(COMPILE) -o $@ -c -fPIC $<
1371no_version_test.stdout: libno_version_test.so
1372 $(TEST_OBJDUMP) -h $< > $@
1373
351a8000
ILT
1374endif GCC
1375endif NATIVE_LINKER
364c7fa5
ILT
1376
1377# These tests work with cross linkers.
1378
1379if DEFAULT_TARGET_I386
1380
1381check_SCRIPTS += split_i386.sh
1382check_DATA += split_i386_1.stdout split_i386_2.stdout \
1383 split_i386_3.stdout split_i386_4.stdout split_i386_r.stdout
1384SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
1385split_i386_1.o: split_i386_1.s
1386 $(TEST_AS) -o $@ $<
1387split_i386_2.o: split_i386_2.s
1388 $(TEST_AS) -o $@ $<
1389split_i386_3.o: split_i386_3.s
1390 $(TEST_AS) -o $@ $<
1391split_i386_4.o: split_i386_4.s
1392 $(TEST_AS) -o $@ $<
1393split_i386_n.o: split_i386_n.s
1394 $(TEST_AS) -o $@ $<
1395split_i386_1: split_i386_1.o split_i386_n.o ../ld-new
1396 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_1.o split_i386_n.o
1397split_i386_1.stdout: split_i386_1
1398 $(TEST_OBJDUMP) -d $< > $@
1399split_i386_2: split_i386_2.o split_i386_n.o ../ld-new
1400 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_2.o split_i386_n.o
1401split_i386_2.stdout: split_i386_2
1402 $(TEST_OBJDUMP) -d $< > $@
1403split_i386_3.stdout: split_i386_3.o split_i386_n.o ../ld-new
1404 ../ld-new $(SPLIT_DEFSYMS) -o split_i386_3 split_i386_3.o split_i386_n.o > $@ 2>&1 || exit 0
1405split_i386_4: split_i386_4.o split_i386_n.o ../ld-new
1406 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_4.o split_i386_n.o
1407split_i386_4.stdout: split_i386_4
1408 $(TEST_OBJDUMP) -d $< > $@
1409split_i386_r.stdout: split_i386_1.o split_i386_n.o ../ld-new
1410 ../ld-new -r split_i386_1.o split_i386_n.o -o split_i386_r > $@ 2>&1 || exit 0
1411MOSTLYCLEANFILES += split_i386_1 split_i386_2 split_i386_3 \
1412 split_i386_4 split_i386_r
1413
1414endif DEFAULT_TARGET_I386
1415
1416if DEFAULT_TARGET_X86_64
1417
1418check_SCRIPTS += split_x86_64.sh
1419check_DATA += split_x86_64_1.stdout split_x86_64_2.stdout \
1420 split_x86_64_3.stdout split_x86_64_4.stdout split_x86_64_r.stdout
1421SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
1422split_x86_64_1.o: split_x86_64_1.s
1423 $(TEST_AS) -o $@ $<
1424split_x86_64_2.o: split_x86_64_2.s
1425 $(TEST_AS) -o $@ $<
1426split_x86_64_3.o: split_x86_64_3.s
1427 $(TEST_AS) -o $@ $<
1428split_x86_64_4.o: split_x86_64_4.s
1429 $(TEST_AS) -o $@ $<
1430split_x86_64_n.o: split_x86_64_n.s
1431 $(TEST_AS) -o $@ $<
1432split_x86_64_1: split_x86_64_1.o split_x86_64_n.o ../ld-new
1433 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_1.o split_x86_64_n.o
1434split_x86_64_1.stdout: split_x86_64_1
1435 $(TEST_OBJDUMP) -d $< > $@
1436split_x86_64_2: split_x86_64_2.o split_x86_64_n.o ../ld-new
1437 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_2.o split_x86_64_n.o
1438split_x86_64_2.stdout: split_x86_64_2
1439 $(TEST_OBJDUMP) -d $< > $@
1440split_x86_64_3.stdout: split_x86_64_3.o split_x86_64_n.o ../ld-new
1441 ../ld-new $(SPLIT_DEFSYMS) -o split_x86_64_3 split_x86_64_3.o split_x86_64_n.o > $@ 2>&1 || exit 0
1442split_x86_64_4: split_x86_64_4.o split_x86_64_n.o ../ld-new
1443 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_4.o split_x86_64_n.o
1444split_x86_64_4.stdout: split_x86_64_4
1445 $(TEST_OBJDUMP) -d $< > $@
1446split_x86_64_r.stdout: split_x86_64_1.o split_x86_64_n.o ../ld-new
1447 ../ld-new -r split_x86_64_1.o split_x86_64_n.o -o split_x86_64_r > $@ 2>&1 || exit 0
1448MOSTLYCLEANFILES += split_x86_64_1 split_x86_64_2 split_x86_64_3 \
1449 split_x86_64_4 split_x86_64_r
1450
1451endif DEFAULT_TARGET_X86_64
e4782e83
DK
1452
1453if DEFAULT_TARGET_ARM
1454
1455check_SCRIPTS += arm_abs_global.sh
1456check_DATA += arm_abs_global.stdout
1457arm_abs_lib.o: arm_abs_lib.s
1458 $(TEST_AS) -march=armv7-a -o $@ $<
1459libarm_abs.so: arm_abs_lib.o
1460 ../ld-new -shared -o $@ arm_abs_lib.o
1461arm_abs_global.o: arm_abs_global.s
1462 $(TEST_AS) -march=armv7-a -o $@ $<
1463arm_abs_global: arm_abs_global.o libarm_abs.so
1464 ../ld-new -o $@ arm_abs_global.o -L. -larm_abs
1465arm_abs_global.stdout: arm_abs_global
1466 $(TEST_READELF) -r $< > $@
1467
1468MOSTLYCLEANFILES += arm_abs_global
1469
1470endif DEFAULT_TARGET_ARM
This page took 0.21544 seconds and 4 git commands to generate.