*** 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
5a6f7e2d
ILT
7AUTOMAKE_OPTIONS =
8
f958d5fc
ILT
9# The two_file_test tests -fmerge-constants, so we simply always turn
10# it on. This may need to be controlled by a configure option
11# eventually.
89fc3421 12AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS) -fmerge-constants
494e05f4 13AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS) -fmerge-constants
5a6f7e2d 14
fa99aa09 15INCLUDES = \
5a6f7e2d 16 -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../../include \
155a0dd7 17 -I$(srcdir)/../../elfcpp -I.. \
5a6f7e2d
ILT
18 -DLOCALEDIR="\"$(datadir)/locale\"" \
19 @INCINTL@
20
6835af53
ILT
21TEST_READELF = $(top_builddir)/../binutils/readelf
22TEST_OBJDUMP = $(top_builddir)/../binutils/objdump
23TEST_CXXFILT = $(top_builddir)/../binutils/cxxfilt
24TEST_STRIP = $(top_builddir)/../binutils/strip-new
fbd8a257 25TEST_AR = $(top_builddir)/../binutils/ar
531813ad 26TEST_NM = $(top_builddir)/../binutils/nm-new
6835af53 27
89fc3421
CC
28if PLUGINS
29LIBDL = -ldl
30endif
31
fe9a4c12
ILT
32if THREADS
33THREADSLIB = -lpthread
34endif
35
155a0dd7
ILT
36if OMP_SUPPORT
37TLS_TEST_C_CFLAGS = -fopenmp
38endif
39
351a8000
ILT
40# 'make clean' is good about deleting some intermediate files (such as
41# .o's), but not all of them (such as .so's and .err files). We
42# improve on that here. automake-1.9 info docs say "mostlyclean" is
43# the right choice for files 'make' builds that people rebuild.
44MOSTLYCLEANFILES = *.so
6eee141f 45
6eee141f 46
351a8000
ILT
47# We will add to these later, for each individual test. Note
48# that we add each test under check_SCRIPTS or check_PROGRAMS;
49# the TESTS variable is automatically populated from these.
50check_SCRIPTS =
51check_DATA =
52check_PROGRAMS =
d491d34e
ILT
53BUILT_SOURCES =
54
351a8000 55TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
22dc1b09 56
351a8000
ILT
57# ---------------------------------------------------------------------
58# These tests test the internals of gold (unittests).
5a6f7e2d 59
351a8000 60# Infrastucture needed for the unittests
5a6f7e2d
ILT
61check_LIBRARIES = libgoldtest.a
62libgoldtest_a_SOURCES = test.cc testmain.cc testfile.cc
63
ad2d6943
ILT
64DEPENDENCIES = \
65 libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL_DEP)
fe9a4c12 66LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
89fc3421 67 $(THREADSLIB) $(LIBDL)
5a6f7e2d 68
5a6f7e2d 69
351a8000
ILT
70# The unittests themselves
71check_PROGRAMS += object_unittest
5a6f7e2d 72object_unittest_SOURCES = object_unittest.cc
22dc1b09 73
bc644c6c
ILT
74check_PROGRAMS += binary_unittest
75binary_unittest_SOURCES = binary_unittest.cc
76
351a8000
ILT
77
78# ---------------------------------------------------------------------
79# These tests test the output of gold (end-to-end tests). In
80# particular, they make sure that gold can link "difficult" object
81# files, and the resulting object files run correctly. These can only
82# run if we've built ld-new for the native architecture (that is,
83# we're not cross-compiling it), since we run ld-new as part of these
84# tests. We use the gcc-specific flag '-B' to use our linker instead
85# of the default linker, which is why we only run our tests under gcc.
a360aedd 86
e2827e5f 87if NATIVE_LINKER
351a8000 88if GCC
e2827e5f 89
351a8000
ILT
90# Infrastucture needed for the unittests: a directory where the linker
91# is named 'ld'. This is because the -B flag appends 'ld' to its arg.
e2827e5f
ILT
92gcctestdir/ld: ../ld-new
93 test -d gcctestdir || mkdir -p gcctestdir
94 rm -f gcctestdir/ld
95 (cd gcctestdir && $(LN_S) ../../ld-new ld)
96
351a8000
ILT
97# Each of these .o's is a useful, small complete program. They're
98# particularly useful for making sure ld-new's flags do what they're
99# supposed to (hence their names), but are used for many tests that
100# don't actually involve analyzing input data.
43771f76
ILT
101flagstest_debug.o: constructor_test.cc
102 $(CXXCOMPILE) -O0 -g -c -o $@ $<
103flagstest_ndebug.o: constructor_test.cc
104 $(CXXCOMPILE) -O0 -c -o $@ $<
105
43771f76 106
531813ad
ST
107check_SCRIPTS += gc_comdat_test.sh
108check_DATA += gc_comdat_test.stdout
109gc_comdat_test_1.o: gc_comdat_test_1.cc
4daadc0d 110 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
531813ad 111gc_comdat_test_2.o: gc_comdat_test_2.cc
4daadc0d 112 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
531813ad 113gc_comdat_test: gc_comdat_test_1.o gc_comdat_test_2.o gcctestdir/ld
4daadc0d 114 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
531813ad
ST
115gc_comdat_test.stdout: gc_comdat_test
116 $(TEST_NM) -C gc_comdat_test > gc_comdat_test.stdout
117
ef15dade
ST
118check_SCRIPTS += icf_test.sh
119check_DATA += icf_test.stdout
120icf_test.o: icf_test.cc
121 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
122icf_test: icf_test.o gcctestdir/ld
123 $(CXXLINK) -Bgcctestdir/ -Wl,--icf icf_test.o
124icf_test.stdout: icf_test
125 $(TEST_NM) -C icf_test > icf_test.stdout
126
531813ad 127
351a8000
ILT
128check_PROGRAMS += basic_test
129check_PROGRAMS += basic_static_test
130check_PROGRAMS += basic_pic_test
131check_PROGRAMS += basic_static_pic_test
56ba9a23 132basic_test.o: basic_test.cc
22dc1b09 133 $(CXXCOMPILE) -O0 -c -o $@ $<
56ba9a23
ILT
134basic_test: basic_test.o gcctestdir/ld
135 $(CXXLINK) -Bgcctestdir/ basic_test.o
136basic_static_test: basic_test.o gcctestdir/ld
137 $(CXXLINK) -Bgcctestdir/ -static basic_test.o
22dc1b09 138
56ba9a23 139basic_pic_test.o: basic_test.cc
22dc1b09 140 $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
56ba9a23
ILT
141basic_pic_test: basic_pic_test.o gcctestdir/ld
142 $(CXXLINK) -Bgcctestdir/ basic_pic_test.o
143basic_static_pic_test: basic_pic_test.o gcctestdir/ld
144 $(CXXLINK) -Bgcctestdir/ -static basic_pic_test.o
22dc1b09 145
351a8000
ILT
146
147check_PROGRAMS += constructor_test
148check_PROGRAMS += constructor_static_test
d5026652
ILT
149constructor_test_SOURCES = constructor_test.cc
150constructor_test_DEPENDENCIES = gcctestdir/ld
151constructor_test_LDFLAGS = -Bgcctestdir/
152
351a8000
ILT
153constructor_static_test_SOURCES = $(constructor_test_SOURCES)
154constructor_static_test_DEPENDENCIES = $(constructor_test_DEPENDENCIES)
155constructor_static_test_LDFLAGS = $(constructor_test_LDFLAGS) -static
cb615bc1 156
351a8000
ILT
157
158check_PROGRAMS += two_file_test
159check_PROGRAMS += two_file_static_test
160check_PROGRAMS += two_file_pic_test
3bd52c28
ILT
161two_file_test_SOURCES = \
162 two_file_test_1.cc \
03e8f2b2 163 two_file_test_1b.cc \
3bd52c28
ILT
164 two_file_test_2.cc \
165 two_file_test_main.cc \
166 two_file_test.h
167two_file_test_DEPENDENCIES = gcctestdir/ld
168two_file_test_LDFLAGS = -Bgcctestdir/
169
351a8000
ILT
170two_file_static_test_SOURCES = $(two_file_test_SOURCES)
171two_file_static_test_DEPENDENCIES = $(two_file_test_DEPENDENCIES)
172two_file_static_test_LDFLAGS = $(two_file_test_LDFLAGS) -static
f958d5fc
ILT
173
174two_file_pic_test_SOURCES = two_file_test_main.cc
175two_file_pic_test_DEPENDENCIES = \
03e8f2b2 176 gcctestdir/ld two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 177two_file_pic_test_LDFLAGS = -Bgcctestdir/
03e8f2b2 178two_file_pic_test_LDADD = two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 179
351a8000
ILT
180
181check_PROGRAMS += two_file_shared_1_test
182check_PROGRAMS += two_file_shared_2_test
183check_PROGRAMS += two_file_shared_1_pic_2_test
184check_PROGRAMS += two_file_shared_2_pic_1_test
185check_PROGRAMS += two_file_same_shared_test
186check_PROGRAMS += two_file_separate_shared_12_test
187check_PROGRAMS += two_file_separate_shared_21_test
188two_file_test_1_pic.o: two_file_test_1.cc
189 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
190two_file_test_1b_pic.o: two_file_test_1b.cc
191 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000
ILT
192two_file_test_2_pic.o: two_file_test_2.cc
193 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
194two_file_shared_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o gcctestdir/ld
195 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o
351a8000
ILT
196two_file_shared_2.so: two_file_test_2_pic.o gcctestdir/ld
197 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2_pic.o
03e8f2b2
ILT
198two_file_shared.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o gcctestdir/ld
199 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
351a8000 200
3bd52c28
ILT
201two_file_shared_1_test_SOURCES = two_file_test_2.cc two_file_test_main.cc
202two_file_shared_1_test_DEPENDENCIES = gcctestdir/ld two_file_shared_1.so
203two_file_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
204two_file_shared_1_test_LDADD = two_file_shared_1.so
205
03e8f2b2 206two_file_shared_2_test_SOURCES = two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
207two_file_shared_2_test_DEPENDENCIES = gcctestdir/ld two_file_shared_2.so
208two_file_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
209two_file_shared_2_test_LDADD = two_file_shared_2.so
210
386c048c
ILT
211two_file_shared_1_pic_2_test_SOURCES = two_file_test_main.cc
212two_file_shared_1_pic_2_test_DEPENDENCIES = \
03e8f2b2 213 gcctestdir/ld two_file_shared_1.so two_file_test_1_pic.o two_file_test_1b_pic.o
386c048c 214two_file_shared_1_pic_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
03e8f2b2 215two_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
216
217two_file_shared_2_pic_1_test_SOURCES = two_file_test_main.cc
218two_file_shared_2_pic_1_test_DEPENDENCIES = \
219 gcctestdir/ld two_file_shared_2.so two_file_test_2_pic.o
220two_file_shared_2_pic_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
221two_file_shared_2_pic_1_test_LDADD = two_file_test_2_pic.o two_file_shared_1.so
222
3bd52c28
ILT
223two_file_same_shared_test_SOURCES = two_file_test_main.cc
224two_file_same_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared.so
225two_file_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
226two_file_same_shared_test_LDADD = two_file_shared.so
227
228two_file_separate_shared_12_test_SOURCES = two_file_test_main.cc
229two_file_separate_shared_12_test_DEPENDENCIES = \
230 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
231two_file_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
232two_file_separate_shared_12_test_LDADD = \
233 two_file_shared_1.so two_file_shared_2.so
234
235two_file_separate_shared_21_test_SOURCES = two_file_test_main.cc
236two_file_separate_shared_21_test_DEPENDENCIES = \
237 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
238two_file_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
239two_file_separate_shared_21_test_LDADD = \
240 two_file_shared_2.so two_file_shared_1.so
241
6a74a719
ILT
242check_PROGRAMS += two_file_relocatable_test
243two_file_relocatable_test_SOURCES = two_file_test_main.cc
244two_file_relocatable_test_DEPENDENCIES = \
245 gcctestdir/ld two_file_relocatable.o
246two_file_relocatable_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
247two_file_relocatable_test_LDADD = two_file_relocatable.o
248two_file_relocatable.o: gcctestdir/ld two_file_test_1.o two_file_test_1b.o two_file_test_2.o
249 gcctestdir/ld -r -o $@ two_file_test_1.o two_file_test_1b.o two_file_test_2.o
250
031cdbed
ILT
251check_SCRIPTS += two_file_shared.sh
252check_DATA += two_file_shared.dbg
253two_file_shared.dbg: two_file_shared.so
254 $(TEST_READELF) -w $< >$@ 2>/dev/null
255
63402fe4
ILT
256# The nonpic tests will fail on platforms which can not put non-PIC
257# code into shared libraries, so we just don't run them in that case.
63402fe4 258if FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 259
351a8000
ILT
260check_PROGRAMS += two_file_shared_1_nonpic_test
261check_PROGRAMS += two_file_shared_2_nonpic_test
262check_PROGRAMS += two_file_same_shared_nonpic_test
263check_PROGRAMS += two_file_separate_shared_12_nonpic_test
264check_PROGRAMS += two_file_separate_shared_21_nonpic_test
03e8f2b2
ILT
265check_PROGRAMS += two_file_mixed_shared_test
266check_PROGRAMS += two_file_mixed_2_shared_test
351a8000 267two_file_shared_1_nonpic.so: two_file_test_1.o gcctestdir/ld
03e8f2b2 268 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o
351a8000
ILT
269two_file_shared_2_nonpic.so: two_file_test_2.o gcctestdir/ld
270 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2.o
03e8f2b2
ILT
271two_file_shared_nonpic.so: two_file_test_1.o two_file_test_1b.o two_file_test_2.o gcctestdir/ld
272 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o
273two_file_shared_mixed.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o gcctestdir/ld
274 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o
275two_file_shared_mixed_1.so: two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so gcctestdir/ld
276 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so
351a8000 277
3bd52c28
ILT
278two_file_shared_1_nonpic_test_SOURCES = \
279 two_file_test_2.cc two_file_test_main.cc
280two_file_shared_1_nonpic_test_DEPENDENCIES = \
281 gcctestdir/ld two_file_shared_1_nonpic.so
282two_file_shared_1_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
283two_file_shared_1_nonpic_test_LDADD = two_file_shared_1_nonpic.so
284
285two_file_shared_2_nonpic_test_SOURCES = \
03e8f2b2 286 two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
287two_file_shared_2_nonpic_test_DEPENDENCIES = \
288 gcctestdir/ld two_file_shared_2_nonpic.so
289two_file_shared_2_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
290two_file_shared_2_nonpic_test_LDADD = two_file_shared_2_nonpic.so
291
292two_file_same_shared_nonpic_test_SOURCES = two_file_test_main.cc
293two_file_same_shared_nonpic_test_DEPENDENCIES = \
294 gcctestdir/ld two_file_shared_nonpic.so
295two_file_same_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
296two_file_same_shared_nonpic_test_LDADD = two_file_shared_nonpic.so
297
298two_file_separate_shared_12_nonpic_test_SOURCES = two_file_test_main.cc
299two_file_separate_shared_12_nonpic_test_DEPENDENCIES = \
300 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
301two_file_separate_shared_12_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
302two_file_separate_shared_12_nonpic_test_LDADD = \
303 two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
304
305two_file_separate_shared_21_nonpic_test_SOURCES = two_file_test_main.cc
306two_file_separate_shared_21_nonpic_test_DEPENDENCIES = \
307 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
308two_file_separate_shared_21_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
309two_file_separate_shared_21_nonpic_test_LDADD = \
310 two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so
311
03e8f2b2
ILT
312two_file_mixed_shared_test_SOURCES = two_file_test_main.cc
313two_file_mixed_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed.so
314two_file_mixed_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
315two_file_mixed_shared_test_LDADD = two_file_shared_mixed.so
316
317two_file_mixed_2_shared_test_SOURCES = two_file_test_main.cc
318two_file_mixed_2_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed_1.so two_file_shared_2.so
319two_file_mixed_2_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
320two_file_mixed_2_shared_test_LDADD = two_file_shared_mixed_1.so two_file_shared_2.so
321
351a8000 322endif FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 323
6835af53
ILT
324check_PROGRAMS += two_file_strip_test
325two_file_strip_test: two_file_test
326 $(TEST_STRIP) -o two_file_strip_test two_file_test
327
328check_PROGRAMS += two_file_same_shared_strip_test
329two_file_same_shared_strip_test_SOURCES = two_file_test_main.cc
330two_file_same_shared_strip_test_DEPENDENCIES = \
331 gcctestdir/ld two_file_shared_strip.so
332two_file_same_shared_strip_test_LDFLAGS = -Bgcctestdir/ -Wl,-R.
333two_file_same_shared_strip_test_LDADD = two_file_shared_strip.so
334two_file_shared_strip.so: two_file_shared.so
335 $(TEST_STRIP) -S -o two_file_shared_strip.so two_file_shared.so
336
49bdd526
ILT
337check_PROGRAMS += common_test_1
338common_test_1_SOURCES = common_test_1.c
339common_test_1_DEPENDENCIES = gcctestdir/ld
340common_test_1_LDFLAGS = -Bgcctestdir/
351a8000
ILT
341
342check_PROGRAMS += exception_test
343check_PROGRAMS += exception_static_test
344check_PROGRAMS += exception_shared_1_test
345check_PROGRAMS += exception_shared_2_test
346check_PROGRAMS += exception_same_shared_test
347check_PROGRAMS += exception_separate_shared_12_test
348check_PROGRAMS += exception_separate_shared_21_test
349exception_test_1_pic.o: exception_test_1.cc
350 $(CXXCOMPILE) -c -fpic -o $@ $<
351exception_test_2_pic.o: exception_test_2.cc
352 $(CXXCOMPILE) -c -fpic -o $@ $<
353exception_shared_1.so: exception_test_1_pic.o gcctestdir/ld
354 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o
355exception_shared_2.so: exception_test_2_pic.o gcctestdir/ld
356 $(CXXLINK) -Bgcctestdir/ -shared exception_test_2_pic.o
357exception_shared.so: exception_test_1_pic.o exception_test_2_pic.o gcctestdir/ld
358 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o exception_test_2_pic.o
63402fe4 359
3151305a
ILT
360exception_test_SOURCES = \
361 exception_test_main.cc \
362 exception_test_1.cc \
363 exception_test_2.cc \
364 exception_test.h
365exception_test_DEPENDENCIES = gcctestdir/ld
366exception_test_LDFLAGS = -Bgcctestdir/
367
351a8000
ILT
368exception_static_test_SOURCES = $(exception_test_SOURCES)
369exception_static_test_DEPENDENCIES = $(exception_test_DEPENDENCIES)
370exception_static_test_LDFLAGS = $(exception_test_LDFLAGS) -static
3151305a
ILT
371
372exception_shared_1_test_SOURCES = exception_test_2.cc exception_test_main.cc
373exception_shared_1_test_DEPENDENCIES = gcctestdir/ld exception_shared_1.so
374exception_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
375exception_shared_1_test_LDADD = exception_shared_1.so
376
377exception_shared_2_test_SOURCES = exception_test_1.cc exception_test_main.cc
378exception_shared_2_test_DEPENDENCIES = gcctestdir/ld exception_shared_2.so
379exception_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
380exception_shared_2_test_LDADD = exception_shared_2.so
381
382exception_same_shared_test_SOURCES = exception_test_main.cc
383exception_same_shared_test_DEPENDENCIES = gcctestdir/ld exception_shared.so
384exception_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
385exception_same_shared_test_LDADD = exception_shared.so
386
387exception_separate_shared_12_test_SOURCES = exception_test_main.cc
388exception_separate_shared_12_test_DEPENDENCIES = \
389 gcctestdir/ld exception_shared_1.so exception_shared_2.so
390exception_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
391exception_separate_shared_12_test_LDADD = \
392 exception_shared_1.so exception_shared_2.so
393
394exception_separate_shared_21_test_SOURCES = exception_test_main.cc
395exception_separate_shared_21_test_DEPENDENCIES = \
396 gcctestdir/ld exception_shared_1.so exception_shared_2.so
397exception_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
398exception_separate_shared_21_test_LDADD = \
399 exception_shared_2.so exception_shared_1.so
400
3151305a 401
351a8000 402check_PROGRAMS += weak_test
a360aedd 403weak_test_SOURCES = weak_test.cc
0e470e5c 404weak_test_DEPENDENCIES = gcctestdir/ld
a360aedd
ILT
405weak_test_LDFLAGS = -Bgcctestdir/
406
86925eef
CC
407check_PROGRAMS += weak_undef_test
408weak_undef_test_SOURCES = weak_undef_test.cc
409weak_undef_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib.so alt/weak_undef_lib.so
410weak_undef_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
411weak_undef_test_LDADD = -L . weak_undef_lib.so
412weak_undef_file1.o: weak_undef_file1.cc
413 $(CXXCOMPILE) -c -fpic -o $@ $<
414weak_undef_file2.o: weak_undef_file2.cc
415 $(CXXCOMPILE) -c -fpic -o $@ $<
416weak_undef_lib.so: weak_undef_file1.o
417 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1.o
418alt/weak_undef_lib.so: weak_undef_file2.o
419 test -d alt || mkdir -p alt
420 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2.o
351a8000 421
f3c69fca
CC
422if FN_PTRS_IN_SO_WITHOUT_PIC
423check_PROGRAMS += weak_undef_nonpic_test
424weak_undef_nonpic_test_SOURCES = weak_undef_test.cc
425weak_undef_nonpic_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib_nonpic.so alt/weak_undef_lib_nonpic.so
426weak_undef_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
427weak_undef_nonpic_test_LDADD = -L . weak_undef_lib_nonpic.so
428weak_undef_file1_nonpic.o: weak_undef_file1.cc
429 $(CXXCOMPILE) -c -o $@ $<
430weak_undef_file2_nonpic.o: weak_undef_file2.cc
431 $(CXXCOMPILE) -c -o $@ $<
432weak_undef_lib_nonpic.so: weak_undef_file1_nonpic.o
433 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1_nonpic.o
434alt/weak_undef_lib_nonpic.so: weak_undef_file2_nonpic.o
435 test -d alt || mkdir -p alt
436 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2_nonpic.o
437endif FN_PTRS_IN_SO_WITHOUT_PIC
438
439
99a37bfd
ILT
440check_PROGRAMS += weak_alias_test
441weak_alias_test_SOURCES = weak_alias_test_main.cc
442weak_alias_test_DEPENDENCIES = \
443 gcctestdir/ld weak_alias_test_1.so weak_alias_test_2.so \
444 weak_alias_test_3.o weak_alias_test_4.so
445weak_alias_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
446weak_alias_test_LDADD = \
447 weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o \
448 weak_alias_test_4.so
449weak_alias_test_1_pic.o: weak_alias_test_1.cc
450 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 451weak_alias_test_1.so: weak_alias_test_1_pic.o gcctestdir/ld
99a37bfd
ILT
452 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_1_pic.o
453weak_alias_test_2_pic.o: weak_alias_test_2.cc
454 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 455weak_alias_test_2.so: weak_alias_test_2_pic.o gcctestdir/ld
99a37bfd
ILT
456 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_2_pic.o
457weak_alias_test_3.o: weak_alias_test_3.cc
458 $(CXXCOMPILE) -c -o $@ $<
459weak_alias_test_4_pic.o: weak_alias_test_4.cc
460 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 461weak_alias_test_4.so: weak_alias_test_4_pic.o gcctestdir/ld
99a37bfd
ILT
462 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_4_pic.o
463
de4c45bd
ILT
464check_SCRIPTS += weak_plt.sh
465check_PROGRAMS += weak_plt
466check_DATA += weak_plt_shared.so
467weak_plt_main_pic.o: weak_plt_main.cc
468 $(CXXCOMPILE) -c -fpic -o $@ $<
469weak_plt: weak_plt_main_pic.o gcctestdir/ld
470 $(CXXLINK) -Bgcctestdir/ weak_plt_main_pic.o
471weak_plt_shared_pic.o: weak_plt_shared.cc
472 $(CXXCOMPILE) -c -fpic -o $@ $<
473weak_plt_shared.so: weak_plt_shared_pic.o gcctestdir/ld
474 $(CXXLINK) -Bgcctestdir/ -shared weak_plt_shared_pic.o
475
f34787f8
ILT
476check_PROGRAMS += copy_test
477copy_test_SOURCES = copy_test.cc
478copy_test_DEPENDENCIES = gcctestdir/ld copy_test_1.so copy_test_2.so
479copy_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
480copy_test_LDADD = copy_test_1.so copy_test_2.so
481copy_test_1_pic.o: copy_test_1.cc
482 $(CXXCOMPILE) -c -fpic -o $@ $<
483copy_test_1.so: gcctestdir/ld copy_test_1_pic.o
484 $(CXXLINK) -Bgcctestdir/ -shared copy_test_1_pic.o
485copy_test_2_pic.o: copy_test_2.cc
486 $(CXXCOMPILE) -c -fpic -o $@ $<
487copy_test_2.so: gcctestdir/ld copy_test_2_pic.o
488 $(CXXLINK) -Bgcctestdir/ -shared copy_test_2_pic.o
489
6eee141f
ILT
490if TLS
491
351a8000
ILT
492check_PROGRAMS += tls_test
493check_PROGRAMS += tls_pic_test
494check_PROGRAMS += tls_shared_test
c03c7692 495check_PROGRAMS += tls_shared_ie_test
c2b45e22 496check_PROGRAMS += tls_shared_gd_to_ie_test
351a8000
ILT
497tls_test_pic.o: tls_test.cc
498 $(CXXCOMPILE) -c -fpic -o $@ $<
499tls_test_file2_pic.o: tls_test_file2.cc
500 $(CXXCOMPILE) -c -fpic -o $@ $<
155a0dd7
ILT
501tls_test_c_pic.o: tls_test_c.c
502 $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
503tls_test_shared.so: tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o gcctestdir/ld
9c2d0ef9 504 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
c2b45e22
CC
505tls_test_shared2.so: tls_test_file2_pic.o gcctestdir/ld
506 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_pic.o
351a8000 507
c03c7692
ILT
508tls_test_pic_ie.o: tls_test.cc
509 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
510tls_test_file2_pic_ie.o: tls_test_file2.cc
511 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
155a0dd7
ILT
512tls_test_c_pic_ie.o: tls_test_c.c
513 $(COMPILE) -c -fpic -ftls-model=initial-exec $(TLS_TEST_C_CFLAGS) -o $@ $<
514tls_test_ie_shared.so: tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o gcctestdir/ld
515 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
c03c7692 516
e0374858 517tls_test_SOURCES = tls_test.cc tls_test_file2.cc tls_test_main.cc tls_test.h
155a0dd7 518tls_test_DEPENDENCIES = gcctestdir/ld tls_test_c.o
6eee141f 519tls_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
520tls_test_LDADD = tls_test_c.o -lpthread
521tls_test_c.o: tls_test_c.c
522 $(COMPILE) -c $(TLS_TEST_C_CFLAGS) -o $@ $<
6eee141f
ILT
523
524tls_pic_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
525tls_pic_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o tls_test_file2_pic.o \
526 tls_test_c_pic.o
6eee141f 527tls_pic_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
528tls_pic_test_LDADD = tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o \
529 -lpthread
6eee141f 530
6eee141f
ILT
531tls_shared_test_SOURCES = tls_test_main.cc
532tls_shared_test_DEPENDENCIES = gcctestdir/ld tls_test_shared.so
533tls_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
534tls_shared_test_LDADD = tls_test_shared.so -lpthread
535
c03c7692
ILT
536tls_shared_ie_test_SOURCES = tls_test_main.cc
537tls_shared_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_ie_shared.so
538tls_shared_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
539tls_shared_ie_test_LDADD = tls_test_ie_shared.so -lpthread
540
c2b45e22 541tls_shared_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
542tls_shared_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o \
543 tls_test_c_pic.o tls_test_shared2.so
c2b45e22 544tls_shared_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
545tls_shared_gd_to_ie_test_LDADD = tls_test_pic.o tls_test_c_pic.o \
546 tls_test_shared2.so -lpthread
c2b45e22
CC
547
548if TLS_GNU2_DIALECT
549
550check_PROGRAMS += tls_shared_gnu2_gd_to_ie_test
551
552tls_test_gnu2.o: tls_test.cc
553 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
554tls_test_file2_gnu2.o: tls_test_file2.cc
555 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
155a0dd7
ILT
556tls_test_c_gnu2.o: tls_test_c.c
557 $(COMPILE) -c -fpic -mtls-dialect=gnu2 $(TLS_TEST_C_CFLAGS) -o $@ $<
c2b45e22
CC
558tls_test_gnu2_shared2.so: tls_test_file2_gnu2.o gcctestdir/ld
559 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_gnu2.o
560
561tls_shared_gnu2_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
562tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2.o \
563 tls_test_c_gnu2.o tls_test_gnu2_shared2.so
c2b45e22 564tls_shared_gnu2_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
565tls_shared_gnu2_gd_to_ie_test_LDADD = tls_test_gnu2.o tls_test_c_gnu2.o \
566 tls_test_gnu2_shared2.so -lpthread
c2b45e22
CC
567
568if TLS_DESCRIPTORS
569
570check_PROGRAMS += tls_shared_gnu2_test
571
155a0dd7
ILT
572tls_test_gnu2_shared.so: tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o gcctestdir/ld
573 $(CXXLINK) -Bgcctestdir/ -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
c2b45e22
CC
574
575tls_shared_gnu2_test_SOURCES = tls_test_main.cc
576tls_shared_gnu2_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2_shared.so
577tls_shared_gnu2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
578tls_shared_gnu2_test_LDADD = tls_test_gnu2_shared.so -lpthread
579
580endif TLS_DESCRIPTORS
581
582endif TLS_GNU2_DIALECT
583
351a8000
ILT
584if STATIC_TLS
585check_PROGRAMS += tls_static_test
586check_PROGRAMS += tls_static_pic_test
587
588tls_static_test_SOURCES = $(tls_test_SOURCES)
589tls_static_test_DEPENDENCIES = $(tls_test_DEPENDENCIES)
590tls_static_test_LDFLAGS = $(tls_test_LDFLAGS) -static
591tls_static_test_LDADD = $(tls_test_LDADD)
592
593tls_static_pic_test_SOURCES = $(tls_pic_test_SOURCES)
594tls_static_pic_test_DEPENDENCIES = $(tls_pic_test_DEPENDENCIES)
595tls_static_pic_test_LDFLAGS = $(tls_pic_test_LDFLAGS) -static
596tls_static_pic_test_LDADD = $(tls_pic_test_LDADD)
597endif
6eee141f
ILT
598
599if FN_PTRS_IN_SO_WITHOUT_PIC
351a8000 600check_PROGRAMS += tls_shared_nonpic_test
155a0dd7
ILT
601tls_test_shared_nonpic.so: tls_test.o tls_test_file2.o tls_test_c.o gcctestdir/ld
602 $(CXXLINK) -Bgcctestdir/ -shared tls_test.o tls_test_file2.o tls_test_c.o
6eee141f
ILT
603
604tls_shared_nonpic_test_SOURCES = tls_test_main.cc
605tls_shared_nonpic_test_DEPENDENCIES = gcctestdir/ld tls_test_shared_nonpic.so
606tls_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
607tls_shared_nonpic_test_LDADD = tls_test_shared_nonpic.so -lpthread
351a8000 608endif FN_PTRS_IN_SO_WITHOUT_PIC
6eee141f 609
351a8000 610endif TLS
6eee141f 611
d491d34e
ILT
612check_PROGRAMS += many_sections_test
613many_sections_test_SOURCES = many_sections_test.cc
614many_sections_test_DEPENDENCIES = gcctestdir/ld
615many_sections_test_LDFLAGS = -Bgcctestdir/ -rdynamic
616
617BUILT_SOURCES += many_sections_define.h
618many_sections_define.h:
619 (for i in `seq 1 70000`; do \
620 echo "int var_$$i __attribute__((section(\"section_$$i\"))) = $$i;"; \
621 done) > $@.tmp
622 mv -f $@.tmp $@
623
624BUILT_SOURCES += many_sections_check.h
625many_sections_check.h:
4c94d6ae 626 (for i in `seq 1 1000 70000`; do \
d491d34e
ILT
627 echo "assert(var_$$i == $$i);"; \
628 done) > $@.tmp
629 mv -f $@.tmp $@
630
631check_PROGRAMS += many_sections_r_test
d491d34e
ILT
632many_sections_r_test.o: many_sections_test.o gcctestdir/ld
633 gcctestdir/ld -r -o $@ many_sections_test.o
7bc3e21a
ILT
634many_sections_r_test: many_sections_r_test.o gcctestdir/ld
635 $(CXXLINK) -Bgcctestdir/ many_sections_r_test.o $(LIBS)
6eee141f 636
2fd32231
ILT
637if CONSTRUCTOR_PRIORITY
638
639check_PROGRAMS += initpri1
640initpri1_SOURCES = initpri1.c
641initpri1_DEPENDENCIES = gcctestdir/ld
642initpri1_LDFLAGS = -Bgcctestdir/
643
644endif
645
646
351a8000
ILT
647# Test --detect-odr-violations
648check_SCRIPTS += debug_msg.sh
6eee141f 649
351a8000
ILT
650# Create the data files that debug_msg.sh analyzes.
651check_DATA += debug_msg.err
652MOSTLYCLEANFILES += debug_msg.err
653debug_msg.o: debug_msg.cc
654 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/debug_msg.cc
655odr_violation1.o: odr_violation1.cc
656 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation1.cc
657odr_violation2.o: odr_violation2.cc
658 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation2.cc
659debug_msg.err: debug_msg.o odr_violation1.o odr_violation2.o gcctestdir/ld
660 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o "2>$@"
661 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>$@; \
662 then \
663 echo 1>&2 "Link of debug_msg should have failed"; \
664 rm -f $@; \
665 exit 1; \
666 fi
667
668# See if we can also detect problems when we're linking .so's, not .o's.
669check_DATA += debug_msg_so.err
670MOSTLYCLEANFILES += debug_msg_so.err
671debug_msg.so: debug_msg.cc gcctestdir/ld
672 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
673odr_violation1.so: odr_violation1.cc gcctestdir/ld
674 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
675odr_violation2.so: odr_violation2.cc gcctestdir/ld
676 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
677debug_msg_so.err: debug_msg.so odr_violation1.so odr_violation2.so gcctestdir/ld
678 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so "2>$@"
679 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>$@; \
680 then \
681 echo 1>&2 "Link of debug_msg_so should have failed"; \
682 rm -f $@; \
683 exit 1; \
684 fi
685
686# We also want to make sure we do something reasonable when there's no
687# debug info available. For the best test, we use .so's.
688check_DATA += debug_msg_ndebug.err
689MOSTLYCLEANFILES += debug_msg_ndebug.err
690debug_msg_ndebug.so: debug_msg.cc gcctestdir/ld
691 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
692odr_violation1_ndebug.so: odr_violation1.cc gcctestdir/ld
693 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
694odr_violation2_ndebug.so: odr_violation2.cc gcctestdir/ld
695 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
696debug_msg_ndebug.err: debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so gcctestdir/ld
697 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so "2>$@"
698 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so 2>$@; \
699 then \
700 echo 1>&2 "Link of debug_msg_ndebug should have failed"; \
701 rm -f $@; \
702 exit 1; \
703 fi
704
705
706# Similar to --detect-odr-violations: check for undefined symbols in .so's
707check_SCRIPTS += undef_symbol.sh
708check_DATA += undef_symbol.err
709MOSTLYCLEANFILES += undef_symbol.err
710undef_symbol.o: undef_symbol.cc
711 $(CXXCOMPILE) -O0 -g -c -fPIC $<
712undef_symbol.so: undef_symbol.o gcctestdir/ld
713 $(CXXLINK) -Bgcctestdir/ -shared undef_symbol.o
714undef_symbol.err: undef_symbol_main.o undef_symbol.so gcctestdir/ld
715 @echo $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so "2>$@"
716 @if $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>$@; \
717 then \
718 echo 1>&2 "Link of undef_symbol_test should have failed"; \
719 rm -f $@; \
720 exit 1; \
721 fi
722
723
351a8000
ILT
724# Test -o when emitting to a special file (such as something in /dev).
725check_PROGRAMS += flagstest_o_specialfile
0e470e5c 726flagstest_o_specialfile: flagstest_debug.o gcctestdir/ld
351a8000
ILT
727 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< 2>&1 | cat > $@
728 chmod a+x $@
729 test -s $@
730
7fcd0256
ILT
731if HAVE_ZLIB
732
733# Test --compress-debug-sections. FIXME: check we actually compress.
734check_PROGRAMS += flagstest_compress_debug_sections
735flagstest_compress_debug_sections: flagstest_debug.o gcctestdir/ld
736 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib
737 test -s $@
738
739
351a8000
ILT
740# The specialfile output has a tricky case when we also compress debug
741# sections, because it requires output-file resizing.
742check_PROGRAMS += flagstest_o_specialfile_and_compress_debug_sections
0e470e5c
ILT
743flagstest_o_specialfile_and_compress_debug_sections: flagstest_debug.o \
744 gcctestdir/ld
126f3ece 745 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< -Wl,--compress-debug-sections=zlib 2>&1 | cat > $@
351a8000
ILT
746 chmod a+x $@
747 test -s $@
748
7fcd0256
ILT
749endif HAVE_ZLIB
750
99f8faca
ILT
751# Test symbol versioning.
752check_PROGRAMS += ver_test
753ver_test_SOURCES = ver_test_main.cc
754ver_test_DEPENDENCIES = gcctestdir/ld ver_test_1.so ver_test_2.so ver_test_4.so
755ver_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
756ver_test_LDADD = ver_test_1.so ver_test_2.so ver_test_4.so
757ver_test_1.so: ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so gcctestdir/ld
758 $(CXXLINK) -Bgcctestdir/ -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
09124467
ILT
759ver_test_2.so: ver_test_2.o $(srcdir)/ver_test_2.script ver_test_4.so gcctestdir/ld
760 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_2.script ver_test_2.o ver_test_4.so
761ver_test_4.so: ver_test_4.o $(srcdir)/ver_test_4.script gcctestdir/ld
762 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o
99f8faca
ILT
763ver_test_1.o: ver_test_1.cc
764 $(CXXCOMPILE) -c -fpic -o $@ $<
765ver_test_2.o: ver_test_2.cc
766 $(CXXCOMPILE) -c -fpic -o $@ $<
767ver_test_3.o: ver_test_3.cc
768 $(CXXCOMPILE) -c -fpic -o $@ $<
769ver_test_4.o: ver_test_4.cc
770 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000 771
0602e05a
ILT
772check_SCRIPTS += ver_test_1.sh
773check_DATA += ver_test_1.syms
774ver_test_1.syms: ver_test_1.so
775 $(TEST_READELF) -s $< >$@ 2>/dev/null
776
be3e6201
ILT
777check_PROGRAMS += ver_test_2
778ver_test_2_SOURCES = ver_test_main_2.cc
779ver_test_2_DEPENDENCIES = gcctestdir/ld ver_test_4.so ver_test_2.so
780ver_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
781ver_test_2_LDADD = ver_test_4.so ver_test_2.so
782
be3e6201
ILT
783check_SCRIPTS += ver_test_2.sh
784check_DATA += ver_test_2.syms
785ver_test_2.syms: ver_test_2
6835af53 786 $(TEST_READELF) -s $< >$@ 2>/dev/null
be3e6201 787
686c8caf
ILT
788check_SCRIPTS += ver_test_4.sh
789check_DATA += ver_test_4.syms
790ver_test_4.syms: ver_test_4.so
6835af53 791 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f
ILT
792
793ver_test_5.so: ver_test_5.o $(srcdir)/ver_test_5.script ver_test_4.so gcctestdir/ld
794 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_5.script ver_test_5.o ver_test_4.so
795ver_test_5.o: ver_test_5.cc
796 $(CXXCOMPILE) -c -fpic -o $@ $<
797check_SCRIPTS += ver_test_5.sh
798check_DATA += ver_test_5.syms
799ver_test_5.syms: ver_test_5.so
6835af53 800 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f 801
18e6b24e
ILT
802check_PROGRAMS += ver_test_6
803ver_test_6_SOURCES = ver_test_6.c
804ver_test_6_DEPENDENCIES = gcctestdir/ld ver_test_2.so
805ver_test_6_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
806ver_test_6_LDADD = ver_test_2.so
807
479f6503
ILT
808ver_test_7.so: ver_test_4.o $(srcdir)/ver_test_4.script ver_test_7.o gcctestdir/ld
809 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o ver_test_7.o
810ver_test_7.o: ver_test_7.cc
811 $(CXXCOMPILE) -c -fpic -o $@ $<
812check_SCRIPTS += ver_test_7.sh
813check_DATA += ver_test_7.syms
814ver_test_7.syms: ver_test_7.so
6835af53 815 $(TEST_READELF) -s $< >$@ 2>/dev/null
479f6503 816
75517b77
ILT
817check_PROGRAMS += ver_test_8
818ver_test_8_SOURCES = two_file_test_main.cc
819ver_test_8_DEPENDENCIES = gcctestdir/ld ver_test_8_1.so ver_test_8_2.so
820ver_test_8_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
821ver_test_8_LDADD = ver_test_8_1.so ver_test_8_2.so
822ver_test_8_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so gcctestdir/ld
823 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
824ver_test_8_2.so: two_file_test_2_pic.o $(srcdir)/ver_test_8.script gcctestdir/ld
825 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_8.script two_file_test_2_pic.o
826
95d14cd3
ILT
827check_PROGRAMS += ver_test_9
828ver_test_9_SOURCES = ver_test_main.cc
829ver_test_9_DEPENDENCIES = gcctestdir/ld ver_test_9.so
830ver_test_9_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
831ver_test_9_LDADD = ver_test_9.so
832ver_test_9.so: ver_test_9.o ver_test_4.so ver_test_5.so gcctestdir/ld
833 $(CXXLINK) -Bgcctestdir/ -shared ver_test_9.o ver_test_5.so ver_test_4.so
834ver_test_9.o: ver_test_9.cc
835 $(CXXCOMPILE) -c -fpic -o $@ $<
836
057ead22
ILT
837check_SCRIPTS += ver_test_10.sh
838check_DATA += ver_test_10.syms
839ver_test_10.syms: ver_test_10.so
840 $(TEST_READELF) -s $< >$@ 2>/dev/null
841ver_test_10.so: gcctestdir/ld ver_test_2.o ver_test_10.script
842 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_10.script ver_test_2.o
843
9c5b8369
ILT
844check_PROGRAMS += ver_test_11
845ver_test_11_SOURCES = ver_test_main_2.cc
846ver_test_11_DEPENDENCIES = gcctestdir/ld ver_test_11.a
847ver_test_11_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
848ver_test_11_LDADD = ver_test_11.a
849ver_test_11.a: ver_test_1.o ver_test_2.o ver_test_4.o
850 $(TEST_AR) rc $@ $^
851
8bdcdf2c
ILT
852check_PROGRAMS += protected_1
853protected_1_SOURCES = \
854 protected_main_1.cc protected_main_2.cc protected_main_3.cc
855protected_1_DEPENDENCIES = gcctestdir/ld protected_1.so
856protected_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
857protected_1_LDADD = protected_1.so
858
859protected_1.so: gcctestdir/ld protected_1_pic.o protected_2_pic.o protected_3_pic.o
860 $(CXXLINK) -Bgcctestdir/ -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
861protected_1_pic.o: protected_1.cc
862 $(CXXCOMPILE) -c -fpic -o $@ $<
863protected_2_pic.o: protected_2.cc
864 $(CXXCOMPILE) -c -fpic -o $@ $<
865protected_3_pic.o: protected_3.cc
866 $(CXXCOMPILE) -c -fpic -o $@ $<
867
868check_PROGRAMS += protected_2
869protected_2_SOURCES = protected_main_1.cc protected_3.cc
870protected_2_DEPENDENCIES = gcctestdir/ld protected_1.so
871protected_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
872protected_2_LDADD = protected_1.so
873
9f1d377b
ILT
874check_PROGRAMS += relro_test
875relro_test_SOURCES = relro_test_main.cc
876relro_test_DEPENDENCIES = gcctestdir/ld relro_test.so
877relro_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
878relro_test_LDADD = relro_test.so
879relro_test.so: gcctestdir/ld relro_test_pic.o
880 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro relro_test_pic.o
881relro_test_pic.o: relro_test.cc
882 $(CXXCOMPILE) -c -fpic -o $@ $<
883
2d924fd9
ILT
884check_PROGRAMS += relro_script_test
885relro_script_test_SOURCES = relro_test_main.cc
886relro_script_test_DEPENDENCIES = gcctestdir/ld relro_script_test.so
887relro_script_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
888relro_script_test_LDADD = relro_script_test.so
889relro_script_test.so: gcctestdir/ld relro_script_test.t relro_test_pic.o
890 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro -T $(srcdir)/relro_script_test.t relro_test_pic.o
891
e5756efb
ILT
892check_PROGRAMS += script_test_1
893script_test_1_SOURCES = script_test_1.cc
894script_test_1_DEPENDENCIES = gcctestdir/ld script_test_1.t
895script_test_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -T $(srcdir)/script_test_1.t
896
a445fddf
ILT
897check_PROGRAMS += script_test_2
898script_test_2_SOURCES = script_test_2.cc script_test_2a.cc script_test_2b.cc
899script_test_2_DEPENDENCIES = gcctestdir/ld script_test_2.t
900script_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -T $(srcdir)/script_test_2.t
901
88dd47ac
ILT
902check_PROGRAMS += justsyms
903justsyms_SOURCES = justsyms_1.cc
904justsyms_DEPENDENCIES = gcctestdir/ld justsyms_2r.o
905justsyms_LDFLAGS = -Bgcctestdir/ -Wl,-R,justsyms_2r.o
906justsyms_2.o: justsyms_2.cc
907 $(CXXCOMPILE) -c -o $@ $<
83bfb6b7 908justsyms_2r.o: justsyms_2.o gcctestdir/ld $(srcdir)/justsyms.t
88dd47ac
ILT
909 gcctestdir/ld -o $@ -r -T $(srcdir)/justsyms.t justsyms_2.o
910
bc644c6c
ILT
911check_PROGRAMS += binary_test
912binary_test_SOURCES = binary_test.cc
913binary_test_DEPENDENCIES = gcctestdir/ld binary.txt
914binary_test_LDFLAGS = -Bgcctestdir/ -Wl,--format,binary,binary.txt,--format,elf
915# Copy the file to the build directory to avoid worrying about the
916# full pathname in the generated symbols.
917binary.txt: $(srcdir)/binary.in
918 rm -f $@
919 $(LN_S) $< $@
920
09124467
ILT
921check_SCRIPTS += ver_matching_test.sh
922check_DATA += ver_matching_test.stdout
923MOSTLYCLEANFILES += ver_matching_test.stdout
924ver_matching_def.so: ver_matching_def.cc gcctestdir/ld
925 $(CXXLINK) -O0 -Bgcctestdir/ -shared $(srcdir)/ver_matching_def.cc -Wl,--version-script=$(srcdir)/version_script.map
926ver_matching_test.stdout: ver_matching_def.so
6835af53 927 $(TEST_OBJDUMP) -T ver_matching_def.so | $(TEST_CXXFILT) > ver_matching_test.stdout
1c4f3631
ILT
928
929check_PROGRAMS += script_test_3
930check_SCRIPTS += script_test_3.sh
931check_DATA += script_test_3.stdout
932MOSTLYCLEANFILES += script_test_3.stdout
933script_test_3: basic_test.o gcctestdir/ld script_test_3.t
934 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_3.t
935script_test_3.stdout: script_test_3
2cefc357 936 $(TEST_READELF) -SlW script_test_3 > script_test_3.stdout
09124467 937
e6188289
ILT
938check_SCRIPTS += script_test_4.sh
939check_DATA += script_test_4.stdout
940MOSTLYCLEANFILES += script_test_4.stdout
941script_test_4: basic_test.o gcctestdir/ld $(srcdir)/script_test_4.t
942 $(CXXLINK) -Bgcctestdir/ basic_test.o -T $(srcdir)/script_test_4.t
943script_test_4.stdout: script_test_4
944 $(TEST_READELF) -SlW script_test_4 > script_test_4.stdout
945
401a9a73
CC
946check_SCRIPTS += script_test_5.sh
947check_DATA += script_test_5.stdout
948MOSTLYCLEANFILES += script_test_5.stdout
949script_test_5: script_test_5.o gcctestdir/ld $(srcdir)/script_test_5.t
950 $(CXXLINK) -Bgcctestdir/ script_test_5.o -T $(srcdir)/script_test_5.t
951script_test_5.stdout: script_test_5
952 $(TEST_READELF) -SW script_test_5 > script_test_5.stdout
953
c82fbeee
CS
954# Test --dynamic-list, --dynamic-list-data, --dynamic-list-cpp-new,
955# and --dynamic-list-cpp-typeinfo
956
957check_SCRIPTS += dynamic_list.sh
958check_DATA += dynamic_list.stdout
959MOSTLYCLEANFILES += dynamic_list.stdout
960dynamic_list: basic_test.o gcctestdir/ld $(srcdir)/dynamic_list.t
961 $(CXXLINK) -Bgcctestdir/ basic_test.o \
962 -Wl,--dynamic-list $(srcdir)/dynamic_list.t \
963 -Wl,--dynamic-list-data \
964 -Wl,--dynamic-list-cpp-new \
965 -Wl,--dynamic-list-cpp-typeinfo
966dynamic_list.stdout: dynamic_list
967 $(TEST_READELF) -DWs dynamic_list > dynamic_list.stdout
968
fbd8a257
CC
969check_PROGRAMS += thin_archive_test_1
970thin_archive_test_1_SOURCES = thin_archive_main.cc
971thin_archive_test_1_DEPENDENCIES = gcctestdir/ld libthin1.a alt/libthin2.a
972thin_archive_test_1_LDFLAGS = -Bgcctestdir/ -Lalt
973thin_archive_test_1_LDADD = libthin1.a -lthin2
974
975check_PROGRAMS += thin_archive_test_2
976thin_archive_test_2_SOURCES = thin_archive_main.cc
977thin_archive_test_2_DEPENDENCIES = gcctestdir/ld libthinall.a
978thin_archive_test_2_LDFLAGS = -Bgcctestdir/ -L.
979thin_archive_test_2_LDADD = -lthinall
980
981libthin1.a: thin_archive_test_1.o alt/thin_archive_test_2.o
982 rm -f $@
983 $(TEST_AR) crT $@ $^
984alt/libthin2.a: thin_archive_test_3.o alt/thin_archive_test_4.o
985 rm -f $@
986 $(TEST_AR) crT $@ $^
987libthin3.a: thin_archive_test_1.o alt/thin_archive_test_4.o
988 rm -f $@
989 $(TEST_AR) crT $@ $^
990alt/libthin4.a: alt/thin_archive_test_2.o thin_archive_test_3.o
991 rm -f $@
992 $(TEST_AR) crT $@ $^
993libthinall.a: libthin3.a alt/libthin4.a
994 rm -f $@
995 $(TEST_AR) crT $@ $^
996alt/thin_archive_test_2.o: thin_archive_test_2.cc
997 test -d alt || mkdir -p alt
998 $(CXXCOMPILE) -c -o $@ $<
999alt/thin_archive_test_4.o: thin_archive_test_4.cc
1000 test -d alt || mkdir -p alt
1001 $(CXXCOMPILE) -c -o $@ $<
1002
89fc3421
CC
1003if PLUGINS
1004
1005check_PROGRAMS += plugin_test_1
1006check_SCRIPTS += plugin_test_1.sh
1007check_DATA += plugin_test_1.err
1008MOSTLYCLEANFILES += plugin_test_1.err
abc8dcba
CC
1009plugin_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
1010 $(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
1011plugin_test_1.err: plugin_test_1
1012 @touch plugin_test_1.err
1013
1014check_PROGRAMS += plugin_test_2
1015check_SCRIPTS += plugin_test_2.sh
1016check_DATA += plugin_test_2.err
1017MOSTLYCLEANFILES += plugin_test_2.err
1018plugin_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
1019 $(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
1020plugin_test_2.err: plugin_test_2
1021 @touch plugin_test_2.err
1022
d66a9eb3
CC
1023check_PROGRAMS += plugin_test_3
1024check_SCRIPTS += plugin_test_3.sh
1025check_DATA += plugin_test_3.err
1026MOSTLYCLEANFILES += plugin_test_3.err
1027plugin_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
1028 $(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
1029plugin_test_3.err: plugin_test_3
1030 @touch plugin_test_3.err
1031
0f7c0701
CC
1032check_PROGRAMS += plugin_test_4
1033check_SCRIPTS += plugin_test_4.sh
1034check_DATA += plugin_test_4.err
1035MOSTLYCLEANFILES += plugin_test_4.err
1036plugin_test_4: two_file_test_main.o plugin_test_4.a gcctestdir/ld plugin_test.so
1037 $(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
1038plugin_test_4.err: plugin_test_4
1039 @touch plugin_test_4.err
1040
1041plugin_test_4.a: two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms
1042 $(TEST_AR) cr $@ $^
1043
89fc3421
CC
1044plugin_test.so: plugin_test.o
1045 $(LINK) -Bgcctestdir/ -shared plugin_test.o
1046plugin_test.o: plugin_test.c
1047 $(COMPILE) -O0 -c -fpic -o $@ $<
1048
1049two_file_test_main.syms: two_file_test_main.o
1050 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1051two_file_test_1.syms: two_file_test_1.o
1052 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1053two_file_test_1b.syms: two_file_test_1b.o
1054 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1055two_file_test_2.syms: two_file_test_2.o
1056 $(TEST_READELF) -sW $< >$@ 2>/dev/null
abc8dcba
CC
1057empty.syms:
1058 @echo "" >empty.syms
1059 @echo "Symbol table" >>empty.syms
89fc3421
CC
1060
1061endif PLUGINS
1062
65514900
CC
1063check_PROGRAMS += exclude_libs_test
1064check_SCRIPTS += exclude_libs_test.sh
1065check_DATA += exclude_libs_test.syms
1066MOSTLYCLEANFILES += exclude_libs_test.syms libexclude_libs_test_1.a \
2fdd743f 1067 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
65514900
CC
1068exclude_libs_test_SOURCES = exclude_libs_test.c
1069exclude_libs_test_DEPENDENCIES = gcctestdir/ld libexclude_libs_test_1.a \
2fdd743f
DK
1070 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
1071exclude_libs_test_LDFLAGS = -Bgcctestdir/ -L. -Lalt \
1072 -Wl,--exclude-libs,dummy:libexclude_libs_test_1 \
1073 -Wl,--exclude-libs,libexclude_libs_test_3
1074exclude_libs_test_LDADD = -lexclude_libs_test_1 -lexclude_libs_test_2 \
1075 alt/libexclude_libs_test_3.a
65514900
CC
1076exclude_libs_test.syms: exclude_libs_test
1077 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1078libexclude_libs_test_1.a: exclude_libs_test_1.o
1079 $(TEST_AR) rc $@ $^
1080libexclude_libs_test_2.a: exclude_libs_test_2.o
1081 $(TEST_AR) rc $@ $^
2fdd743f
DK
1082alt/libexclude_libs_test_3.a: exclude_libs_test_3.o
1083 test -d alt || mkdir -p alt
1084 $(TEST_AR) rc $@ $^
65514900 1085
805bb01c
DK
1086check_PROGRAMS += local_labels_test
1087local_labels_test.o: ver_test_6.c
1088 $(COMPILE) -g -c -Wa,-L -o $@ $<
1089local_labels_test: local_labels_test.o
1090 $(LINK) -Bgcctestdir/ local_labels_test.o
1091
bb04269c
DK
1092check_PROGRAMS += discard_locals_test
1093check_SCRIPTS += discard_locals_test.sh
1094check_DATA += discard_locals_test.syms
1095MOSTLYCLEANFILES += discard_locals_test.syms
1096discard_locals_test_SOURCES = discard_locals_test.c
1097discard_locals_test_LDFLAGS = -Bgcctestdir/ -Wl,--discard-locals
1098discard_locals_test.syms: discard_locals_test
1099 $(TEST_READELF) -sW $< >$@ 2>/dev/null
1100# '-Wa,-L' is required to preserve the local label used for testing.
1101discard_locals_test.o: discard_locals_test.c
1102 $(COMPILE) -c -Wa,-L -o $@ $<
1103
8a5e3e08
ILT
1104if MCMODEL_MEDIUM
1105check_PROGRAMS += large
1106large_SOURCES = large.c
1107large_CFLAGS = -mcmodel=medium
1108large_DEPENDENCIES = gcctestdir/ld
1109large_LDFLAGS = -Bgcctestdir/
1110endif MCMODEL_MEDIUM
1111
351a8000
ILT
1112endif GCC
1113endif NATIVE_LINKER
This page took 0.17241 seconds and 4 git commands to generate.