Automatic date update in version.in
[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
918357b9
L
10# This is where we get zlib from. zlib is in ../../zlib unless we were
11# configured with --with-system-zlib, in which case ../../zlib either
12# doesn't exist or not configured.
13ZLIB = -L../../zlib -lz
14
f958d5fc 15# The two_file_test tests -fmerge-constants, so we simply always turn
2b64b551
RM
16# it on. For compilers that do not support the command-line option,
17# we assume they just always emit SHF_MERGE sections unconditionally.
18AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS) $(MERGE_CONSTANTS_FLAG)
19AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS) $(MERGE_CONSTANTS_FLAG)
5a6f7e2d 20
14ec8efd 21AM_CPPFLAGS = \
5a6f7e2d 22 -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../../include \
155a0dd7 23 -I$(srcdir)/../../elfcpp -I.. \
5a6f7e2d
ILT
24 -DLOCALEDIR="\"$(datadir)/locale\"" \
25 @INCINTL@
26
ae447ddd
CC
27# Some versions of GCC now automatically enable linker plugins,
28# but we want to run our tests without GCC's plugins.
29if HAVE_NO_USE_LINKER_PLUGIN
30OPT_NO_PLUGINS = -fno-use-linker-plugin
31endif
32
aa543512
L
33# COMPILE1, LINK1, CXXCOMPILE1, CXXLINK1 are renamed from COMPILE, LINK,
34# CXXCOMPILE and CXXLINK generated by automake 1.11.1. FIXME: they should
35# be updated if they are different from automake used by gold.
36COMPILE1 = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
37 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
ae447ddd
CC
38LINK1 = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(OPT_NO_PLUGINS) \
39 $(AM_LDFLAGS) $(LDFLAGS) -o $@
aa543512
L
40CXXCOMPILE1 = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
41 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
ae447ddd
CC
42CXXLINK1 = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(OPT_NO_PLUGINS) \
43 $(AM_LDFLAGS) $(LDFLAGS) -o $@
aa543512 44
ae447ddd 45# Strip out -Wp,-D_FORTIFY_SOURCE=, which is irrelevant for the gold
aa543512
L
46# testsuite and incompatible with -O0 used in gold tests, from
47# COMPILE, LINK, CXXCOMPILE and CXXLINK.
48COMPILE = `echo $(COMPILE1) | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'`
49LINK = `echo $(LINK1) | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`
50CXXCOMPILE = `echo $(CXXCOMPILE1) | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`
51CXXLINK = `echo $(CXXLINK1) | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`
52
3d587466
CC
53# Strip out -static-libgcc and -static-libstdc++ options, for tests
54# that must have these libraries linked dynamically. The -shared-libgcc
55# option does not work correctly, and there is no -shared-libstdc++ option.
56# (See GCC PR 55781 and PR 55782.)
57CXXLINK_S = `echo $(CXXLINK1) | sed -e 's/-static-lib\\(gcc\\|stdc++\\)//g'`
58
6835af53
ILT
59TEST_READELF = $(top_builddir)/../binutils/readelf
60TEST_OBJDUMP = $(top_builddir)/../binutils/objdump
35c813e2 61TEST_OBJCOPY = $(top_builddir)/../binutils/objcopy
6835af53
ILT
62TEST_CXXFILT = $(top_builddir)/../binutils/cxxfilt
63TEST_STRIP = $(top_builddir)/../binutils/strip-new
fbd8a257 64TEST_AR = $(top_builddir)/../binutils/ar
531813ad 65TEST_NM = $(top_builddir)/../binutils/nm-new
364c7fa5 66TEST_AS = $(top_builddir)/../gas/as-new
6835af53 67
89fc3421
CC
68if PLUGINS
69LIBDL = -ldl
70endif
71
fe9a4c12
ILT
72if THREADS
73THREADSLIB = -lpthread
74endif
75
155a0dd7
ILT
76if OMP_SUPPORT
77TLS_TEST_C_CFLAGS = -fopenmp
78endif
79
351a8000
ILT
80# 'make clean' is good about deleting some intermediate files (such as
81# .o's), but not all of them (such as .so's and .err files). We
82# improve on that here. automake-1.9 info docs say "mostlyclean" is
83# the right choice for files 'make' builds that people rebuild.
72fef11a 84MOSTLYCLEANFILES = *.so *.syms *.stdout
6eee141f 85
9df9de2c
CC
86# Export make variables to the shell scripts so that they can see
87# (for example) DEFAULT_TARGET.
88.EXPORT_ALL_VARIABLES:
2b64b551 89
351a8000
ILT
90# We will add to these later, for each individual test. Note
91# that we add each test under check_SCRIPTS or check_PROGRAMS;
92# the TESTS variable is automatically populated from these.
93check_SCRIPTS =
94check_DATA =
95check_PROGRAMS =
d491d34e
ILT
96BUILT_SOURCES =
97
351a8000 98TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
22dc1b09 99
351a8000
ILT
100# ---------------------------------------------------------------------
101# These tests test the internals of gold (unittests).
5a6f7e2d 102
351a8000 103# Infrastucture needed for the unittests
5a6f7e2d
ILT
104check_LIBRARIES = libgoldtest.a
105libgoldtest_a_SOURCES = test.cc testmain.cc testfile.cc
106
ad2d6943
ILT
107DEPENDENCIES = \
108 libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL_DEP)
fe9a4c12 109LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
918357b9 110 $(THREADSLIB) $(LIBDL) $(ZLIB)
5a6f7e2d 111
5a6f7e2d 112
351a8000 113# The unittests themselves
eb373049 114if NATIVE_OR_CROSS_LINKER
90e24de5
ILT
115if GCC
116
117# Infrastucture needed for the unittests: a directory where the linker
118# is named 'ld'. This is because the -B flag appends 'ld' to its arg.
119gcctestdir/ld: ../ld-new
120 test -d gcctestdir || mkdir -p gcctestdir
121 rm -f gcctestdir/ld
122 (cd gcctestdir && $(LN_S) ../../ld-new ld)
123
472076e4
CC
124# Some tests require the latest features of an in-tree assembler.
125gcctestdir/as: $(TEST_AS)
126 test -d gcctestdir || mkdir -p gcctestdir
127 rm -f gcctestdir/as
128 (cd gcctestdir && $(LN_S) $(abs_top_builddir)/../gas/as-new as)
129
90e24de5
ILT
130endif GCC
131
351a8000 132check_PROGRAMS += object_unittest
5a6f7e2d 133object_unittest_SOURCES = object_unittest.cc
22dc1b09 134
bc644c6c
ILT
135check_PROGRAMS += binary_unittest
136binary_unittest_SOURCES = binary_unittest.cc
137
c2c7840a
CC
138check_PROGRAMS += leb128_unittest
139leb128_unittest_SOURCES = leb128_unittest.cc
140
44803b5d
CC
141check_PROGRAMS += overflow_unittest
142overflow_unittest_SOURCES = overflow_unittest.cc
143overflow_unittest.o: overflow_unittest.cc
144 $(CXXCOMPILE) -O3 -c -o $@ $<
145
eb373049 146endif NATIVE_OR_CROSS_LINKER
351a8000
ILT
147
148# ---------------------------------------------------------------------
149# These tests test the output of gold (end-to-end tests). In
150# particular, they make sure that gold can link "difficult" object
151# files, and the resulting object files run correctly. These can only
152# run if we've built ld-new for the native architecture (that is,
153# we're not cross-compiling it), since we run ld-new as part of these
154# tests. We use the gcc-specific flag '-B' to use our linker instead
155# of the default linker, which is why we only run our tests under gcc.
a360aedd 156
e2827e5f 157if NATIVE_LINKER
351a8000 158if GCC
e2827e5f 159
351a8000
ILT
160# Each of these .o's is a useful, small complete program. They're
161# particularly useful for making sure ld-new's flags do what they're
162# supposed to (hence their names), but are used for many tests that
163# don't actually involve analyzing input data.
43771f76
ILT
164flagstest_debug.o: constructor_test.cc
165 $(CXXCOMPILE) -O0 -g -c -o $@ $<
166flagstest_ndebug.o: constructor_test.cc
167 $(CXXCOMPILE) -O0 -c -o $@ $<
168
325e6408
RÁE
169check_SCRIPTS += incremental_test.sh
170check_DATA += incremental_test.stdout
0ec6429b 171MOSTLYCLEANFILES += incremental_test incremental_test.cmdline
325e6408
RÁE
172incremental_test_1.o: incremental_test_1.c
173 $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
174incremental_test_2.o: incremental_test_2.c
175 $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
176incremental_test: incremental_test_1.o incremental_test_2.o gcctestdir/ld
943c8b43 177 $(LINK) -Bgcctestdir/ -Wl,--incremental-full -Wl,-z,norelro incremental_test_1.o incremental_test_2.o -Wl,-debug 2> incremental_test.cmdline
325e6408
RÁE
178incremental_test.stdout: incremental_test ../incremental-dump
179 ../incremental-dump incremental_test > $@
43771f76 180
531813ad
ST
181check_SCRIPTS += gc_comdat_test.sh
182check_DATA += gc_comdat_test.stdout
72fef11a 183MOSTLYCLEANFILES += gc_comdat_test
2b64b551 184gc_comdat_test_1.o: gc_comdat_test_1.cc
4daadc0d 185 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
2b64b551 186gc_comdat_test_2.o: gc_comdat_test_2.cc
4daadc0d 187 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
531813ad 188gc_comdat_test: gc_comdat_test_1.o gc_comdat_test_2.o gcctestdir/ld
4daadc0d 189 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
531813ad
ST
190gc_comdat_test.stdout: gc_comdat_test
191 $(TEST_NM) -C gc_comdat_test > gc_comdat_test.stdout
192
27721062
ST
193check_SCRIPTS += gc_tls_test.sh
194check_DATA += gc_tls_test.stdout
72fef11a 195MOSTLYCLEANFILES += gc_tls_test
27721062
ST
196gc_tls_test.o: gc_tls_test.cc
197 $(CXXCOMPILE) -O0 -c -g -o $@ $<
198gc_tls_test:gc_tls_test.o gcctestdir/ld
199 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_tls_test.o
200gc_tls_test.stdout: gc_tls_test
201 $(TEST_NM) -C gc_tls_test > gc_tls_test.stdout
202
f1ec9ded
ST
203check_SCRIPTS += gc_orphan_section_test.sh
204check_DATA += gc_orphan_section_test.stdout
205MOSTLYCLEANFILES += gc_orphan_section_test
206gc_orphan_section_test.o: gc_orphan_section_test.cc
207 $(CXXCOMPILE) -O0 -c -g -o $@ $<
208gc_orphan_section_test:gc_orphan_section_test.o gcctestdir/ld
209 $(CXXLINK) -Bgcctestdir/ -Wl,--gc-sections gc_orphan_section_test.o
210gc_orphan_section_test.stdout: gc_orphan_section_test
211 $(TEST_NM) gc_orphan_section_test > gc_orphan_section_test.stdout
212
b9b2ae8b
NC
213check_SCRIPTS += pr14265.sh
214check_DATA += pr14265.stdout
215MOSTLYCLEANFILES += pr14265
216pr14265.o: pr14265.c
217 $(COMPILE) -O0 -c -o $@ $<
2b64b551 218pr14265: pr14265.o
1496b446 219 $(LINK) -Bgcctestdir/ -Wl,--gc-sections -Wl,-T,$(srcdir)/pr14265.t -o $@ $<
b9b2ae8b
NC
220pr14265.stdout: pr14265
221 $(TEST_NM) --format=bsd --numeric-sort $< > $@
222
fd834e57
CC
223check_SCRIPTS += gc_dynamic_list_test.sh
224check_DATA += gc_dynamic_list_test.stdout
225MOSTLYCLEANFILES += gc_dynamic_list_test
226gc_dynamic_list_test.o: gc_dynamic_list_test.c
227 $(COMPILE) -c -ffunction-sections -o $@ $<
228gc_dynamic_list_test: gc_dynamic_list_test.o gcctestdir/ld $(srcdir)/gc_dynamic_list_test.t
229 $(LINK) -Bgcctestdir/ -Wl,--gc-sections -Wl,--dynamic-list,$(srcdir)/gc_dynamic_list_test.t gc_dynamic_list_test.o
230gc_dynamic_list_test.stdout: gc_dynamic_list_test
231 $(TEST_NM) gc_dynamic_list_test > $@
232
ef15dade 233check_SCRIPTS += icf_test.sh
4d9aa155
AM
234check_DATA += icf_test.map
235MOSTLYCLEANFILES += icf_test icf_test.map
2b64b551 236icf_test.o: icf_test.cc
ef15dade 237 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
54de2ea6 238icf_test: icf_test.o gcctestdir/ld
4d9aa155 239 $(CXXLINK) -o icf_test -Bgcctestdir/ -Wl,--icf=all,-Map,icf_test.map icf_test.o
54de2ea6
CC
240icf_test.map: icf_test
241 @touch icf_test.map
ef15dade 242
48c187ce
ST
243check_SCRIPTS += icf_keep_unique_test.sh
244check_DATA += icf_keep_unique_test.stdout
72fef11a 245MOSTLYCLEANFILES += icf_keep_unique_test
48c187ce
ST
246icf_keep_unique_test.o: icf_keep_unique_test.cc
247 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
248icf_keep_unique_test: icf_keep_unique_test.o gcctestdir/ld
032ce4e9 249 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all -Wl,--keep-unique,_Z11unique_funcv icf_keep_unique_test.o
48c187ce 250icf_keep_unique_test.stdout: icf_keep_unique_test
4d9aa155 251 $(TEST_NM) -C $< > $@
531813ad 252
032ce4e9 253check_SCRIPTS += icf_safe_test.sh
4d9aa155
AM
254check_DATA += icf_safe_test_1.stdout icf_safe_test_2.stdout icf_safe_test.map
255MOSTLYCLEANFILES += icf_safe_test icf_safe_test.map
21bb3914 256icf_safe_test.o: icf_safe_test.cc
032ce4e9 257 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
54de2ea6 258icf_safe_test: icf_safe_test.o gcctestdir/ld
4d9aa155 259 $(CXXLINK) -o icf_safe_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_test.map icf_safe_test.o
54de2ea6
CC
260icf_safe_test.map: icf_safe_test
261 @touch icf_safe_test.map
21bb3914 262icf_safe_test_1.stdout: icf_safe_test
4d9aa155 263 $(TEST_NM) $< > $@
21bb3914 264icf_safe_test_2.stdout: icf_safe_test
4d9aa155 265 $(TEST_READELF) -h $< > $@
21bb3914
ST
266
267check_SCRIPTS += icf_safe_so_test.sh
4d9aa155
AM
268check_DATA += icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout icf_safe_so_test.map
269MOSTLYCLEANFILES += icf_safe_so_test icf_safe_so_test.map
21bb3914
ST
270icf_safe_so_test.o: icf_safe_so_test.cc
271 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
54de2ea6 272icf_safe_so_test: icf_safe_so_test.o gcctestdir/ld
4d9aa155 273 $(CXXLINK) -o icf_safe_so_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_so_test.map icf_safe_so_test.o -fPIC -shared
54de2ea6
CC
274icf_safe_so_test.map:
275 @touch icf_safe_so_test.map
21bb3914 276icf_safe_so_test_1.stdout: icf_safe_so_test
4d9aa155 277 $(TEST_NM) $< > $@
21bb3914 278icf_safe_so_test_2.stdout: icf_safe_so_test
4d9aa155 279 $(TEST_READELF) -h $< > $@
032ce4e9 280
6e9ba2ca
ST
281check_SCRIPTS += final_layout.sh
282check_DATA += final_layout.stdout
9e9143bc 283MOSTLYCLEANFILES += final_layout final_layout_sequence.txt final_layout_script.lds
6e9ba2ca
ST
284final_layout.o: final_layout.cc
285 $(CXXCOMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
286final_layout_sequence.txt:
287 (echo "*_Z3barv*" && echo ".text._Z3bazv" && echo "*_Z3foov*" && echo "*global_varb*" && echo "*global_vara*" && echo "*global_varc*") > final_layout_sequence.txt
9e9143bc 288final_layout_script.lds:
a39e4af6 289 (echo "SECTIONS { .text : { *(.text*) } .got : { *(.got .toc) } .sbss : { *(.sbss*) } .bss : { *(.bss*) } }") > final_layout_script.lds
9e9143bc
ST
290final_layout: final_layout.o final_layout_sequence.txt final_layout_script.lds gcctestdir/ld
291 $(CXXLINK) -Bgcctestdir/ -Wl,--section-ordering-file,final_layout_sequence.txt -Wl,-T,final_layout_script.lds final_layout.o
6e9ba2ca 292final_layout.stdout: final_layout
864a1b56 293 $(TEST_NM) -n --synthetic final_layout > final_layout.stdout
6e9ba2ca 294
28f2a4ac 295check_SCRIPTS += text_section_grouping.sh
c6ac678d
ST
296check_DATA += text_section_grouping.stdout text_section_no_grouping.stdout
297MOSTLYCLEANFILES += text_section_grouping text_section_no_grouping
28f2a4ac
ST
298text_section_grouping.o: text_section_grouping.cc
299 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
300text_section_grouping: text_section_grouping.o gcctestdir/ld
301 $(CXXLINK) -Bgcctestdir/ text_section_grouping.o
c6ac678d
ST
302text_section_no_grouping: text_section_grouping.o gcctestdir/ld
303 $(CXXLINK) -Bgcctestdir/ -Wl,--no-text-reorder text_section_grouping.o
28f2a4ac 304text_section_grouping.stdout: text_section_grouping
c6ac678d
ST
305 $(TEST_NM) -n --synthetic text_section_grouping > text_section_grouping.stdout
306text_section_no_grouping.stdout: text_section_no_grouping
2b64b551 307 $(TEST_NM) -n --synthetic text_section_no_grouping > text_section_no_grouping.stdout
28f2a4ac 308
6934001a
CC
309check_SCRIPTS += section_sorting_name.sh
310check_DATA += section_sorting_name.stdout
311MOSTLYCLEANFILES += section_sorting_name
312section_sorting_name.o: section_sorting_name.cc
313 $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
314section_sorting_name: section_sorting_name.o gcctestdir/ld
315 $(CXXLINK) -Bgcctestdir/ -Wl,--sort-section=name section_sorting_name.o
316section_sorting_name.stdout: section_sorting_name
317 $(TEST_NM) -n --synthetic section_sorting_name > section_sorting_name.stdout
318
2253bfba 319check_PROGRAMS += icf_virtual_function_folding_test
0ec6429b 320MOSTLYCLEANFILES += icf_virtual_function_folding_test icf_virtual_function_folding_test.map
ce97fa81
ST
321icf_virtual_function_folding_test.o: icf_virtual_function_folding_test.cc
322 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIE -g -o $@ $<
323icf_virtual_function_folding_test: icf_virtual_function_folding_test.o gcctestdir/ld
324 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all icf_virtual_function_folding_test.o -pie
325
326check_SCRIPTS += icf_preemptible_functions_test.sh
327check_DATA += icf_preemptible_functions_test.stdout
328MOSTLYCLEANFILES += icf_preemptible_functions_test
329icf_preemptible_functions_test.o: icf_preemptible_functions_test.cc
330 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
331icf_preemptible_functions_test: icf_preemptible_functions_test.o gcctestdir/ld
332 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all icf_preemptible_functions_test.o -fPIC -shared
333icf_preemptible_functions_test.stdout: icf_preemptible_functions_test
334 $(TEST_NM) icf_preemptible_functions_test > icf_preemptible_functions_test.stdout
335
336check_SCRIPTS += icf_string_merge_test.sh
337check_DATA += icf_string_merge_test.stdout
338MOSTLYCLEANFILES += icf_string_merge_test
339icf_string_merge_test.o: icf_string_merge_test.cc
340 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
341icf_string_merge_test: icf_string_merge_test.o gcctestdir/ld
342 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all icf_string_merge_test.o
343icf_string_merge_test.stdout: icf_string_merge_test
344 $(TEST_NM) icf_string_merge_test > icf_string_merge_test.stdout
345
41cbeecc
ST
346check_SCRIPTS += icf_sht_rel_addend_test.sh
347check_DATA += icf_sht_rel_addend_test.stdout
348MOSTLYCLEANFILES += icf_sht_rel_addend_test
349icf_sht_rel_addend_test_1.o: icf_sht_rel_addend_test_1.cc
350 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
351icf_sht_rel_addend_test_2.o: icf_sht_rel_addend_test_2.cc
352 $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
353icf_sht_rel_addend_test: icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o gcctestdir/ld
354 $(CXXLINK) -Bgcctestdir/ -Wl,--icf=all icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o
355icf_sht_rel_addend_test.stdout: icf_sht_rel_addend_test
356 $(TEST_NM) icf_sht_rel_addend_test > icf_sht_rel_addend_test.stdout
357
7fb47cc9
CC
358check_PROGRAMS += large_symbol_alignment
359large_symbol_alignment_SOURCES = large_symbol_alignment.cc
360large_symbol_alignment_DEPENDENCIES = gcctestdir/ld
361large_symbol_alignment_LDFLAGS = -Bgcctestdir/
54de2ea6 362large_symbol_alignment_LDADD =
7fb47cc9 363
e31908b6
CC
364check_SCRIPTS += merge_string_literals.sh
365check_DATA += merge_string_literals.stdout
366MOSTLYCLEANFILES += merge_string_literals
2b64b551 367merge_string_literals_1.o: merge_string_literals_1.cc
e31908b6 368 $(CXXCOMPILE) -O2 -c -fPIC -g -o $@ $<
2b64b551 369merge_string_literals_2.o: merge_string_literals_2.cc
e31908b6
CC
370 $(CXXCOMPILE) -O2 -c -fPIC -g -o $@ $<
371merge_string_literals: merge_string_literals_1.o merge_string_literals_2.o gcctestdir/ld
372 $(CXXLINK) -Bgcctestdir/ merge_string_literals_1.o merge_string_literals_2.o -O2 -shared -nostdlib
373merge_string_literals.stdout: merge_string_literals
374 $(TEST_OBJDUMP) -s -j.rodata merge_string_literals > merge_string_literals.stdout
375
351a8000 376check_PROGRAMS += basic_test
351a8000 377check_PROGRAMS += basic_pic_test
56ba9a23 378basic_test.o: basic_test.cc
22dc1b09 379 $(CXXCOMPILE) -O0 -c -o $@ $<
56ba9a23
ILT
380basic_test: basic_test.o gcctestdir/ld
381 $(CXXLINK) -Bgcctestdir/ basic_test.o
328c7c2f 382
cfbf0e3c
RÁE
383check_PROGRAMS += eh_test
384eh_test_a.o: eh_test_a.cc
385 $(CXXCOMPILE) -O0 -c -o $@ $<
386eh_test_b.o: eh_test_b.cc
387 $(CXXCOMPILE) -O0 -c -o $@ $<
388eh_test: eh_test_a.o eh_test_b.o gcctestdir/ld
389 $(CXXLINK_S) -Bgcctestdir/ eh_test_a.o eh_test_b.o
390
698400bf
CC
391check_SCRIPTS += eh_test_2.sh
392check_DATA += eh_test_2.sects
393MOSTLYCLEANFILES += eh_test_2.sects
394eh_test_r.o: eh_test_a.o eh_test_b.o gcctestdir/ld
395 gcctestdir/ld -r -o $@ eh_test_a.o eh_test_b.o
396eh_test_2: eh_test_r.o gcctestdir/ld
397 $(CXXLINK_S) -Bgcctestdir/ -Wl,--eh-frame-hdr eh_test_r.o
398eh_test_2.sects: eh_test_2
399 $(TEST_READELF) -SW $< >$@ 2>/dev/null
400
328c7c2f
ILT
401if HAVE_STATIC
402check_PROGRAMS += basic_static_test
56ba9a23
ILT
403basic_static_test: basic_test.o gcctestdir/ld
404 $(CXXLINK) -Bgcctestdir/ -static basic_test.o
328c7c2f 405endif
22dc1b09 406
56ba9a23 407basic_pic_test.o: basic_test.cc
22dc1b09 408 $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
56ba9a23
ILT
409basic_pic_test: basic_pic_test.o gcctestdir/ld
410 $(CXXLINK) -Bgcctestdir/ basic_pic_test.o
328c7c2f
ILT
411
412if HAVE_STATIC
413check_PROGRAMS += basic_static_pic_test
56ba9a23
ILT
414basic_static_pic_test: basic_pic_test.o gcctestdir/ld
415 $(CXXLINK) -Bgcctestdir/ -static basic_pic_test.o
328c7c2f 416endif
22dc1b09 417
374ad285
ILT
418check_PROGRAMS += basic_pie_test
419basic_pie_test.o: basic_test.cc
420 $(CXXCOMPILE) -O0 -c -fpie -o $@ $<
421basic_pie_test: basic_pie_test.o gcctestdir/ld
422 $(CXXLINK) -Bgcctestdir/ -pie basic_pie_test.o
351a8000
ILT
423
424check_PROGRAMS += constructor_test
d5026652
ILT
425constructor_test_SOURCES = constructor_test.cc
426constructor_test_DEPENDENCIES = gcctestdir/ld
427constructor_test_LDFLAGS = -Bgcctestdir/
1abce4a6 428constructor_test_LDADD =
d5026652 429
328c7c2f
ILT
430if HAVE_STATIC
431check_PROGRAMS += constructor_static_test
351a8000
ILT
432constructor_static_test_SOURCES = $(constructor_test_SOURCES)
433constructor_static_test_DEPENDENCIES = $(constructor_test_DEPENDENCIES)
434constructor_static_test_LDFLAGS = $(constructor_test_LDFLAGS) -static
1abce4a6 435constructor_static_test_LDADD = $(constructor_test_LDADD)
328c7c2f 436endif
351a8000
ILT
437
438check_PROGRAMS += two_file_test
351a8000 439check_PROGRAMS += two_file_pic_test
3bd52c28
ILT
440two_file_test_SOURCES = \
441 two_file_test_1.cc \
03e8f2b2 442 two_file_test_1b.cc \
3bd52c28
ILT
443 two_file_test_2.cc \
444 two_file_test_main.cc \
445 two_file_test.h
446two_file_test_DEPENDENCIES = gcctestdir/ld
447two_file_test_LDFLAGS = -Bgcctestdir/
1abce4a6 448two_file_test_LDADD =
3bd52c28 449
328c7c2f
ILT
450if HAVE_STATIC
451check_PROGRAMS += two_file_static_test
351a8000
ILT
452two_file_static_test_SOURCES = $(two_file_test_SOURCES)
453two_file_static_test_DEPENDENCIES = $(two_file_test_DEPENDENCIES)
454two_file_static_test_LDFLAGS = $(two_file_test_LDFLAGS) -static
1abce4a6 455two_file_static_test_LDADD = $(two_file_test_LDADD)
328c7c2f 456endif
f958d5fc
ILT
457
458two_file_pic_test_SOURCES = two_file_test_main.cc
459two_file_pic_test_DEPENDENCIES = \
03e8f2b2 460 gcctestdir/ld two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 461two_file_pic_test_LDFLAGS = -Bgcctestdir/
03e8f2b2 462two_file_pic_test_LDADD = two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
f958d5fc 463
351a8000
ILT
464
465check_PROGRAMS += two_file_shared_1_test
466check_PROGRAMS += two_file_shared_2_test
467check_PROGRAMS += two_file_shared_1_pic_2_test
468check_PROGRAMS += two_file_shared_2_pic_1_test
469check_PROGRAMS += two_file_same_shared_test
470check_PROGRAMS += two_file_separate_shared_12_test
471check_PROGRAMS += two_file_separate_shared_21_test
472two_file_test_1_pic.o: two_file_test_1.cc
473 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
474two_file_test_1b_pic.o: two_file_test_1b.cc
475 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000
ILT
476two_file_test_2_pic.o: two_file_test_2.cc
477 $(CXXCOMPILE) -c -fpic -o $@ $<
03e8f2b2
ILT
478two_file_shared_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o gcctestdir/ld
479 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o
351a8000
ILT
480two_file_shared_2.so: two_file_test_2_pic.o gcctestdir/ld
481 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2_pic.o
03e8f2b2
ILT
482two_file_shared.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o gcctestdir/ld
483 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
351a8000 484
3bd52c28
ILT
485two_file_shared_1_test_SOURCES = two_file_test_2.cc two_file_test_main.cc
486two_file_shared_1_test_DEPENDENCIES = gcctestdir/ld two_file_shared_1.so
487two_file_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
488two_file_shared_1_test_LDADD = two_file_shared_1.so
489
03e8f2b2 490two_file_shared_2_test_SOURCES = two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
491two_file_shared_2_test_DEPENDENCIES = gcctestdir/ld two_file_shared_2.so
492two_file_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
493two_file_shared_2_test_LDADD = two_file_shared_2.so
494
386c048c
ILT
495two_file_shared_1_pic_2_test_SOURCES = two_file_test_main.cc
496two_file_shared_1_pic_2_test_DEPENDENCIES = \
2f2de248 497 gcctestdir/ld two_file_shared_2.so two_file_test_1_pic.o two_file_test_1b_pic.o
386c048c 498two_file_shared_1_pic_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
03e8f2b2 499two_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
500
501two_file_shared_2_pic_1_test_SOURCES = two_file_test_main.cc
502two_file_shared_2_pic_1_test_DEPENDENCIES = \
e051a5b5 503 gcctestdir/ld two_file_shared_1.so two_file_test_2_pic.o
386c048c
ILT
504two_file_shared_2_pic_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
505two_file_shared_2_pic_1_test_LDADD = two_file_test_2_pic.o two_file_shared_1.so
506
3bd52c28
ILT
507two_file_same_shared_test_SOURCES = two_file_test_main.cc
508two_file_same_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared.so
509two_file_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
510two_file_same_shared_test_LDADD = two_file_shared.so
511
512two_file_separate_shared_12_test_SOURCES = two_file_test_main.cc
513two_file_separate_shared_12_test_DEPENDENCIES = \
514 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
515two_file_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
516two_file_separate_shared_12_test_LDADD = \
517 two_file_shared_1.so two_file_shared_2.so
518
519two_file_separate_shared_21_test_SOURCES = two_file_test_main.cc
520two_file_separate_shared_21_test_DEPENDENCIES = \
521 gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
522two_file_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
523two_file_separate_shared_21_test_LDADD = \
524 two_file_shared_2.so two_file_shared_1.so
525
6a74a719
ILT
526check_PROGRAMS += two_file_relocatable_test
527two_file_relocatable_test_SOURCES = two_file_test_main.cc
528two_file_relocatable_test_DEPENDENCIES = \
529 gcctestdir/ld two_file_relocatable.o
530two_file_relocatable_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
531two_file_relocatable_test_LDADD = two_file_relocatable.o
532two_file_relocatable.o: gcctestdir/ld two_file_test_1.o two_file_test_1b.o two_file_test_2.o
533 gcctestdir/ld -r -o $@ two_file_test_1.o two_file_test_1b.o two_file_test_2.o
534
374ad285
ILT
535check_PROGRAMS += two_file_pie_test
536two_file_test_1_pie.o: two_file_test_1.cc
537 $(CXXCOMPILE) -c -fpie -o $@ $<
538two_file_test_1b_pie.o: two_file_test_1b.cc
539 $(CXXCOMPILE) -c -fpie -o $@ $<
540two_file_test_2_pie.o: two_file_test_2.cc
541 $(CXXCOMPILE) -c -fpie -o $@ $<
542two_file_test_main_pie.o: two_file_test_main.cc
543 $(CXXCOMPILE) -c -fpie -o $@ $<
544two_file_pie_test: two_file_test_1_pie.o two_file_test_1b_pie.o \
545 two_file_test_2_pie.o two_file_test_main_pie.o gcctestdir/ld
546 $(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
547
a82bef93
ST
548check_PROGRAMS += pie_copyrelocs_test
549pie_copyrelocs_test_SOURCES = pie_copyrelocs_test.cc
550pie_copyrelocs_test_DEPENDENCIES = gcctestdir/ld pie_copyrelocs_shared_test.so
4759c34e 551pie_copyrelocs_test_CXXFLAGS = -fno-exceptions -fno-asynchronous-unwind-tables
a82bef93
ST
552pie_copyrelocs_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -pie
553pie_copyrelocs_test_LDADD = pie_copyrelocs_shared_test.so
554pie_copyrelocs_shared_test.o: pie_copyrelocs_shared_test.cc
555 $(CXXCOMPILE) -O2 -fpic -c -o $@ $<
556pie_copyrelocs_shared_test.so: pie_copyrelocs_shared_test.o gcctestdir/ld
557 $(CXXLINK) -Bgcctestdir/ -shared pie_copyrelocs_shared_test.o
558
a100d66f
ST
559check_PROGRAMS += weak_unresolved_symbols_test
560weak_unresolved_symbols_test_SOURCES = weak_unresolved_symbols_test.cc
561weak_unresolved_symbols_test_CXXFLAGS = -fPIE
562weak_unresolved_symbols_test_LDFLAGS = -Bgcctestdir/ -pie -Wl,--weak-unresolved-symbols
563
031cdbed
ILT
564check_SCRIPTS += two_file_shared.sh
565check_DATA += two_file_shared.dbg
72fef11a 566MOSTLYCLEANFILES += two_file_shared.dbg
031cdbed
ILT
567two_file_shared.dbg: two_file_shared.so
568 $(TEST_READELF) -w $< >$@ 2>/dev/null
569
63402fe4
ILT
570# The nonpic tests will fail on platforms which can not put non-PIC
571# code into shared libraries, so we just don't run them in that case.
63402fe4 572if FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 573
351a8000
ILT
574check_PROGRAMS += two_file_shared_1_nonpic_test
575check_PROGRAMS += two_file_shared_2_nonpic_test
576check_PROGRAMS += two_file_same_shared_nonpic_test
577check_PROGRAMS += two_file_separate_shared_12_nonpic_test
578check_PROGRAMS += two_file_separate_shared_21_nonpic_test
03e8f2b2
ILT
579check_PROGRAMS += two_file_mixed_shared_test
580check_PROGRAMS += two_file_mixed_2_shared_test
351a8000 581two_file_shared_1_nonpic.so: two_file_test_1.o gcctestdir/ld
611062c0 582 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o -Wl,-z,notext
351a8000
ILT
583two_file_shared_2_nonpic.so: two_file_test_2.o gcctestdir/ld
584 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_2.o
03e8f2b2 585two_file_shared_nonpic.so: two_file_test_1.o two_file_test_1b.o two_file_test_2.o gcctestdir/ld
611062c0 586 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o -Wl,-z,notext
03e8f2b2 587two_file_shared_mixed.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o gcctestdir/ld
611062c0 588 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o -Wl,-z,notext
03e8f2b2 589two_file_shared_mixed_1.so: two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so gcctestdir/ld
611062c0 590 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so -Wl,-z,notext
351a8000 591
3bd52c28
ILT
592two_file_shared_1_nonpic_test_SOURCES = \
593 two_file_test_2.cc two_file_test_main.cc
594two_file_shared_1_nonpic_test_DEPENDENCIES = \
595 gcctestdir/ld two_file_shared_1_nonpic.so
596two_file_shared_1_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
597two_file_shared_1_nonpic_test_LDADD = two_file_shared_1_nonpic.so
598
599two_file_shared_2_nonpic_test_SOURCES = \
03e8f2b2 600 two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
3bd52c28
ILT
601two_file_shared_2_nonpic_test_DEPENDENCIES = \
602 gcctestdir/ld two_file_shared_2_nonpic.so
603two_file_shared_2_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
604two_file_shared_2_nonpic_test_LDADD = two_file_shared_2_nonpic.so
605
606two_file_same_shared_nonpic_test_SOURCES = two_file_test_main.cc
607two_file_same_shared_nonpic_test_DEPENDENCIES = \
608 gcctestdir/ld two_file_shared_nonpic.so
609two_file_same_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
610two_file_same_shared_nonpic_test_LDADD = two_file_shared_nonpic.so
611
612two_file_separate_shared_12_nonpic_test_SOURCES = two_file_test_main.cc
613two_file_separate_shared_12_nonpic_test_DEPENDENCIES = \
614 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
615two_file_separate_shared_12_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
616two_file_separate_shared_12_nonpic_test_LDADD = \
617 two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
618
619two_file_separate_shared_21_nonpic_test_SOURCES = two_file_test_main.cc
620two_file_separate_shared_21_nonpic_test_DEPENDENCIES = \
621 gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
622two_file_separate_shared_21_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
623two_file_separate_shared_21_nonpic_test_LDADD = \
624 two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so
625
03e8f2b2
ILT
626two_file_mixed_shared_test_SOURCES = two_file_test_main.cc
627two_file_mixed_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed.so
628two_file_mixed_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
629two_file_mixed_shared_test_LDADD = two_file_shared_mixed.so
630
631two_file_mixed_2_shared_test_SOURCES = two_file_test_main.cc
632two_file_mixed_2_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed_1.so two_file_shared_2.so
633two_file_mixed_2_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
634two_file_mixed_2_shared_test_LDADD = two_file_shared_mixed_1.so two_file_shared_2.so
635
d89051bd
CC
636check_PROGRAMS += two_file_mixed_pie_test
637two_file_mixed_pie_test: two_file_test_1.o two_file_test_1b_pie.o \
638 two_file_test_main_pie.o two_file_shared_2.so gcctestdir/ld
639 $(CXXLINK) -Bgcctestdir/ -Wl,-R,. -pie two_file_test_1.o two_file_test_1b_pie.o two_file_test_main_pie.o two_file_shared_2.so
640
351a8000 641endif FN_PTRS_IN_SO_WITHOUT_PIC
3bd52c28 642
6835af53
ILT
643check_PROGRAMS += two_file_strip_test
644two_file_strip_test: two_file_test
645 $(TEST_STRIP) -o two_file_strip_test two_file_test
646
647check_PROGRAMS += two_file_same_shared_strip_test
648two_file_same_shared_strip_test_SOURCES = two_file_test_main.cc
649two_file_same_shared_strip_test_DEPENDENCIES = \
650 gcctestdir/ld two_file_shared_strip.so
651two_file_same_shared_strip_test_LDFLAGS = -Bgcctestdir/ -Wl,-R.
652two_file_same_shared_strip_test_LDADD = two_file_shared_strip.so
653two_file_shared_strip.so: two_file_shared.so
654 $(TEST_STRIP) -S -o two_file_shared_strip.so two_file_shared.so
655
49bdd526
ILT
656check_PROGRAMS += common_test_1
657common_test_1_SOURCES = common_test_1.c
658common_test_1_DEPENDENCIES = gcctestdir/ld
659common_test_1_LDFLAGS = -Bgcctestdir/
1abce4a6 660common_test_1_LDADD =
351a8000 661
eda294df
ILT
662check_PROGRAMS += common_test_2
663common_test_2_SOURCES = common_test_1.c
664common_test_2_DEPENDENCIES = common_test_2.so common_test_3.so gcctestdir/ld
665common_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
666common_test_2_LDADD = common_test_2.so common_test_3.so
667common_test_2_pic.o: common_test_2.c
668 $(COMPILE) -c -fpic -o $@ $<
669common_test_2.so: common_test_2_pic.o common_test_3.so gcctestdir/ld
670 $(LINK) -Bgcctestdir/ -shared common_test_2_pic.o common_test_3.so
671common_test_3_pic.o: common_test_3.c
672 $(COMPILE) -c -fpic -o $@ $<
673common_test_3.so: common_test_3_pic.o ver_test_2.script gcctestdir/ld
674 $(LINK) -Bgcctestdir/ -shared common_test_3_pic.o -Wl,--version-script,$(srcdir)/ver_test_2.script
675
351a8000 676check_PROGRAMS += exception_test
351a8000
ILT
677check_PROGRAMS += exception_shared_1_test
678check_PROGRAMS += exception_shared_2_test
679check_PROGRAMS += exception_same_shared_test
680check_PROGRAMS += exception_separate_shared_12_test
681check_PROGRAMS += exception_separate_shared_21_test
682exception_test_1_pic.o: exception_test_1.cc
683 $(CXXCOMPILE) -c -fpic -o $@ $<
684exception_test_2_pic.o: exception_test_2.cc
685 $(CXXCOMPILE) -c -fpic -o $@ $<
686exception_shared_1.so: exception_test_1_pic.o gcctestdir/ld
687 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o
688exception_shared_2.so: exception_test_2_pic.o gcctestdir/ld
689 $(CXXLINK) -Bgcctestdir/ -shared exception_test_2_pic.o
690exception_shared.so: exception_test_1_pic.o exception_test_2_pic.o gcctestdir/ld
691 $(CXXLINK) -Bgcctestdir/ -shared exception_test_1_pic.o exception_test_2_pic.o
63402fe4 692
3151305a
ILT
693exception_test_SOURCES = \
694 exception_test_main.cc \
695 exception_test_1.cc \
696 exception_test_2.cc \
697 exception_test.h
698exception_test_DEPENDENCIES = gcctestdir/ld
699exception_test_LDFLAGS = -Bgcctestdir/
1abce4a6 700exception_test_LDADD =
3151305a 701
328c7c2f
ILT
702if HAVE_STATIC
703check_PROGRAMS += exception_static_test
351a8000
ILT
704exception_static_test_SOURCES = $(exception_test_SOURCES)
705exception_static_test_DEPENDENCIES = $(exception_test_DEPENDENCIES)
706exception_static_test_LDFLAGS = $(exception_test_LDFLAGS) -static
1abce4a6 707exception_static_test_LDADD = $(exception_test_LDADD)
328c7c2f 708endif
3151305a
ILT
709
710exception_shared_1_test_SOURCES = exception_test_2.cc exception_test_main.cc
711exception_shared_1_test_DEPENDENCIES = gcctestdir/ld exception_shared_1.so
712exception_shared_1_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
713exception_shared_1_test_LDADD = exception_shared_1.so
714
715exception_shared_2_test_SOURCES = exception_test_1.cc exception_test_main.cc
716exception_shared_2_test_DEPENDENCIES = gcctestdir/ld exception_shared_2.so
717exception_shared_2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
718exception_shared_2_test_LDADD = exception_shared_2.so
719
720exception_same_shared_test_SOURCES = exception_test_main.cc
721exception_same_shared_test_DEPENDENCIES = gcctestdir/ld exception_shared.so
722exception_same_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
723exception_same_shared_test_LDADD = exception_shared.so
724
725exception_separate_shared_12_test_SOURCES = exception_test_main.cc
726exception_separate_shared_12_test_DEPENDENCIES = \
727 gcctestdir/ld exception_shared_1.so exception_shared_2.so
59965708
CC
728exception_separate_shared_12_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,. \
729 -Wl,--no-as-needed
3151305a
ILT
730exception_separate_shared_12_test_LDADD = \
731 exception_shared_1.so exception_shared_2.so
732
733exception_separate_shared_21_test_SOURCES = exception_test_main.cc
734exception_separate_shared_21_test_DEPENDENCIES = \
735 gcctestdir/ld exception_shared_1.so exception_shared_2.so
59965708
CC
736exception_separate_shared_21_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,. \
737 -Wl,--no-as-needed
3151305a
ILT
738exception_separate_shared_21_test_LDADD = \
739 exception_shared_2.so exception_shared_1.so
740
3151305a 741
351a8000 742check_PROGRAMS += weak_test
a360aedd 743weak_test_SOURCES = weak_test.cc
0e470e5c 744weak_test_DEPENDENCIES = gcctestdir/ld
a360aedd 745weak_test_LDFLAGS = -Bgcctestdir/
1abce4a6 746weak_test_LDADD =
a360aedd 747
86925eef 748check_PROGRAMS += weak_undef_test
72fef11a 749MOSTLYCLEANFILES += alt/weak_undef_lib.so
86925eef
CC
750weak_undef_test_SOURCES = weak_undef_test.cc
751weak_undef_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib.so alt/weak_undef_lib.so
752weak_undef_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
753weak_undef_test_LDADD = -L . weak_undef_lib.so
754weak_undef_file1.o: weak_undef_file1.cc
755 $(CXXCOMPILE) -c -fpic -o $@ $<
756weak_undef_file2.o: weak_undef_file2.cc
757 $(CXXCOMPILE) -c -fpic -o $@ $<
758weak_undef_lib.so: weak_undef_file1.o
759 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1.o
760alt/weak_undef_lib.so: weak_undef_file2.o
761 test -d alt || mkdir -p alt
762 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2.o
351a8000 763
1f25b93b
CC
764check_PROGRAMS += weak_undef_test_2
765weak_undef_test_2_SOURCES = weak_undef_test_2.cc
766weak_undef_test_2_DEPENDENCIES = gcctestdir/ld libweak_undef_2.a
767weak_undef_test_2_LDFLAGS = -Bgcctestdir/ -u weak_undef_2
768weak_undef_test_2_LDADD = -L . -lweak_undef_2
dddcc5b9 769MOSTLYCLEANFILES += libweak_undef_2.a
1f25b93b
CC
770libweak_undef_2.a: weak_undef_file3.o weak_undef_file4.o
771 $(TEST_AR) rc $@ $^
772weak_undef_file3.o: weak_undef_file3.cc
773 $(CXXCOMPILE) -c -o $@ $<
774weak_undef_file4.o: weak_undef_file4.cc
775 $(CXXCOMPILE) -c -o $@ $<
776
f3c69fca
CC
777if FN_PTRS_IN_SO_WITHOUT_PIC
778check_PROGRAMS += weak_undef_nonpic_test
72fef11a 779MOSTLYCLEANFILES += alt/weak_undef_lib_nonpic.so
f3c69fca
CC
780weak_undef_nonpic_test_SOURCES = weak_undef_test.cc
781weak_undef_nonpic_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib_nonpic.so alt/weak_undef_lib_nonpic.so
782weak_undef_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,alt
783weak_undef_nonpic_test_LDADD = -L . weak_undef_lib_nonpic.so
784weak_undef_file1_nonpic.o: weak_undef_file1.cc
785 $(CXXCOMPILE) -c -o $@ $<
786weak_undef_file2_nonpic.o: weak_undef_file2.cc
787 $(CXXCOMPILE) -c -o $@ $<
788weak_undef_lib_nonpic.so: weak_undef_file1_nonpic.o
611062c0 789 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file1_nonpic.o -Wl,-z,notext
f3c69fca
CC
790alt/weak_undef_lib_nonpic.so: weak_undef_file2_nonpic.o
791 test -d alt || mkdir -p alt
611062c0 792 $(CXXLINK) -Bgcctestdir/ -shared weak_undef_file2_nonpic.o -Wl,-z,notext
f3c69fca
CC
793endif FN_PTRS_IN_SO_WITHOUT_PIC
794
795
99a37bfd
ILT
796check_PROGRAMS += weak_alias_test
797weak_alias_test_SOURCES = weak_alias_test_main.cc
798weak_alias_test_DEPENDENCIES = \
799 gcctestdir/ld weak_alias_test_1.so weak_alias_test_2.so \
21131061 800 weak_alias_test_3.o weak_alias_test_4.so weak_alias_test_5.so
99a37bfd
ILT
801weak_alias_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
802weak_alias_test_LDADD = \
803 weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o \
21131061 804 weak_alias_test_4.so weak_alias_test_5.so
99a37bfd
ILT
805weak_alias_test_1_pic.o: weak_alias_test_1.cc
806 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 807weak_alias_test_1.so: weak_alias_test_1_pic.o gcctestdir/ld
99a37bfd
ILT
808 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_1_pic.o
809weak_alias_test_2_pic.o: weak_alias_test_2.cc
810 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 811weak_alias_test_2.so: weak_alias_test_2_pic.o gcctestdir/ld
99a37bfd
ILT
812 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_2_pic.o
813weak_alias_test_3.o: weak_alias_test_3.cc
814 $(CXXCOMPILE) -c -o $@ $<
815weak_alias_test_4_pic.o: weak_alias_test_4.cc
816 $(CXXCOMPILE) -c -fpic -o $@ $<
de4c45bd 817weak_alias_test_4.so: weak_alias_test_4_pic.o gcctestdir/ld
99a37bfd 818 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_4_pic.o
21131061
ILT
819weak_alias_test_5_pic.o: weak_alias_test_5.cc
820 $(CXXCOMPILE) -c -fpic -o $@ $<
821weak_alias_test_5.so: weak_alias_test_5_pic.o $(srcdir)/weak_alias_test.script gcctestdir/ld
822 $(CXXLINK) -Bgcctestdir/ -shared weak_alias_test_5_pic.o \
823 -Wl,--version-script,$(srcdir)/weak_alias_test.script
99a37bfd 824
de4c45bd
ILT
825check_SCRIPTS += weak_plt.sh
826check_PROGRAMS += weak_plt
827check_DATA += weak_plt_shared.so
828weak_plt_main_pic.o: weak_plt_main.cc
829 $(CXXCOMPILE) -c -fpic -o $@ $<
830weak_plt: weak_plt_main_pic.o gcctestdir/ld
831 $(CXXLINK) -Bgcctestdir/ weak_plt_main_pic.o
832weak_plt_shared_pic.o: weak_plt_shared.cc
833 $(CXXCOMPILE) -c -fpic -o $@ $<
834weak_plt_shared.so: weak_plt_shared_pic.o gcctestdir/ld
835 $(CXXLINK) -Bgcctestdir/ -shared weak_plt_shared_pic.o
836
f34787f8
ILT
837check_PROGRAMS += copy_test
838copy_test_SOURCES = copy_test.cc
839copy_test_DEPENDENCIES = gcctestdir/ld copy_test_1.so copy_test_2.so
840copy_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
841copy_test_LDADD = copy_test_1.so copy_test_2.so
842copy_test_1_pic.o: copy_test_1.cc
843 $(CXXCOMPILE) -c -fpic -o $@ $<
844copy_test_1.so: gcctestdir/ld copy_test_1_pic.o
845 $(CXXLINK) -Bgcctestdir/ -shared copy_test_1_pic.o
846copy_test_2_pic.o: copy_test_2.cc
847 $(CXXCOMPILE) -c -fpic -o $@ $<
848copy_test_2.so: gcctestdir/ld copy_test_2_pic.o
849 $(CXXLINK) -Bgcctestdir/ -shared copy_test_2_pic.o
850
38ac44ac 851if !DEFAULT_TARGET_POWERPC
6eeb0170
CC
852check_SCRIPTS += copy_test_protected.sh
853check_DATA += copy_test_protected.err
854MOSTLYCLEANFILES += copy_test_protected.err
855copy_test_protected.err: copy_test_protected.o copy_test_2.so gcctestdir/ld
856 @echo $(CXXLINK) -Bgcctestdir/ -o copy_test_protected copy_test_protected.o copy_test_2.so -Wl,-R,. "2>$@"
857 @if $(CXXLINK) -Bgcctestdir/ -o copy_test_protected copy_test_protected.o copy_test_2.so -Wl,-R,. 2>$@; \
858 then \
859 echo 1>&2 "Link of copy_test_protected should have failed"; \
860 rm -f $@; \
861 exit 1; \
862 fi
38ac44ac 863endif
6eeb0170 864
6eee141f
ILT
865if TLS
866
351a8000
ILT
867check_PROGRAMS += tls_test
868check_PROGRAMS += tls_pic_test
c7177d31 869check_PROGRAMS += tls_pie_test
b3705d2a 870check_PROGRAMS += tls_pie_pic_test
351a8000 871check_PROGRAMS += tls_shared_test
c03c7692 872check_PROGRAMS += tls_shared_ie_test
c2b45e22 873check_PROGRAMS += tls_shared_gd_to_ie_test
351a8000
ILT
874tls_test_pic.o: tls_test.cc
875 $(CXXCOMPILE) -c -fpic -o $@ $<
876tls_test_file2_pic.o: tls_test_file2.cc
877 $(CXXCOMPILE) -c -fpic -o $@ $<
155a0dd7
ILT
878tls_test_c_pic.o: tls_test_c.c
879 $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
880tls_test_shared.so: tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o gcctestdir/ld
9c2d0ef9 881 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
c2b45e22
CC
882tls_test_shared2.so: tls_test_file2_pic.o gcctestdir/ld
883 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_pic.o
351a8000 884
c03c7692
ILT
885tls_test_pic_ie.o: tls_test.cc
886 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
887tls_test_file2_pic_ie.o: tls_test_file2.cc
888 $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
155a0dd7
ILT
889tls_test_c_pic_ie.o: tls_test_c.c
890 $(COMPILE) -c -fpic -ftls-model=initial-exec $(TLS_TEST_C_CFLAGS) -o $@ $<
891tls_test_ie_shared.so: tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o gcctestdir/ld
892 $(CXXLINK) -Bgcctestdir/ -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
c03c7692 893
e0374858 894tls_test_SOURCES = tls_test.cc tls_test_file2.cc tls_test_main.cc tls_test.h
155a0dd7 895tls_test_DEPENDENCIES = gcctestdir/ld tls_test_c.o
6eee141f 896tls_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
897tls_test_LDADD = tls_test_c.o -lpthread
898tls_test_c.o: tls_test_c.c
899 $(COMPILE) -c $(TLS_TEST_C_CFLAGS) -o $@ $<
6eee141f
ILT
900
901tls_pic_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
902tls_pic_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o tls_test_file2_pic.o \
903 tls_test_c_pic.o
6eee141f 904tls_pic_test_LDFLAGS = -Bgcctestdir/
155a0dd7
ILT
905tls_pic_test_LDADD = tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o \
906 -lpthread
6eee141f 907
c7177d31
ILT
908tls_test_main_pie.o: tls_test_main.cc tls_test.h
909 $(CXXCOMPILE) -c -fpie -o $@ $<
910tls_test_pie.o: tls_test.cc tls_test.h
911 $(CXXCOMPILE) -c -fpie -o $@ $<
912tls_test_file2_pie.o: tls_test_file2.cc tls_test.h
913 $(CXXCOMPILE) -c -fpie -o $@ $<
914tls_test_c_pie.o: tls_test_c.c
915 $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
916tls_pie_test: tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o \
917 tls_test_c_pie.o gcctestdir/ld
918 $(CXXLINK) -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o tls_test_c_pie.o -lpthread
919
a6a17750
CC
920check_SCRIPTS += tls_pie_test.sh
921check_DATA += tls_pie_test.stdout
922tls_pie_test.stdout: tls_pie_test
923 $(TEST_READELF) -rW $< > $@ 2>/dev/null
924
b3705d2a
ILT
925tls_pie_pic_test: tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o \
926 tls_test_c_pic.o gcctestdir/ld
927 $(CXXLINK) -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread
928
6eee141f
ILT
929tls_shared_test_SOURCES = tls_test_main.cc
930tls_shared_test_DEPENDENCIES = gcctestdir/ld tls_test_shared.so
931tls_shared_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
932tls_shared_test_LDADD = tls_test_shared.so -lpthread
933
c03c7692
ILT
934tls_shared_ie_test_SOURCES = tls_test_main.cc
935tls_shared_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_ie_shared.so
936tls_shared_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
937tls_shared_ie_test_LDADD = tls_test_ie_shared.so -lpthread
938
c2b45e22 939tls_shared_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
940tls_shared_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o \
941 tls_test_c_pic.o tls_test_shared2.so
c2b45e22 942tls_shared_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
943tls_shared_gd_to_ie_test_LDADD = tls_test_pic.o tls_test_c_pic.o \
944 tls_test_shared2.so -lpthread
c2b45e22
CC
945
946if TLS_GNU2_DIALECT
947
948check_PROGRAMS += tls_shared_gnu2_gd_to_ie_test
949
950tls_test_gnu2.o: tls_test.cc
951 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
952tls_test_file2_gnu2.o: tls_test_file2.cc
953 $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
155a0dd7
ILT
954tls_test_c_gnu2.o: tls_test_c.c
955 $(COMPILE) -c -fpic -mtls-dialect=gnu2 $(TLS_TEST_C_CFLAGS) -o $@ $<
c2b45e22
CC
956tls_test_gnu2_shared2.so: tls_test_file2_gnu2.o gcctestdir/ld
957 $(CXXLINK) -Bgcctestdir/ -shared tls_test_file2_gnu2.o
958
959tls_shared_gnu2_gd_to_ie_test_SOURCES = tls_test_main.cc
155a0dd7
ILT
960tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2.o \
961 tls_test_c_gnu2.o tls_test_gnu2_shared2.so
c2b45e22 962tls_shared_gnu2_gd_to_ie_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
155a0dd7
ILT
963tls_shared_gnu2_gd_to_ie_test_LDADD = tls_test_gnu2.o tls_test_c_gnu2.o \
964 tls_test_gnu2_shared2.so -lpthread
c2b45e22
CC
965
966if TLS_DESCRIPTORS
967
968check_PROGRAMS += tls_shared_gnu2_test
969
155a0dd7
ILT
970tls_test_gnu2_shared.so: tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o gcctestdir/ld
971 $(CXXLINK) -Bgcctestdir/ -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
c2b45e22
CC
972
973tls_shared_gnu2_test_SOURCES = tls_test_main.cc
974tls_shared_gnu2_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2_shared.so
975tls_shared_gnu2_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
976tls_shared_gnu2_test_LDADD = tls_test_gnu2_shared.so -lpthread
977
978endif TLS_DESCRIPTORS
979
980endif TLS_GNU2_DIALECT
981
328c7c2f 982if HAVE_STATIC
351a8000
ILT
983if STATIC_TLS
984check_PROGRAMS += tls_static_test
985check_PROGRAMS += tls_static_pic_test
986
987tls_static_test_SOURCES = $(tls_test_SOURCES)
988tls_static_test_DEPENDENCIES = $(tls_test_DEPENDENCIES)
989tls_static_test_LDFLAGS = $(tls_test_LDFLAGS) -static
990tls_static_test_LDADD = $(tls_test_LDADD)
991
992tls_static_pic_test_SOURCES = $(tls_pic_test_SOURCES)
993tls_static_pic_test_DEPENDENCIES = $(tls_pic_test_DEPENDENCIES)
994tls_static_pic_test_LDFLAGS = $(tls_pic_test_LDFLAGS) -static
995tls_static_pic_test_LDADD = $(tls_pic_test_LDADD)
996endif
328c7c2f 997endif
6eee141f
ILT
998
999if FN_PTRS_IN_SO_WITHOUT_PIC
351a8000 1000check_PROGRAMS += tls_shared_nonpic_test
155a0dd7 1001tls_test_shared_nonpic.so: tls_test.o tls_test_file2.o tls_test_c.o gcctestdir/ld
611062c0 1002 $(CXXLINK) -Bgcctestdir/ -shared tls_test.o tls_test_file2.o tls_test_c.o -Wl,-z,notext
6eee141f
ILT
1003
1004tls_shared_nonpic_test_SOURCES = tls_test_main.cc
1005tls_shared_nonpic_test_DEPENDENCIES = gcctestdir/ld tls_test_shared_nonpic.so
1006tls_shared_nonpic_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1007tls_shared_nonpic_test_LDADD = tls_test_shared_nonpic.so -lpthread
351a8000 1008endif FN_PTRS_IN_SO_WITHOUT_PIC
6eee141f 1009
351a8000 1010endif TLS
6eee141f 1011
1fa29f10
IT
1012if DEFAULT_TARGET_X86_64
1013
1014check_SCRIPTS += x86_64_mov_to_lea.sh
1015check_DATA += x86_64_mov_to_lea1.stdout x86_64_mov_to_lea2.stdout \
1016 x86_64_mov_to_lea3.stdout x86_64_mov_to_lea4.stdout \
1017 x86_64_mov_to_lea5.stdout x86_64_mov_to_lea6.stdout \
1018 x86_64_mov_to_lea7.stdout x86_64_mov_to_lea8.stdout \
1019 x86_64_mov_to_lea9.stdout x86_64_mov_to_lea10.stdout \
1020 x86_64_mov_to_lea11.stdout x86_64_mov_to_lea12.stdout \
1021 x86_64_mov_to_lea13.stdout x86_64_mov_to_lea14.stdout
1022MOSTLYCLEANFILES += x86_64_mov_to_lea1 x86_64_mov_to_lea2 \
1023 x86_64_mov_to_lea3 x86_64_mov_to_lea4 x86_64_mov_to_lea5 \
1024 x86_64_mov_to_lea6 x86_64_mov_to_lea7 x86_64_mov_to_lea8 \
1025 x86_64_mov_to_lea9 x86_64_mov_to_lea10 x86_64_mov_to_lea11 \
1026 x86_64_mov_to_lea12 x86_64_mov_to_lea13 x86_64_mov_to_lea14
1027
1028x86_64_mov_to_lea1.o: x86_64_mov_to_lea1.s
1029 $(TEST_AS) --64 -o $@ $<
1030x86_64_mov_to_lea2.o: x86_64_mov_to_lea1.s
1031 $(TEST_AS) --x32 -o $@ $<
1032x86_64_mov_to_lea3.o: x86_64_mov_to_lea2.s
1033 $(TEST_AS) --x32 -o $@ $<
1034x86_64_mov_to_lea4.o: x86_64_mov_to_lea2.s
1035 $(TEST_AS) --64 -o $@ $<
1036x86_64_mov_to_lea5.o: x86_64_mov_to_lea3.s
1cd17042 1037 $(TEST_AS) --x32 -mrelax-relocations=yes -o $@ $<
1fa29f10 1038x86_64_mov_to_lea6.o: x86_64_mov_to_lea3.s
1cd17042 1039 $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1fa29f10
IT
1040x86_64_mov_to_lea7.o: x86_64_mov_to_lea4.s
1041 $(TEST_AS) --x32 -o $@ $<
1042x86_64_mov_to_lea8.o: x86_64_mov_to_lea4.s
1043 $(TEST_AS) --64 -o $@ $<
1044x86_64_mov_to_lea1: x86_64_mov_to_lea1.o
1045 ../ld-new -Bsymbolic -shared -melf_x86_64 -o $@ $<
1046x86_64_mov_to_lea2: x86_64_mov_to_lea1.o
1047 ../ld-new -pie -melf_x86_64 -o $@ $<
1048x86_64_mov_to_lea3: x86_64_mov_to_lea1.o
1049 ../ld-new -melf_x86_64 -o $@ $<
1050x86_64_mov_to_lea4: x86_64_mov_to_lea2.o
1051 ../ld-new -Bsymbolic -shared -melf32_x86_64 -o $@ $<
1052x86_64_mov_to_lea5: x86_64_mov_to_lea2.o
1053 ../ld-new -pie -melf32_x86_64 -o $@ $<
1054x86_64_mov_to_lea6: x86_64_mov_to_lea2.o
1055 ../ld-new -melf32_x86_64 -o $@ $<
1056x86_64_mov_to_lea7: x86_64_mov_to_lea3.o
1057 ../ld-new -melf32_x86_64 -pie -o $@ $<
1058x86_64_mov_to_lea8: x86_64_mov_to_lea4.o
1059 ../ld-new -melf_x86_64 -pie -o $@ $<
1060x86_64_mov_to_lea9: x86_64_mov_to_lea5.o
1061 ../ld-new -melf32_x86_64 -o $@ $<
1062x86_64_mov_to_lea10: x86_64_mov_to_lea6.o
1063 ../ld-new -melf_x86_64 -o $@ $<
0fd15345 1064x86_64_mov_to_lea11: x86_64_mov_to_lea2.o
1fa29f10 1065 ../ld-new -melf32_x86_64 -shared -o $@ $<
0fd15345 1066x86_64_mov_to_lea12: x86_64_mov_to_lea1.o
1fa29f10
IT
1067 ../ld-new -melf_x86_64 -shared -o $@ $<
1068x86_64_mov_to_lea13: x86_64_mov_to_lea7.o
1069 ../ld-new -melf32_x86_64 -shared -o $@ $<
1070x86_64_mov_to_lea14: x86_64_mov_to_lea8.o
1071 ../ld-new -melf_x86_64 -shared -o $@ $<
1072x86_64_mov_to_lea1.stdout: x86_64_mov_to_lea1
1073 $(TEST_OBJDUMP) -dw $< > $@
1074x86_64_mov_to_lea2.stdout: x86_64_mov_to_lea2
1075 $(TEST_OBJDUMP) -dw $< > $@
1076x86_64_mov_to_lea3.stdout: x86_64_mov_to_lea3
1077 $(TEST_OBJDUMP) -dw $< > $@
1078x86_64_mov_to_lea4.stdout: x86_64_mov_to_lea4
1079 $(TEST_OBJDUMP) -dw $< > $@
1080x86_64_mov_to_lea5.stdout: x86_64_mov_to_lea5
1081 $(TEST_OBJDUMP) -dw $< > $@
1082x86_64_mov_to_lea6.stdout: x86_64_mov_to_lea6
1083 $(TEST_OBJDUMP) -dw $< > $@
1084x86_64_mov_to_lea7.stdout: x86_64_mov_to_lea7
1085 $(TEST_OBJDUMP) -dw $< > $@
1086x86_64_mov_to_lea8.stdout: x86_64_mov_to_lea8
1087 $(TEST_OBJDUMP) -dw $< > $@
1088x86_64_mov_to_lea9.stdout: x86_64_mov_to_lea9
1089 $(TEST_OBJDUMP) -dw $< > $@
1090x86_64_mov_to_lea10.stdout: x86_64_mov_to_lea10
1091 $(TEST_OBJDUMP) -dw $< > $@
1092x86_64_mov_to_lea11.stdout: x86_64_mov_to_lea11
1093 $(TEST_OBJDUMP) -dw $< > $@
1094x86_64_mov_to_lea12.stdout: x86_64_mov_to_lea12
1095 $(TEST_OBJDUMP) -dw $< > $@
1096x86_64_mov_to_lea13.stdout: x86_64_mov_to_lea13
1097 $(TEST_OBJDUMP) -dw $< > $@
1098x86_64_mov_to_lea14.stdout: x86_64_mov_to_lea14
1099 $(TEST_OBJDUMP) -dw $< > $@
1100
3a4f096e
ST
1101check_SCRIPTS += x86_64_indirect_call_to_direct.sh
1102check_DATA += x86_64_indirect_call_to_direct1.stdout \
1103 x86_64_indirect_jump_to_direct1.stdout
1104MOSTLYCLEANFILES += x86_64_indirect_call_to_direct1 \
1105 x86_64_indirect_jump_to_direct1
1106
1107x86_64_indirect_call_to_direct1.o: x86_64_indirect_call_to_direct1.s
1108 $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1109x86_64_indirect_call_to_direct1: x86_64_indirect_call_to_direct1.o gcctestdir/ld
1110 gcctestdir/ld -o $@ $<
1111x86_64_indirect_call_to_direct1.stdout: x86_64_indirect_call_to_direct1
1112 $(TEST_OBJDUMP) -dw $< > $@
1113x86_64_indirect_jump_to_direct1.o: x86_64_indirect_jump_to_direct1.s
1114 $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1115x86_64_indirect_jump_to_direct1: x86_64_indirect_jump_to_direct1.o gcctestdir/ld
1116 gcctestdir/ld -o $@ $<
1117x86_64_indirect_jump_to_direct1.stdout: x86_64_indirect_jump_to_direct1
1118 $(TEST_OBJDUMP) -dw $< > $@
1119
c34c98ed
CC
1120check_SCRIPTS += x86_64_overflow_pc32.sh
1121check_DATA += x86_64_overflow_pc32.err
1122MOSTLYCLEANFILES += x86_64_overflow_pc32.err
1123x86_64_overflow_pc32.o: x86_64_overflow_pc32.s
1124 $(TEST_AS) -o $@ $<
1125x86_64_overflow_pc32.err: x86_64_overflow_pc32.o gcctestdir/ld
19ef3f4d
CC
1126 @echo gcctestdir/ld -e bar -Tdata=0x81000000 -o x86_64_overflow_pc32 x86_64_overflow_pc32.o "2>$@"
1127 @if gcctestdir/ld -e bar -Tdata=0x81000000 -o x86_64_overflow_pc32 x86_64_overflow_pc32.o 2>$@; \
c34c98ed
CC
1128 then \
1129 echo 1>&2 "Link of x86_64_overflow_pc32 should have failed"; \
1130 rm -f $@; \
1131 exit 1; \
1132 fi
1133
19ef3f4d
CC
1134check_SCRIPTS += x32_overflow_pc32.sh
1135check_DATA += x32_overflow_pc32.err
1136MOSTLYCLEANFILES += x32_overflow_pc32.err
19ef3f4d
CC
1137x32_overflow_pc32.o: x86_64_overflow_pc32.s
1138 $(TEST_AS) --x32 -o $@ $<
1139x32_overflow_pc32.err: x32_overflow_pc32.o gcctestdir/ld
1140 @echo gcctestdir/ld -e bar -Tdata=0x81000000 -o x32_overflow_pc32 x32_overflow_pc32.o "2>$@"
1141 @if gcctestdir/ld -e bar -Tdata=0x81000000 -o x32_overflow_pc32 x32_overflow_pc32.o 2>$@; \
1142 then \
1143 echo 1>&2 "Link of x32_overflow_pc32 should have failed"; \
1144 rm -f $@; \
1145 exit 1; \
1146 fi
1147
1fa29f10
IT
1148endif DEFAULT_TARGET_X86_64
1149
ad961eab
L
1150if DEFAULT_TARGET_X86_64_OR_X32
1151
1152check_PROGRAMS += pr20216a_test
1153pr20216a_test_SOURCES = pr20216_main.c pr20216_def.c
1154pr20216a_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1155pr20216a_test_CFLAGS = -Bgcctestdir/ -fPIE
1156pr20216a_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1157pr20216a_test_LDADD = pr20216_gd.o pr20216_ld.o
1158
1159check_PROGRAMS += pr20216b_test
1160pr20216b_test_SOURCES = pr20216_main.c pr20216_def.c
1161pr20216b_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1162pr20216b_test_CFLAGS = -Bgcctestdir/ -fPIE
1163pr20216b_test_LDFLAGS = -pie -Bgcctestdir/ -Wl,-R,.
1164pr20216b_test_LDADD = pr20216_gd.o pr20216_ld.o
1165
1166check_PROGRAMS += pr20216c_test
1167pr20216c_test_SOURCES = pr20216_main.c pr20216_def.c
1168pr20216c_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1169pr20216c_test_CFLAGS = -Bgcctestdir/ -fPIE
1170pr20216c_test_LDFLAGS = -static -Bgcctestdir/ -Wl,-R,.
1171pr20216c_test_LDADD = pr20216_gd.o pr20216_ld.o
1172
1173check_PROGRAMS += pr20216d_test
1174pr20216d_test_SOURCES = pr20216_main.c pr20216_def.c
1175pr20216d_test_DEPENDENCIES = pr20216a.so gcctestdir/ld gcctestdir/as
1176pr20216d_test_CFLAGS = -Bgcctestdir/ -fPIE
1177pr20216d_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1178pr20216d_test_LDADD = pr20216a.so
1179
1180check_PROGRAMS += pr20216e_test
1181pr20216e_test_SOURCES = pr20216_main.c
1182pr20216e_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o pr20216b.so gcctestdir/ld gcctestdir/as
1183pr20216e_test_CFLAGS = -Bgcctestdir/ -fPIE
1184pr20216e_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1185pr20216e_test_LDADD = pr20216_gd.o pr20216_ld.o pr20216b.so
1186
1187MOSTLYCLEANFILES += pr20216a.so pr20216b.so
1188
1189pr20216a.so: pr20216_gd.o pr20216_ld.o gcctestdir/ld
1190 $(LINK) -Bgcctestdir/ -shared pr20216_gd.o pr20216_ld.o
1191
1192pr20216b.so: pr20216_def.o gcctestdir/ld
1193 $(LINK) -Bgcctestdir/ -shared pr20216_def.o
1194
1195pr20216_gd.o: pr20216_gd.S
1196 $(COMPILE) -c -o $@ $<
1197
1198pr20216_ld.o: pr20216_ld.S
1199 $(COMPILE) -c -o $@ $<
1200
1201endif DEFAULT_TARGET_X86_64_OR_X32
1202
c4fc4724
IT
1203if DEFAULT_TARGET_I386
1204
1205check_SCRIPTS += i386_mov_to_lea.sh
1206check_DATA += i386_mov_to_lea1.stdout i386_mov_to_lea2.stdout \
1207 i386_mov_to_lea3.stdout i386_mov_to_lea4.stdout \
1208 i386_mov_to_lea5.stdout i386_mov_to_lea6.stdout \
1209 i386_mov_to_lea7.stdout i386_mov_to_lea8.stdout
1210MOSTLYCLEANFILES += i386_mov_to_lea1 i386_mov_to_lea2 i386_mov_to_lea3 \
1211 i386_mov_to_lea4 i386_mov_to_lea5 i386_mov_to_lea6 \
1212 i386_mov_to_lea7 i386_mov_to_lea8
1213
1214i386_mov_to_lea1.o: i386_mov_to_lea1.s
1215 $(TEST_AS) --32 -o $@ $<
1216i386_mov_to_lea2.o: i386_mov_to_lea2.s
1217 $(TEST_AS) --32 -o $@ $<
1218i386_mov_to_lea3.o: i386_mov_to_lea3.s
1219 $(TEST_AS) --32 -o $@ $<
1220i386_mov_to_lea4.o: i386_mov_to_lea4.s
1221 $(TEST_AS) --32 -o $@ $<
1222i386_mov_to_lea5.o: i386_mov_to_lea5.s
1223 $(TEST_AS) --32 -o $@ $<
1224i386_mov_to_lea1: i386_mov_to_lea1.o
1225 ../ld-new -Bsymbolic -shared -melf_i386 -o $@ $<
1226i386_mov_to_lea2: i386_mov_to_lea1.o
1227 ../ld-new -pie -melf_i386 -o $@ $<
1228i386_mov_to_lea3: i386_mov_to_lea1.o
1229 ../ld-new -melf_i386 -o $@ $<
1230i386_mov_to_lea4: i386_mov_to_lea1.o
1231 ../ld-new -melf_i386 -shared -o $@ $<
1232i386_mov_to_lea5: i386_mov_to_lea2.o
1233 ../ld-new -melf_i386 -shared -o $@ $<
1234i386_mov_to_lea6: i386_mov_to_lea3.o
1235 ../ld-new -melf_i386 -shared -o $@ $<
1236i386_mov_to_lea7: i386_mov_to_lea4.o
1237 ../ld-new -melf_i386 -shared -o $@ $<
1238i386_mov_to_lea8: i386_mov_to_lea5.o
1239 ../ld-new -melf_i386 -shared -o $@ $<
1240i386_mov_to_lea1.stdout: i386_mov_to_lea1
1241 $(TEST_OBJDUMP) -dw $< > $@
1242i386_mov_to_lea2.stdout: i386_mov_to_lea2
1243 $(TEST_OBJDUMP) -dw $< > $@
1244i386_mov_to_lea3.stdout: i386_mov_to_lea3
1245 $(TEST_OBJDUMP) -dw $< > $@
1246i386_mov_to_lea4.stdout: i386_mov_to_lea4
1247 $(TEST_OBJDUMP) -dw $< > $@
1248i386_mov_to_lea5.stdout: i386_mov_to_lea5
1249 $(TEST_OBJDUMP) -dw $< > $@
1250i386_mov_to_lea6.stdout: i386_mov_to_lea6
1251 $(TEST_OBJDUMP) -dw $< > $@
1252i386_mov_to_lea7.stdout: i386_mov_to_lea7
1253 $(TEST_OBJDUMP) -dw $< > $@
1254i386_mov_to_lea8.stdout: i386_mov_to_lea8
1255 $(TEST_OBJDUMP) -dw $< > $@
1256
b287eca3
L
1257check_PROGRAMS += pr20308a_test
1258pr20308a_test_SOURCES = pr20308_main.c pr20308_def.c
1259pr20308a_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1260pr20308a_test_CFLAGS = -Bgcctestdir/ -fPIE
1261pr20308a_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1262pr20308a_test_LDADD = pr20308_gd.o pr20308_ld.o
1263
1264check_PROGRAMS += pr20308b_test
1265pr20308b_test_SOURCES = pr20308_main.c pr20308_def.c
1266pr20308b_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1267pr20308b_test_CFLAGS = -Bgcctestdir/ -fPIE
1268pr20308b_test_LDFLAGS = -pie -Bgcctestdir/ -Wl,-R,.
1269pr20308b_test_LDADD = pr20308_gd.o pr20308_ld.o
1270
1271check_PROGRAMS += pr20308c_test
1272pr20308c_test_SOURCES = pr20308_main.c pr20308_def.c
1273pr20308c_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1274pr20308c_test_CFLAGS = -Bgcctestdir/ -fPIE
1275pr20308c_test_LDFLAGS = -static -Bgcctestdir/ -Wl,-R,.
1276pr20308c_test_LDADD = pr20308_gd.o pr20308_ld.o
1277
1278check_PROGRAMS += pr20308d_test
1279pr20308d_test_SOURCES = pr20308_main.c pr20308_def.c
1280pr20308d_test_DEPENDENCIES = pr20308a.so gcctestdir/ld gcctestdir/as
1281pr20308d_test_CFLAGS = -Bgcctestdir/ -fPIE
1282pr20308d_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1283pr20308d_test_LDADD = pr20308a.so
1284
1285check_PROGRAMS += pr20308e_test
1286pr20308e_test_SOURCES = pr20308_main.c
1287pr20308e_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o pr20308b.so gcctestdir/ld gcctestdir/as
1288pr20308e_test_CFLAGS = -Bgcctestdir/ -fPIE
1289pr20308e_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1290pr20308e_test_LDADD = pr20308_gd.o pr20308_ld.o pr20308b.so
1291
1292MOSTLYCLEANFILES += pr20308a.so pr20308b.so
1293
1294pr20308a.so: pr20308_gd.o pr20308_ld.o gcctestdir/ld
1295 $(LINK) -Bgcctestdir/ -shared pr20308_gd.o pr20308_ld.o
1296
1297pr20308b.so: pr20308_def.o gcctestdir/ld
1298 $(LINK) -Bgcctestdir/ -shared pr20308_def.o
1299
1300pr20308_gd.o: pr20308_gd.S
1301 $(COMPILE) -c -o $@ $<
1302
1303pr20308_ld.o: pr20308_ld.S
1304 $(COMPILE) -c -o $@ $<
1305
c4fc4724
IT
1306endif DEFAULT_TARGET_I386
1307
d491d34e
ILT
1308check_PROGRAMS += many_sections_test
1309many_sections_test_SOURCES = many_sections_test.cc
1310many_sections_test_DEPENDENCIES = gcctestdir/ld
1311many_sections_test_LDFLAGS = -Bgcctestdir/ -rdynamic
1abce4a6 1312many_sections_test_LDADD =
d491d34e
ILT
1313
1314BUILT_SOURCES += many_sections_define.h
72fef11a 1315MOSTLYCLEANFILES += many_sections_define.h
d491d34e
ILT
1316many_sections_define.h:
1317 (for i in `seq 1 70000`; do \
1318 echo "int var_$$i __attribute__((section(\"section_$$i\"))) = $$i;"; \
1319 done) > $@.tmp
1320 mv -f $@.tmp $@
1321
1322BUILT_SOURCES += many_sections_check.h
72fef11a 1323MOSTLYCLEANFILES += many_sections_check.h
d491d34e 1324many_sections_check.h:
4c94d6ae 1325 (for i in `seq 1 1000 70000`; do \
d491d34e
ILT
1326 echo "assert(var_$$i == $$i);"; \
1327 done) > $@.tmp
1328 mv -f $@.tmp $@
1329
1330check_PROGRAMS += many_sections_r_test
d491d34e
ILT
1331many_sections_r_test.o: many_sections_test.o gcctestdir/ld
1332 gcctestdir/ld -r -o $@ many_sections_test.o
7bc3e21a
ILT
1333many_sections_r_test: many_sections_r_test.o gcctestdir/ld
1334 $(CXXLINK) -Bgcctestdir/ many_sections_r_test.o $(LIBS)
6eee141f 1335
2fd32231
ILT
1336check_PROGRAMS += initpri1
1337initpri1_SOURCES = initpri1.c
1338initpri1_DEPENDENCIES = gcctestdir/ld
1339initpri1_LDFLAGS = -Bgcctestdir/
1abce4a6 1340initpri1_LDADD =
2fd32231 1341
5393d741
ILT
1342check_PROGRAMS += initpri2
1343initpri2_SOURCES = initpri2.c
1344initpri2_DEPENDENCIES = gcctestdir/ld
7b5de7ee 1345initpri2_LDFLAGS = -Bgcctestdir/ -Wl,--ctors-in-init-array
5393d741 1346initpri2_LDADD =
2fd32231 1347
487b39df
ILT
1348check_PROGRAMS += initpri3a
1349initpri3a_SOURCES = initpri3.c
1350initpri3a_DEPENDENCIES = gcctestdir/ld
1351initpri3a_LDFLAGS = -Bgcctestdir/
1352initpri3a_LDADD =
1353
7c6109da
DK
1354# This test fails on targets not using .ctors and .dtors sections (e.g. ARM
1355# EABI). Given that gcc is moving towards using .init_array in all cases,
1356# this test is commented out. A better fix would be checking whether gcc
1357# uses .ctors or .init_array sections in configure.
1358
1359# check_PROGRAMS += initpri3b
1360# initpri3b_SOURCES = initpri3.c
1361# initpri3b_DEPENDENCIES = gcctestdir/ld
1362# initpri3b_LDFLAGS = -Bgcctestdir/ -Wl,--no-ctors-in-init-array
1363# initpri3b_LDADD =
487b39df 1364
351a8000
ILT
1365# Test --detect-odr-violations
1366check_SCRIPTS += debug_msg.sh
6eee141f 1367
351a8000
ILT
1368# Create the data files that debug_msg.sh analyzes.
1369check_DATA += debug_msg.err
1370MOSTLYCLEANFILES += debug_msg.err
1371debug_msg.o: debug_msg.cc
1372 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/debug_msg.cc
1373odr_violation1.o: odr_violation1.cc
1374 $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation1.cc
71ff8986
ILT
1375# Compile with different optimization flags to check that rearranged
1376# instructions don't cause a false positive.
351a8000 1377odr_violation2.o: odr_violation2.cc
71ff8986 1378 $(CXXCOMPILE) -O2 -g -c -w -o $@ $(srcdir)/odr_violation2.cc
351a8000
ILT
1379debug_msg.err: debug_msg.o odr_violation1.o odr_violation2.o gcctestdir/ld
1380 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o "2>$@"
1381 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>$@; \
1382 then \
1383 echo 1>&2 "Link of debug_msg should have failed"; \
1384 rm -f $@; \
1385 exit 1; \
1386 fi
1387
93acabad
CC
1388# Test error message when a vtable is undefined.
1389check_SCRIPTS += missing_key_func.sh
1390check_DATA += missing_key_func.err
1391MOSTLYCLEANFILES += missing_key_func.err
1392missing_key_func.o: missing_key_func.cc
1393 $(CXXCOMPILE) -O0 -g -c -o $@ $(srcdir)/missing_key_func.cc
1394missing_key_func.err: missing_key_func.o gcctestdir/ld
1395 @echo $(CXXLINK) -Bgcctestdir/ -o missing_key_func missing_key_func.o "2>$@"
1396 @if $(CXXLINK) -Bgcctestdir/ -o missing_key_func missing_key_func.o 2>$@; \
1397 then \
1398 echo 1>&2 "Link of missing_key_func should have failed"; \
1399 rm -f $@; \
1400 exit 1; \
1401 fi
472076e4 1402
472076e4
CC
1403# Check that --detect-odr-violations works with compressed debug sections.
1404check_DATA += debug_msg_cdebug.err
1405MOSTLYCLEANFILES += debug_msg_cdebug.err
1406debug_msg_cdebug.o: debug_msg.cc gcctestdir/as
1407 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/debug_msg.cc
1408odr_violation1_cdebug.o: odr_violation1.cc gcctestdir/as
1409 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/odr_violation1.cc
1410odr_violation2_cdebug.o: odr_violation2.cc gcctestdir/as
1411 $(CXXCOMPILE) -Bgcctestdir/ -O2 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/odr_violation2.cc
1412debug_msg_cdebug.err: debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o gcctestdir/ld
1413 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o "2>$@"
1414 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o 2>$@; \
1415 then \
1416 echo 1>&2 "Link of debug_msg_cdebug should have failed"; \
1417 rm -f $@; \
1418 exit 1; \
1419 fi
48058663
L
1420check_DATA += debug_msg_cdebug_gabi.err
1421MOSTLYCLEANFILES += debug_msg_cdebug_gabi.err
1422debug_msg_cdebug_gabi.o: debug_msg.cc gcctestdir/as
1423 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/debug_msg.cc
1424odr_violation1_cdebug_gabi.o: odr_violation1.cc gcctestdir/as
1425 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/odr_violation1.cc
1426odr_violation2_cdebug_gabi.o: odr_violation2.cc gcctestdir/as
1427 $(CXXCOMPILE) -Bgcctestdir/ -O2 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/odr_violation2.cc
1428debug_msg_cdebug_gabi.err: debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o gcctestdir/ld
1429 @echo $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o "2>$@"
1430 @if $(CXXLINK) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug_gabi debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o 2>$@; \
1431 then \
1432 echo 1>&2 "Link of debug_msg_cdebug_gabi should have failed"; \
1433 rm -f $@; \
1434 exit 1; \
1435 fi
472076e4 1436
351a8000
ILT
1437# See if we can also detect problems when we're linking .so's, not .o's.
1438check_DATA += debug_msg_so.err
1439MOSTLYCLEANFILES += debug_msg_so.err
1440debug_msg.so: debug_msg.cc gcctestdir/ld
1441 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
1442odr_violation1.so: odr_violation1.cc gcctestdir/ld
1443 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
1444odr_violation2.so: odr_violation2.cc gcctestdir/ld
71ff8986 1445 $(CXXCOMPILE) -Bgcctestdir/ -O2 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
351a8000 1446debug_msg_so.err: debug_msg.so odr_violation1.so odr_violation2.so gcctestdir/ld
3d587466
CC
1447 @echo $(CXXLINK_S) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so "2>$@"
1448 @if $(CXXLINK_S) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>$@; \
351a8000
ILT
1449 then \
1450 echo 1>&2 "Link of debug_msg_so should have failed"; \
1451 rm -f $@; \
1452 exit 1; \
1453 fi
1454
1455# We also want to make sure we do something reasonable when there's no
1456# debug info available. For the best test, we use .so's.
1457check_DATA += debug_msg_ndebug.err
1458MOSTLYCLEANFILES += debug_msg_ndebug.err
1459debug_msg_ndebug.so: debug_msg.cc gcctestdir/ld
1460 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
1461odr_violation1_ndebug.so: odr_violation1.cc gcctestdir/ld
1462 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
1463odr_violation2_ndebug.so: odr_violation2.cc gcctestdir/ld
71ff8986 1464 $(CXXCOMPILE) -Bgcctestdir/ -O2 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
351a8000 1465debug_msg_ndebug.err: debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so gcctestdir/ld
3d587466
CC
1466 @echo $(CXXLINK_S) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so -shared-libgcc -Bdynamic -lstdc++ "2>$@"
1467 @if $(CXXLINK_S) -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so -shared-libgcc -Bdynamic -lstdc++ 2>$@; \
351a8000
ILT
1468 then \
1469 echo 1>&2 "Link of debug_msg_ndebug should have failed"; \
1470 rm -f $@; \
1471 exit 1; \
1472 fi
1473
1474
1475# Similar to --detect-odr-violations: check for undefined symbols in .so's
1476check_SCRIPTS += undef_symbol.sh
1477check_DATA += undef_symbol.err
1478MOSTLYCLEANFILES += undef_symbol.err
1479undef_symbol.o: undef_symbol.cc
1480 $(CXXCOMPILE) -O0 -g -c -fPIC $<
1481undef_symbol.so: undef_symbol.o gcctestdir/ld
1482 $(CXXLINK) -Bgcctestdir/ -shared undef_symbol.o
1483undef_symbol.err: undef_symbol_main.o undef_symbol.so gcctestdir/ld
1484 @echo $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so "2>$@"
1485 @if $(CXXLINK) -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>$@; \
1486 then \
1487 echo 1>&2 "Link of undef_symbol_test should have failed"; \
1488 rm -f $@; \
1489 exit 1; \
1490 fi
1491
1492
351a8000
ILT
1493# Test -o when emitting to a special file (such as something in /dev).
1494check_PROGRAMS += flagstest_o_specialfile
0e470e5c 1495flagstest_o_specialfile: flagstest_debug.o gcctestdir/ld
351a8000
ILT
1496 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< 2>&1 | cat > $@
1497 chmod a+x $@
1498 test -s $@
1499
fb8b9dbc
L
1500# Test --compress-debug-sections.
1501check_PROGRAMS += flagstest_compress_debug_sections_none
1502check_DATA += flagstest_compress_debug_sections_none.stdout
1503flagstest_compress_debug_sections_none: flagstest_debug.o gcctestdir/ld
1504 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=none
1505 test -s $@
1506
1507# Dump DWARF debug sections.
1508flagstest_compress_debug_sections_none.stdout: flagstest_compress_debug_sections_none
1509 $(TEST_READELF) -w $< > $@.tmp
1510 mv -f $@.tmp $@
1511
7fcd0256 1512check_PROGRAMS += flagstest_compress_debug_sections
fb8b9dbc
L
1513check_DATA += flagstest_compress_debug_sections.stdout \
1514 flagstest_compress_debug_sections.cmp \
1515 flagstest_compress_debug_sections.check
0863441e
CC
1516MOSTLYCLEANFILES += flagstest_compress_debug_sections.check \
1517 flagstest_compress_debug_sections.cmp
7fcd0256
ILT
1518flagstest_compress_debug_sections: flagstest_debug.o gcctestdir/ld
1519 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib
1520 test -s $@
1521
9c7fe3c5
CC
1522# Test --compress-debug-sections with --build-id=tree.
1523check_PROGRAMS += flagstest_compress_debug_sections_and_build_id_tree
1524flagstest_compress_debug_sections_and_build_id_tree: flagstest_debug.o gcctestdir/ld
1525 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib \
1526 -Wl,--build-id=tree \
1527 -Wl,--build-id-chunk-size-for-treehash=4096 \
1528 -Wl,--build-id-min-file-size-for-treehash=0
1529 test -s $@
7fcd0256 1530
fb8b9dbc
L
1531# Dump compressed DWARF debug sections.
1532flagstest_compress_debug_sections.stdout: flagstest_compress_debug_sections
1533 $(TEST_READELF) -w $< | sed -e "s/.zdebug_/.debug_/" > $@.tmp
1534 mv -f $@.tmp $@
1535
19a7fe52 1536# Check there are compressed DWARF .debug_* sections.
fb8b9dbc 1537flagstest_compress_debug_sections.check: flagstest_compress_debug_sections
19a7fe52 1538 $(TEST_READELF) -SW $< | egrep ".debug_.* C *" > $@.tmp
fb8b9dbc
L
1539 mv -f $@.tmp $@
1540
1541# Compare DWARF debug info.
1542flagstest_compress_debug_sections.cmp: flagstest_compress_debug_sections.stdout \
1543 flagstest_compress_debug_sections_none.stdout
1544 cmp flagstest_compress_debug_sections.stdout \
1545 flagstest_compress_debug_sections_none.stdout > $@.tmp
1546 mv -f $@.tmp $@
1547
1548check_PROGRAMS += flagstest_compress_debug_sections_gnu
1549check_DATA += flagstest_compress_debug_sections_gnu.stdout \
1550 flagstest_compress_debug_sections_gnu.cmp \
1551 flagstest_compress_debug_sections_gnu.check
0863441e
CC
1552MOSTLYCLEANFILES += flagstest_compress_debug_sections_gnu.check \
1553 flagstest_compress_debug_sections_gnu.cmp
fb8b9dbc
L
1554flagstest_compress_debug_sections_gnu: flagstest_debug.o gcctestdir/ld
1555 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib-gnu
1556 test -s $@
1557
1558# Dump compressed DWARF debug sections.
1559flagstest_compress_debug_sections_gnu.stdout: flagstest_compress_debug_sections_gnu
1560 $(TEST_READELF) -w $< | sed -e "s/.zdebug_/.debug_/" > $@.tmp
1561 mv -f $@.tmp $@
1562
1563# Check there are compressed DWARF .zdebug_* sections.
1564flagstest_compress_debug_sections_gnu.check: flagstest_compress_debug_sections_gnu
1565 $(TEST_READELF) -SW $< | grep ".zdebug_" > $@.tmp
1566 mv -f $@.tmp $@
1567
1568# Compare DWARF debug info.
1569flagstest_compress_debug_sections_gnu.cmp: flagstest_compress_debug_sections_gnu.stdout \
1570 flagstest_compress_debug_sections_none.stdout
1571 cmp flagstest_compress_debug_sections_gnu.stdout \
1572 flagstest_compress_debug_sections_none.stdout > $@.tmp
1573 mv -f $@.tmp $@
1574
1575check_PROGRAMS += flagstest_compress_debug_sections_gabi
1576check_DATA += flagstest_compress_debug_sections_gabi.stdout \
1577 flagstest_compress_debug_sections_gabi.cmp \
1578 flagstest_compress_debug_sections_gabi.check
0863441e
CC
1579MOSTLYCLEANFILES += flagstest_compress_debug_sections_gabi.cmp \
1580 flagstest_compress_debug_sections_gabi.check
fb8b9dbc
L
1581flagstest_compress_debug_sections_gabi: flagstest_debug.o gcctestdir/ld
1582 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,--compress-debug-sections=zlib-gabi
1583 test -s $@
1584
1585# Dump compressed DWARF debug sections.
1586flagstest_compress_debug_sections_gabi.stdout: flagstest_compress_debug_sections_gabi
1587 $(TEST_READELF) -w $< > $@.tmp
1588 mv -f $@.tmp $@
1589
1590# Check there are compressed DWARF .debug_* sections.
1591flagstest_compress_debug_sections_gabi.check: flagstest_compress_debug_sections_gabi
1592 $(TEST_READELF) -tW $< | grep "COMPRESSED" > $@.tmp
1593 mv -f $@.tmp $@
1594
1595# Compare DWARF debug info.
1596flagstest_compress_debug_sections_gabi.cmp: flagstest_compress_debug_sections_gabi.stdout \
1597 flagstest_compress_debug_sections_none.stdout
1598 cmp flagstest_compress_debug_sections_gabi.stdout \
1599 flagstest_compress_debug_sections_none.stdout > $@.tmp
1600 mv -f $@.tmp $@
1601
351a8000
ILT
1602# The specialfile output has a tricky case when we also compress debug
1603# sections, because it requires output-file resizing.
1604check_PROGRAMS += flagstest_o_specialfile_and_compress_debug_sections
0e470e5c
ILT
1605flagstest_o_specialfile_and_compress_debug_sections: flagstest_debug.o \
1606 gcctestdir/ld
126f3ece 1607 $(CXXLINK) -Bgcctestdir/ -o /dev/stdout $< -Wl,--compress-debug-sections=zlib 2>&1 | cat > $@
351a8000
ILT
1608 chmod a+x $@
1609 test -s $@
1610
f54f5e31
L
1611check_SCRIPTS += pr18689.sh
1612check_DATA += pr18689.stdout
1613MOSTLYCLEANFILES += pr18689a.o pr18689b.o
1614
1615pr18689.stdout: pr18689b.o
1616 $(TEST_READELF) -SW $< > $@
1617
1618pr18689a.o: pr18689.o ../ld-new
1619 ../ld-new -r -o $@ $<
1620
1621pr18689b.o: pr18689a.o ../ld-new
1622 ../ld-new -r -o $@ $<
1623
1624pr18689.o: pr18689.c gcctestdir/as
1625 $(COMPILE) -Bgcctestdir/ -ggdb3 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/pr18689.c
1626
d12a5ea8
ILT
1627# Test -TText and -Tdata.
1628check_PROGRAMS += flagstest_o_ttext_1
1629flagstest_o_ttext_1: flagstest_debug.o gcctestdir/ld
1630 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,-Ttext,0x400000 -Wl,-Tdata,0x800000
1631
1632# This version won't be runnable, because there is no way to put the
1633# PT_PHDR segment at file offset 0. We just make sure that we can
1634# build it without error.
1635check_DATA += flagstest_o_ttext_2
0ec6429b 1636MOSTLYCLEANFILES += flagstest_o_ttext_2
d12a5ea8
ILT
1637flagstest_o_ttext_2: flagstest_debug.o gcctestdir/ld
1638 $(CXXLINK) -Bgcctestdir/ -o $@ $< -Wl,-Ttext,0x400010 -Wl,-Tdata,0x800010
1639
99f8faca
ILT
1640# Test symbol versioning.
1641check_PROGRAMS += ver_test
1642ver_test_SOURCES = ver_test_main.cc
1643ver_test_DEPENDENCIES = gcctestdir/ld ver_test_1.so ver_test_2.so ver_test_4.so
1644ver_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1645ver_test_LDADD = ver_test_1.so ver_test_2.so ver_test_4.so
1646ver_test_1.so: ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so gcctestdir/ld
1647 $(CXXLINK) -Bgcctestdir/ -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
09124467 1648ver_test_2.so: ver_test_2.o $(srcdir)/ver_test_2.script ver_test_4.so gcctestdir/ld
41d0ab5f 1649 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_2.script -Wl,-R,. ver_test_2.o ver_test_4.so
09124467
ILT
1650ver_test_4.so: ver_test_4.o $(srcdir)/ver_test_4.script gcctestdir/ld
1651 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o
99f8faca
ILT
1652ver_test_1.o: ver_test_1.cc
1653 $(CXXCOMPILE) -c -fpic -o $@ $<
1654ver_test_2.o: ver_test_2.cc
1655 $(CXXCOMPILE) -c -fpic -o $@ $<
1656ver_test_3.o: ver_test_3.cc
1657 $(CXXCOMPILE) -c -fpic -o $@ $<
1658ver_test_4.o: ver_test_4.cc
1659 $(CXXCOMPILE) -c -fpic -o $@ $<
351a8000 1660
0602e05a
ILT
1661check_SCRIPTS += ver_test_1.sh
1662check_DATA += ver_test_1.syms
1663ver_test_1.syms: ver_test_1.so
1664 $(TEST_READELF) -s $< >$@ 2>/dev/null
1665
be3e6201
ILT
1666check_PROGRAMS += ver_test_2
1667ver_test_2_SOURCES = ver_test_main_2.cc
1668ver_test_2_DEPENDENCIES = gcctestdir/ld ver_test_4.so ver_test_2.so
1669ver_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1670ver_test_2_LDADD = ver_test_4.so ver_test_2.so
1671
be3e6201
ILT
1672check_SCRIPTS += ver_test_2.sh
1673check_DATA += ver_test_2.syms
1674ver_test_2.syms: ver_test_2
6835af53 1675 $(TEST_READELF) -s $< >$@ 2>/dev/null
be3e6201 1676
686c8caf
ILT
1677check_SCRIPTS += ver_test_4.sh
1678check_DATA += ver_test_4.syms
1679ver_test_4.syms: ver_test_4.so
6835af53 1680 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f
ILT
1681
1682ver_test_5.so: ver_test_5.o $(srcdir)/ver_test_5.script ver_test_4.so gcctestdir/ld
1683 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_5.script ver_test_5.o ver_test_4.so
1684ver_test_5.o: ver_test_5.cc
1685 $(CXXCOMPILE) -c -fpic -o $@ $<
1686check_SCRIPTS += ver_test_5.sh
1687check_DATA += ver_test_5.syms
1688ver_test_5.syms: ver_test_5.so
6835af53 1689 $(TEST_READELF) -s $< >$@ 2>/dev/null
5871526f 1690
18e6b24e
ILT
1691check_PROGRAMS += ver_test_6
1692ver_test_6_SOURCES = ver_test_6.c
1693ver_test_6_DEPENDENCIES = gcctestdir/ld ver_test_2.so
1694ver_test_6_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1695ver_test_6_LDADD = ver_test_2.so
1696
479f6503
ILT
1697ver_test_7.so: ver_test_4.o $(srcdir)/ver_test_4.script ver_test_7.o gcctestdir/ld
1698 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o ver_test_7.o
1699ver_test_7.o: ver_test_7.cc
1700 $(CXXCOMPILE) -c -fpic -o $@ $<
1701check_SCRIPTS += ver_test_7.sh
1702check_DATA += ver_test_7.syms
1703ver_test_7.syms: ver_test_7.so
6835af53 1704 $(TEST_READELF) -s $< >$@ 2>/dev/null
479f6503 1705
75517b77
ILT
1706check_PROGRAMS += ver_test_8
1707ver_test_8_SOURCES = two_file_test_main.cc
1708ver_test_8_DEPENDENCIES = gcctestdir/ld ver_test_8_1.so ver_test_8_2.so
1709ver_test_8_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1710ver_test_8_LDADD = ver_test_8_1.so ver_test_8_2.so
1711ver_test_8_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so gcctestdir/ld
1712 $(CXXLINK) -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
1713ver_test_8_2.so: two_file_test_2_pic.o $(srcdir)/ver_test_8.script gcctestdir/ld
1714 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_8.script two_file_test_2_pic.o
1715
95d14cd3
ILT
1716check_PROGRAMS += ver_test_9
1717ver_test_9_SOURCES = ver_test_main.cc
1718ver_test_9_DEPENDENCIES = gcctestdir/ld ver_test_9.so
1719ver_test_9_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1720ver_test_9_LDADD = ver_test_9.so
1721ver_test_9.so: ver_test_9.o ver_test_4.so ver_test_5.so gcctestdir/ld
41d0ab5f 1722 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-R,. ver_test_9.o ver_test_5.so ver_test_4.so
95d14cd3
ILT
1723ver_test_9.o: ver_test_9.cc
1724 $(CXXCOMPILE) -c -fpic -o $@ $<
1725
057ead22
ILT
1726check_SCRIPTS += ver_test_10.sh
1727check_DATA += ver_test_10.syms
1728ver_test_10.syms: ver_test_10.so
1729 $(TEST_READELF) -s $< >$@ 2>/dev/null
1730ver_test_10.so: gcctestdir/ld ver_test_2.o ver_test_10.script
1731 $(CXXLINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_10.script ver_test_2.o
1732
9c5b8369 1733check_PROGRAMS += ver_test_11
72fef11a 1734MOSTLYCLEANFILES += ver_test_11.a
9c5b8369
ILT
1735ver_test_11_SOURCES = ver_test_main_2.cc
1736ver_test_11_DEPENDENCIES = gcctestdir/ld ver_test_11.a
1737ver_test_11_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1738ver_test_11_LDADD = ver_test_11.a
1739ver_test_11.a: ver_test_1.o ver_test_2.o ver_test_4.o
1740 $(TEST_AR) rc $@ $^
1741
6d1c4efb
ILT
1742check_PROGRAMS += ver_test_12
1743ver_test_12_SOURCES = ver_test_main_2.cc
1744ver_test_12_DEPENDENCIES = gcctestdir/ld ver_test_12.o
1745ver_test_12_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1746ver_test_12_LDADD = ver_test_12.o
1747ver_test_12.o: gcctestdir/ld ver_test_1.o ver_test_2.o ver_test_4.o
1748 gcctestdir/ld -r -o $@ ver_test_1.o ver_test_2.o ver_test_4.o
1749
b45e00b3
CC
1750check_SCRIPTS += ver_test_13.sh
1751check_DATA += ver_test_13.syms
1752ver_test_13.syms: ver_test_13.so
1753 $(TEST_READELF) -s $< >$@ 2>/dev/null
1754ver_test_13.so: gcctestdir/ld ver_test_13.o ver_test_13.script
1755 $(LINK) -Bgcctestdir/ -shared -Wl,--version-script,$(srcdir)/ver_test_13.script ver_test_13.o
1756ver_test_13.o: ver_test_13.c
1757 $(COMPILE) -c -fpic -o $@ $<
1758
8bdcdf2c
ILT
1759check_PROGRAMS += protected_1
1760protected_1_SOURCES = \
1761 protected_main_1.cc protected_main_2.cc protected_main_3.cc
1762protected_1_DEPENDENCIES = gcctestdir/ld protected_1.so
1763protected_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1764protected_1_LDADD = protected_1.so
1765
1766protected_1.so: gcctestdir/ld protected_1_pic.o protected_2_pic.o protected_3_pic.o
1767 $(CXXLINK) -Bgcctestdir/ -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
1768protected_1_pic.o: protected_1.cc
1769 $(CXXCOMPILE) -c -fpic -o $@ $<
1770protected_2_pic.o: protected_2.cc
1771 $(CXXCOMPILE) -c -fpic -o $@ $<
1772protected_3_pic.o: protected_3.cc
1773 $(CXXCOMPILE) -c -fpic -o $@ $<
1774
1775check_PROGRAMS += protected_2
1776protected_2_SOURCES = protected_main_1.cc protected_3.cc
1777protected_2_DEPENDENCIES = gcctestdir/ld protected_1.so
1778protected_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1779protected_2_LDADD = protected_1.so
1780
837504c4
ILT
1781check_DATA += protected_3.err
1782MOSTLYCLEANFILES += protected_3.err
1783protected_4_pic.o: protected_4.cc
1784 $(CXXCOMPILE) -c -fpic -o $@ $<
1785protected_3.err: protected_4_pic.o gcctestdir/ld
1786 @echo $(CXXLINK) -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o "2>$@"
1787 @if $(CXXLINK) -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o 2>$@; then \
1788 echo 1>&2 "Link of protected_4.so should have failed"; \
1789 rm -f $@; \
1790 exit 1; \
1791 fi
1792
9f1d377b 1793check_PROGRAMS += relro_test
fc497986
CC
1794check_SCRIPTS += relro_test.sh
1795check_DATA += relro_test.stdout
9f1d377b
ILT
1796relro_test_SOURCES = relro_test_main.cc
1797relro_test_DEPENDENCIES = gcctestdir/ld relro_test.so
1798relro_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1799relro_test_LDADD = relro_test.so
1800relro_test.so: gcctestdir/ld relro_test_pic.o
1801 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro relro_test_pic.o
1802relro_test_pic.o: relro_test.cc
1803 $(CXXCOMPILE) -c -fpic -o $@ $<
fc497986
CC
1804relro_test.stdout: relro_test.so
1805 $(TEST_READELF) -SlW relro_test.so > relro_test.stdout
9f1d377b 1806
9446efde
ILT
1807check_PROGRAMS += relro_now_test
1808relro_now_test_SOURCES = relro_test_main.cc
1809relro_now_test_DEPENDENCIES = gcctestdir/ld relro_now_test.so
1810relro_now_test_LDFLAGS = -Bgcctestdir -Wl,-R,. -Wl,-z,relro -Wl,-z,now
1811relro_now_test_LDADD = relro_now_test.so
1812relro_now_test.so: gcctestdir/ld relro_test_pic.o
1813 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-z,now relro_test_pic.o
1814
5f1ab67a
ILT
1815check_PROGRAMS += relro_strip_test
1816relro_strip_test_SOURCES = relro_test_main.cc
1817relro_strip_test_DEPENDENCIES = gcctestdir/ld relro_strip_test.so
1818relro_strip_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1819relro_strip_test_LDADD = relro_strip_test.so
1820relro_strip_test.so: relro_test.so
1821 $(TEST_STRIP) -o $@ $<
1822
2d924fd9
ILT
1823check_PROGRAMS += relro_script_test
1824relro_script_test_SOURCES = relro_test_main.cc
1825relro_script_test_DEPENDENCIES = gcctestdir/ld relro_script_test.so
1826relro_script_test_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
1827relro_script_test_LDADD = relro_script_test.so
1828relro_script_test.so: gcctestdir/ld relro_script_test.t relro_test_pic.o
1496b446 1829 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-T,$(srcdir)/relro_script_test.t relro_test_pic.o
2d924fd9 1830
e5756efb 1831check_PROGRAMS += script_test_1
5b2af7dd 1832script_test_1_SOURCES = script_test_1a.cc script_test_1b.cc
e5756efb 1833script_test_1_DEPENDENCIES = gcctestdir/ld script_test_1.t
1496b446 1834script_test_1_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -Wl,-T,$(srcdir)/script_test_1.t
1abce4a6 1835script_test_1_LDADD =
e5756efb 1836
a445fddf
ILT
1837check_PROGRAMS += script_test_2
1838script_test_2_SOURCES = script_test_2.cc script_test_2a.cc script_test_2b.cc
1839script_test_2_DEPENDENCIES = gcctestdir/ld script_test_2.t
1496b446 1840script_test_2_LDFLAGS = -Bgcctestdir/ -Wl,-R,. -Wl,-T,$(srcdir)/script_test_2.t
1abce4a6 1841script_test_2_LDADD =
a445fddf 1842
88dd47ac
ILT
1843check_PROGRAMS += justsyms
1844justsyms_SOURCES = justsyms_1.cc
1845justsyms_DEPENDENCIES = gcctestdir/ld justsyms_2r.o
1846justsyms_LDFLAGS = -Bgcctestdir/ -Wl,-R,justsyms_2r.o
1abce4a6 1847justsyms_LDADD =
88dd47ac
ILT
1848justsyms_2.o: justsyms_2.cc
1849 $(CXXCOMPILE) -c -o $@ $<
83bfb6b7 1850justsyms_2r.o: justsyms_2.o gcctestdir/ld $(srcdir)/justsyms.t
52dc3f9c 1851 gcctestdir/ld -o $@ -r -T $(srcdir)/justsyms.t justsyms_2.o
88dd47ac 1852
c3f7b0e5
CC
1853check_PROGRAMS += justsyms_exec
1854justsyms_exec_SOURCES = justsyms_exec.c
1855justsyms_exec_DEPENDENCIES = gcctestdir/ld justsyms_lib
1856justsyms_exec_LDFLAGS = -Bgcctestdir/ -Wl,-R,justsyms_lib
1857justsyms_exec_LDADD =
0ec6429b 1858MOSTLYCLEANFILES += justsyms_lib
c3f7b0e5
CC
1859justsyms_lib.o: justsyms_lib.c
1860 $(COMPILE) -c -o $@ $<
1861justsyms_lib: justsyms_lib.o gcctestdir/ld
1862 gcctestdir/ld -o $@ -Ttext=0x1000200 -Tdata=0x2000000 -e exported_func justsyms_lib.o
1863
bc644c6c 1864check_PROGRAMS += binary_test
72fef11a 1865MOSTLYCLEANFILES += binary.txt
bc644c6c
ILT
1866binary_test_SOURCES = binary_test.cc
1867binary_test_DEPENDENCIES = gcctestdir/ld binary.txt
1868binary_test_LDFLAGS = -Bgcctestdir/ -Wl,--format,binary,binary.txt,--format,elf
1abce4a6 1869binary_test_LDADD =
bc644c6c
ILT
1870# Copy the file to the build directory to avoid worrying about the
1871# full pathname in the generated symbols.
1872binary.txt: $(srcdir)/binary.in
1873 rm -f $@
1874 $(LN_S) $< $@
1875
09124467
ILT
1876check_SCRIPTS += ver_matching_test.sh
1877check_DATA += ver_matching_test.stdout
1878MOSTLYCLEANFILES += ver_matching_test.stdout
2fbb4320
ILT
1879ver_matching_def.so: ver_matching_def_pic.o $(srcdir)/version_script.map gcctestdir/ld
1880 $(CXXLINK) -O0 -Bgcctestdir/ -shared ver_matching_def_pic.o -Wl,--version-script=$(srcdir)/version_script.map
1881ver_matching_def_pic.o: ver_matching_def.cc
1882 $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
09124467 1883ver_matching_test.stdout: ver_matching_def.so
52dc3f9c 1884 $(TEST_OBJDUMP) -T ver_matching_def.so | $(TEST_CXXFILT) > ver_matching_test.stdout
1c4f3631
ILT
1885
1886check_PROGRAMS += script_test_3
1887check_SCRIPTS += script_test_3.sh
1888check_DATA += script_test_3.stdout
1889MOSTLYCLEANFILES += script_test_3.stdout
1890script_test_3: basic_test.o gcctestdir/ld script_test_3.t
1496b446 1891 $(CXXLINK) -Bgcctestdir/ basic_test.o -Wl,-T,$(srcdir)/script_test_3.t
1c4f3631 1892script_test_3.stdout: script_test_3
2cefc357 1893 $(TEST_READELF) -SlW script_test_3 > script_test_3.stdout
09124467 1894
4ebf39db
ILT
1895check_PROGRAMS += tls_phdrs_script_test
1896tls_phdrs_script_test_SOURCES = $(tls_test_SOURCES)
1897tls_phdrs_script_test_DEPENDENCIES = $(tls_test_DEPENDENCIES) $(srcdir)/script_test_3.t
1496b446 1898tls_phdrs_script_test_LDFLAGS = $(tls_test_LDFLAGS) -Wl,-T,$(srcdir)/script_test_3.t
4ebf39db
ILT
1899tls_phdrs_script_test_LDADD = $(tls_test_LDADD)
1900
e6188289
ILT
1901check_SCRIPTS += script_test_4.sh
1902check_DATA += script_test_4.stdout
72fef11a 1903MOSTLYCLEANFILES += script_test_4
e6188289 1904script_test_4: basic_test.o gcctestdir/ld $(srcdir)/script_test_4.t
1496b446 1905 $(CXXLINK) -Bgcctestdir/ basic_test.o -Wl,-T,$(srcdir)/script_test_4.t
e6188289
ILT
1906script_test_4.stdout: script_test_4
1907 $(TEST_READELF) -SlW script_test_4 > script_test_4.stdout
1908
6c93b22c
ILT
1909check_PROGRAMS += tls_script_test
1910tls_script_test_SOURCES = $(tls_test_SOURCES)
1911tls_script_test_DEPENDENCIES = $(tls_test_DEPENDENCIES) $(srcdir)/script_test_4.t
1496b446 1912tls_script_test_LDFLAGS = $(tls_test_LDFLAGS) -Wl,-T,$(srcdir)/script_test_4.t
6c93b22c
ILT
1913tls_script_test_LDADD = $(tls_test_LDADD)
1914
401a9a73
CC
1915check_SCRIPTS += script_test_5.sh
1916check_DATA += script_test_5.stdout
72fef11a 1917MOSTLYCLEANFILES += script_test_5
401a9a73 1918script_test_5: script_test_5.o gcctestdir/ld $(srcdir)/script_test_5.t
1496b446 1919 $(CXXLINK) -Bgcctestdir/ script_test_5.o -Wl,-T,$(srcdir)/script_test_5.t
401a9a73
CC
1920script_test_5.stdout: script_test_5
1921 $(TEST_READELF) -SW script_test_5 > script_test_5.stdout
1922
3c12dcdb
DK
1923check_SCRIPTS += script_test_6.sh
1924check_DATA += script_test_6.stdout
1925MOSTLYCLEANFILES += script_test_6
1926script_test_6: basic_test.o gcctestdir/ld $(srcdir)/script_test_6.t
1496b446 1927 $(CXXLINK) -Bgcctestdir/ basic_test.o -Wl,-T,$(srcdir)/script_test_6.t \
3c12dcdb
DK
1928 -Wl,-Ttext=0x10001000 -Wl,-Tdata=0x10200000 -Wl,-Tbss=0x10400000
1929script_test_6.stdout: script_test_6
1930 $(TEST_READELF) -SlW script_test_6 > script_test_6.stdout
1931
1932check_SCRIPTS += script_test_7.sh
1933check_DATA += script_test_7.stdout
1934MOSTLYCLEANFILES += script_test_7
1935script_test_7: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
1496b446 1936 $(CXXLINK) -Bgcctestdir/ basic_test.o -Wl,-T,$(srcdir)/script_test_7.t
3c12dcdb
DK
1937script_test_7.stdout: script_test_7
1938 $(TEST_READELF) -SlW script_test_7 > script_test_7.stdout
1939
1940check_SCRIPTS += script_test_8.sh
1941check_DATA += script_test_8.stdout
1942MOSTLYCLEANFILES += script_test_8
1943script_test_8: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
1496b446 1944 $(CXXLINK) -Bgcctestdir/ basic_test.o -Wl,-T,$(srcdir)/script_test_7.t \
3c12dcdb
DK
1945 -Wl,-Ttext=0x20001000 -Wl,-Tdata=0x20200000 -Wl,-Tbss=0x20400000
1946script_test_8.stdout: script_test_8
1947 $(TEST_READELF) -SlW script_test_8 > script_test_8.stdout
1948
d103a984
RÁE
1949check_SCRIPTS += script_test_9.sh
1950check_DATA += script_test_9.stdout
0ec6429b 1951MOSTLYCLEANFILES += script_test_9
d103a984
RÁE
1952script_test_9.o: script_test_9.cc
1953 $(CXXCOMPILE) -O0 -c -o $@ $<
1954script_test_9: gcctestdir/ld $(srcdir)/script_test_9.t script_test_9.o
1496b446 1955 $(CXXLINK) -Bgcctestdir/ script_test_9.o -Wl,-T,$(srcdir)/script_test_9.t
d103a984
RÁE
1956script_test_9.stdout: script_test_9
1957 $(TEST_READELF) -lW script_test_9 > script_test_9.stdout
1958
502e8a84
CC
1959# Test scripts with a relocatable link.
1960# The -g option is necessary to trigger a bug where a section
1961# declared in a script file is assigned a non-zero starting address.
1962check_PROGRAMS += script_test_11
1963script_test_11: gcctestdir/ld script_test_11_r.o
1964 $(LINK) -Bgcctestdir/ script_test_11_r.o
5b2af7dd
L
1965script_test_11_r.o: gcctestdir/ld $(srcdir)/script_test_11.t script_test_11a.o script_test_11b.o
1966 gcctestdir/ld -r -o $@ -T $(srcdir)/script_test_11.t script_test_11a.o script_test_11b.o
1967script_test_11a.o: script_test_11a.c
1968 $(COMPILE) -c -g -o $@ $<
1969script_test_11b.o: script_test_11b.c
502e8a84 1970 $(COMPILE) -c -g -o $@ $<
d103a984 1971
374082df
CC
1972# Test difference between "*(a b)" and "*(a) *(b)" in input section spec.
1973check_PROGRAMS += script_test_12
1974script_test_12: gcctestdir/ld $(srcdir)/script_test_12.t script_test_12a.o script_test_12b.o
1975 $(LINK) -Bgcctestdir/ -Wl,-T,$(srcdir)/script_test_12.t script_test_12a.o script_test_12b.o
1976
1977check_PROGRAMS += script_test_12i
1978script_test_12i: gcctestdir/ld $(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o
1979 $(LINK) -Bgcctestdir/ -Wl,-T,$(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o
a3a0c391
JY
1980script_test_12a.o: script_test_12a.c
1981 $(COMPILE) -O0 -c -o $@ $<
1982script_test_12b.o: script_test_12b.c
1983 $(COMPILE) -O0 -c -o $@ $<
374082df 1984
f224a3c5
IK
1985# Test for SORT_BY_INIT_PRIORITY.
1986check_SCRIPTS += script_test_14.sh
1987check_DATA += script_test_14.stdout
1988MOSTLYCLEANFILES += script_test_14
1989script_test_14.o: script_test_14.s
1990 $(TEST_AS) -o $@ $<
1991script_test_14: $(srcdir)/script_test_14.t script_test_14.o gcctestdir/ld
1992 gcctestdir/ld -o $@ script_test_14.o -T $(srcdir)/script_test_14.t
1993script_test_14.stdout: script_test_14
1994 $(TEST_OBJDUMP) -s script_test_14 > $@
1995
c82fbeee
CS
1996# Test --dynamic-list, --dynamic-list-data, --dynamic-list-cpp-new,
1997# and --dynamic-list-cpp-typeinfo
1998
1999check_SCRIPTS += dynamic_list.sh
2000check_DATA += dynamic_list.stdout
72fef11a 2001MOSTLYCLEANFILES += dynamic_list dynamic_list.stdout
c82fbeee
CS
2002dynamic_list: basic_test.o gcctestdir/ld $(srcdir)/dynamic_list.t
2003 $(CXXLINK) -Bgcctestdir/ basic_test.o \
2004 -Wl,--dynamic-list $(srcdir)/dynamic_list.t \
2005 -Wl,--dynamic-list-data \
2006 -Wl,--dynamic-list-cpp-new \
2007 -Wl,--dynamic-list-cpp-typeinfo
2008dynamic_list.stdout: dynamic_list
94e6ee91 2009 $(TEST_READELF) -W --dyn-syms dynamic_list > dynamic_list.stdout
c82fbeee 2010
fd834e57
CC
2011check_PROGRAMS += dynamic_list_2
2012dynamic_list_2_SOURCES = dynamic_list_2.cc
2013dynamic_list_2_DEPENDENCIES = gcctestdir/ld dynamic_list_lib1.so dynamic_list_lib2.so
2014dynamic_list_2_LDFLAGS = -Bgcctestdir/ -L. -Wl,-R,. -Wl,--no-as-needed
2015dynamic_list_2_LDADD = dynamic_list_lib1.so dynamic_list_lib2.so
2016
2017dynamic_list_lib1.so: gcctestdir/ld dynamic_list_lib1.o
2018 $(CXXLINK) -Bgcctestdir/ -shared dynamic_list_lib1.o
2019dynamic_list_lib1.o: dynamic_list_lib1.cc
2020 $(CXXCOMPILE) -c -fpic -o $@ $<
2021
2022dynamic_list_lib2.so: gcctestdir/ld dynamic_list_lib2.o $(srcdir)/dynamic_list_2.t
e9c1bdad 2023 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-Bsymbolic-functions -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o
fd834e57
CC
2024dynamic_list_lib2.o: dynamic_list_lib2.cc
2025 $(CXXCOMPILE) -c -fpic -o $@ $<
2026
fbd8a257 2027check_PROGRAMS += thin_archive_test_1
72fef11a
CC
2028MOSTLYCLEANFILES += libthin1.a libthin3.a libthinall.a \
2029 alt/thin_archive_test_2.o alt/thin_archive_test_4.o \
2030 alt/libthin2.a alt/libthin4.a
fbd8a257
CC
2031thin_archive_test_1_SOURCES = thin_archive_main.cc
2032thin_archive_test_1_DEPENDENCIES = gcctestdir/ld libthin1.a alt/libthin2.a
2033thin_archive_test_1_LDFLAGS = -Bgcctestdir/ -Lalt
2034thin_archive_test_1_LDADD = libthin1.a -lthin2
2035
2036check_PROGRAMS += thin_archive_test_2
2037thin_archive_test_2_SOURCES = thin_archive_main.cc
2038thin_archive_test_2_DEPENDENCIES = gcctestdir/ld libthinall.a
2039thin_archive_test_2_LDFLAGS = -Bgcctestdir/ -L.
2040thin_archive_test_2_LDADD = -lthinall
2041
2042libthin1.a: thin_archive_test_1.o alt/thin_archive_test_2.o
2043 rm -f $@
2044 $(TEST_AR) crT $@ $^
2045alt/libthin2.a: thin_archive_test_3.o alt/thin_archive_test_4.o
2046 rm -f $@
2047 $(TEST_AR) crT $@ $^
2048libthin3.a: thin_archive_test_1.o alt/thin_archive_test_4.o
2049 rm -f $@
2050 $(TEST_AR) crT $@ $^
2051alt/libthin4.a: alt/thin_archive_test_2.o thin_archive_test_3.o
2052 rm -f $@
2053 $(TEST_AR) crT $@ $^
2054libthinall.a: libthin3.a alt/libthin4.a
2055 rm -f $@
2056 $(TEST_AR) crT $@ $^
2057alt/thin_archive_test_2.o: thin_archive_test_2.cc
2058 test -d alt || mkdir -p alt
2059 $(CXXCOMPILE) -c -o $@ $<
2060alt/thin_archive_test_4.o: thin_archive_test_4.cc
2061 test -d alt || mkdir -p alt
2062 $(CXXCOMPILE) -c -o $@ $<
2063
89fc3421
CC
2064if PLUGINS
2065
2066check_PROGRAMS += plugin_test_1
2067check_SCRIPTS += plugin_test_1.sh
2068check_DATA += plugin_test_1.err
2069MOSTLYCLEANFILES += plugin_test_1.err
2cfbf2fe
CC
2070plugin_test_1: two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms gcctestdir/ld plugin_test.so
2071 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms 2>plugin_test_1.err
89fc3421
CC
2072plugin_test_1.err: plugin_test_1
2073 @touch plugin_test_1.err
2074
2075check_PROGRAMS += plugin_test_2
2076check_SCRIPTS += plugin_test_2.sh
2077check_DATA += plugin_test_2.err
2078MOSTLYCLEANFILES += plugin_test_2.err
2cfbf2fe
CC
2079plugin_test_2: two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_shared_2.so gcctestdir/ld plugin_test.so
2080 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,-R,.,--plugin,"./plugin_test.so" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_shared_2.so 2>plugin_test_2.err
89fc3421
CC
2081plugin_test_2.err: plugin_test_2
2082 @touch plugin_test_2.err
2083
d66a9eb3
CC
2084check_PROGRAMS += plugin_test_3
2085check_SCRIPTS += plugin_test_3.sh
2086check_DATA += plugin_test_3.err
2087MOSTLYCLEANFILES += plugin_test_3.err
2cfbf2fe
CC
2088plugin_test_3: two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms gcctestdir/ld plugin_test.so
2089 $(CXXLINK) -Bgcctestdir/ -Wl,--export-dynamic -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms 2>plugin_test_3.err
d66a9eb3
CC
2090plugin_test_3.err: plugin_test_3
2091 @touch plugin_test_3.err
2092
0f7c0701
CC
2093check_PROGRAMS += plugin_test_4
2094check_SCRIPTS += plugin_test_4.sh
2095check_DATA += plugin_test_4.err
72fef11a 2096MOSTLYCLEANFILES += plugin_test_4.a plugin_test_4.err
0f7c0701
CC
2097plugin_test_4: two_file_test_main.o plugin_test_4.a gcctestdir/ld plugin_test.so
2098 $(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
2099plugin_test_4.err: plugin_test_4
2100 @touch plugin_test_4.err
2101
2cfbf2fe 2102plugin_test_4.a: two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms
0f7c0701
CC
2103 $(TEST_AR) cr $@ $^
2104
24998053 2105check_PROGRAMS += plugin_test_5
2cfbf2fe
CC
2106plugin_test_5: two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms unused.o.syms gcctestdir/ld plugin_test.so
2107 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv",--gc-sections two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms unused.o.syms
24998053 2108
be234d88
CC
2109check_PROGRAMS += plugin_test_6
2110check_SCRIPTS += plugin_test_6.sh
2111check_DATA += plugin_test_6.err
2112MOSTLYCLEANFILES += plugin_test_6.err
2cfbf2fe
CC
2113plugin_test_6: plugin_common_test_1.o.syms plugin_common_test_2.o.syms gcctestdir/ld plugin_test.so
2114 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o.syms 2>plugin_test_6.err
be234d88
CC
2115plugin_test_6.err: plugin_test_6
2116 @touch plugin_test_6.err
2117
5e0f337e
RÁE
2118check_PROGRAMS += plugin_test_7
2119check_SCRIPTS += plugin_test_7.sh
2cfbf2fe 2120check_DATA += plugin_test_7.err plugin_test_7.o.syms
5e0f337e 2121MOSTLYCLEANFILES += plugin_test_7.err
2cfbf2fe
CC
2122plugin_test_7: plugin_test_7_1.o plugin_test_7_1.o.syms plugin_test_7_2.o gcctestdir/ld plugin_test.so
2123 $(LINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--gc-sections,--print-gc-sections plugin_test_7_1.o.syms plugin_test_7_2.o 2>plugin_test_7.err
2124plugin_test_7.o.syms: plugin_test_7
5e0f337e
RÁE
2125 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2126plugin_test_7_1.o: plugin_test_7_1.c
2127 $(COMPILE) -DLTO -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2128plugin_test_7_1_orig.o: plugin_test_7_1.c
2129 $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2cfbf2fe 2130plugin_test_7_1.o.syms: plugin_test_7_1_orig.o
5e0f337e
RÁE
2131 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2132plugin_test_7_2.o: plugin_test_7_2.c
2133 $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2134plugin_test_7.err: plugin_test_7
2135
f3a2388f
CC
2136# Test plugins with -r.
2137check_PROGRAMS += plugin_test_8
2cfbf2fe
CC
2138plugin_test_8.o: two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o ../ld-new plugin_test.so
2139 ../ld-new -r -o $@ --no-demangle --plugin "./plugin_test.so" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o
f3a2388f
CC
2140plugin_test_8: plugin_test_8.o gcctestdir/ld
2141 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle plugin_test_8.o
2142
2143# Test that symbols known in the IR file but not in the replacement file
2144# produce an unresolved symbol error.
2145check_DATA += plugin_test_9.err
2146MOSTLYCLEANFILES += plugin_test_9.err
2cfbf2fe
CC
2147plugin_test_9.err: two_file_test_main.o two_file_test_1c.o.syms two_file_test_2.o.syms gcctestdir/ld plugin_test.so
2148 @echo $(CXXLINK) -Bgcctestdir/ -o plugin_test_9 -Wl,--no-demangle,--plugin,"./plugin_test.so" two_file_test_main.o two_file_test_1c.o.syms two_file_test_2.o.syms "2>$@"
2149 @if $(CXXLINK) -Bgcctestdir/ -o plugin_test_9 -Wl,--no-demangle,--plugin,"./plugin_test.so" two_file_test_main.o two_file_test_1c.o.syms two_file_test_2.o.syms 2>$@; then \
f3a2388f
CC
2150 echo 1>&2 "Link of plugin_test_9 should have failed"; \
2151 rm -f $@; \
2152 exit 1; \
2153 fi
2154# Make a .syms file that claims to define the symbol _Z4t16av.
2cfbf2fe
CC
2155two_file_test_1c.o.syms: two_file_test_1.o.syms two_file_test_1c.o
2156 cp two_file_test_1.o.syms $@.tmp
2157 grep "_Z4t16av" two_file_test_1b.o.syms >> $@.tmp
f3a2388f
CC
2158 mv -f $@.tmp $@
2159# Make a copy of two_file_test_1.o, which does not define the symbol _Z4t16av.
2160MOSTLYCLEANFILES += two_file_test_1c.o
2161two_file_test_1c.o: two_file_test_1.o
2162 cp two_file_test_1.o $@
2163
648c5cbb
CC
2164# As above, but check COMDAT case, where a non-IR file contains a duplicate
2165# of a COMDAT group in an IR file.
2166check_DATA += plugin_test_9b.err
2167MOSTLYCLEANFILES += plugin_test_9b.err
2168plugin_test_9b.err: plugin_test_9b_ir.o.syms plugin_test_9b_ir.o plugin_test_9b_elf.o gcctestdir/ld plugin_test.so
2169 @echo $(CXXLINK) -Bgcctestdir/ -o plugin_test_9b -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_ZN1A5printEv" plugin_test_9b_ir.o plugin_test_9b_elf.o "2>$@"
2170 @if $(CXXLINK) -Bgcctestdir/ -o plugin_test_9b -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_ZN1A5printEv" plugin_test_9b_ir.o plugin_test_9b_elf.o 2>$@; then \
2171 echo 1>&2 "Link of plugin_test_9b should have failed"; \
2172 rm -f $@; \
2173 exit 1; \
2174 fi
2175# Make a .syms file that claims to define a method in class A in a COMDAT group.
2176# The real plugin_test_9b_ir.o will be compiled without the -D, and will not
2177# define any methods in class A.
2178plugin_test_9b_ir.o.syms: plugin_test_9b_ir_witha.o
2179 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2180plugin_test_9b_ir_witha.o: plugin_test_9b_ir.cc
2181 $(CXXCOMPILE) -c -DUSE_CLASS_A -o $@ $<
2182
c0c71592
RÁE
2183check_PROGRAMS += plugin_test_10
2184check_SCRIPTS += plugin_test_10.sh
2185check_DATA += plugin_test_10.sections
2186MOSTLYCLEANFILES += plugin_test_10.sections
2cfbf2fe
CC
2187plugin_test_10: plugin_common_test_1.o.syms plugin_common_test_2.o gcctestdir/ld plugin_test.so
2188 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o
c0c71592
RÁE
2189plugin_test_10.sections: plugin_test_10
2190 $(TEST_READELF) -SW $< >$@ 2>/dev/null
2191
2cfbf2fe
CC
2192check_PROGRAMS += plugin_test_11
2193check_SCRIPTS += plugin_test_11.sh
2194check_DATA += plugin_test_11.err
dddcc5b9 2195MOSTLYCLEANFILES += plugin_test_11.err plugin_test_thin.a
2cfbf2fe
CC
2196PLUGIN_TEST_11_SYMS = two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms
2197plugin_test_11: two_file_test_main.o plugin_test_thin.a gcctestdir/ld plugin_test.so $(PLUGIN_TEST_11_SYMS)
2198 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o plugin_test_thin.a 2>plugin_test_11.err
2199plugin_test_11.err: plugin_test_11
2200 @touch plugin_test_11.err
2201plugin_test_thin.a: two_file_test_1.o two_file_test_1b.o two_file_test_2.o
2202 rm -f $@
2203 $(TEST_AR) crT $@ $^
c0c71592 2204
95ecdfbf
ES
2205
2206check_PROGRAMS += plugin_test_start_lib
2207check_SCRIPTS += plugin_test_start_lib.sh
2208check_DATA += plugin_test_start_lib.err
2209MOSTLYCLEANFILES += plugin_test_start_lib.err
2210plugin_test_start_lib: unused.o plugin_start_lib_test.o plugin_start_lib_test_2.syms gcctestdir/ld plugin_test.so
2211 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_start_lib_test.o \
2212 -Wl,--start-lib plugin_start_lib_test_2.syms -Wl,--end-lib 2>plugin_test_start_lib.err
2213plugin_test_start_lib.err: plugin_test_start_lib
2214 @touch plugin_test_start_lib.err
2215
2216
2217plugin_start_lib_test_2.syms: plugin_start_lib_test_2.o
2218 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2219
2220
89fc3421
CC
2221plugin_test.so: plugin_test.o
2222 $(LINK) -Bgcctestdir/ -shared plugin_test.o
2223plugin_test.o: plugin_test.c
2224 $(COMPILE) -O0 -c -fpic -o $@ $<
2225
2cfbf2fe 2226two_file_test_main.o.syms: two_file_test_main.o
89fc3421 2227 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2cfbf2fe 2228two_file_test_1.o.syms: two_file_test_1.o
89fc3421 2229 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2cfbf2fe 2230two_file_test_1b.o.syms: two_file_test_1b.o
89fc3421 2231 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2cfbf2fe 2232two_file_test_2.o.syms: two_file_test_2.o
89fc3421 2233 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2cfbf2fe 2234plugin_common_test_1.o.syms: plugin_common_test_1.o
be234d88 2235 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2cfbf2fe 2236plugin_common_test_2.o.syms: plugin_common_test_2.o
be234d88 2237 $(TEST_READELF) -sW $< >$@ 2>/dev/null
24998053 2238
2cfbf2fe 2239empty.o.syms:
24998053
CC
2240 @echo "" >$@
2241 @echo "Symbol table" >>$@
2242
32364e50
CC
2243if TLS
2244
2245check_PROGRAMS += plugin_test_tls
2246check_SCRIPTS += plugin_test_tls.sh
2247check_DATA += plugin_test_tls.err
2248MOSTLYCLEANFILES += plugin_test_tls.err
2cfbf2fe
CC
2249plugin_test_tls: two_file_test_tls.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2_tls.o.syms gcctestdir/ld plugin_test.so
2250 $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_tls.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2_tls.o.syms 2>plugin_test_tls.err
32364e50
CC
2251plugin_test_tls.err: plugin_test_tls
2252 @touch plugin_test_tls.err
2253
2cfbf2fe 2254two_file_test_2_tls.o.syms: two_file_test_2_tls.o
32364e50
CC
2255 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2256
2257endif TLS
2258
24998053 2259MOSTLYCLEANFILES += unused.c
2cfbf2fe 2260unused.o.syms: unused.o
24998053
CC
2261 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2262 @echo " 1: 00000000 4 FUNC GLOBAL DEFAULT 1 UNUSED" >>$@
2263unused.o: unused.c
2264 $(COMPILE) -c -o $@ $<
2265unused.c:
2266 @cp /dev/null $@
89fc3421 2267
f0558624 2268check_SCRIPTS += plugin_final_layout.sh
16164a6b 2269check_DATA += plugin_final_layout.stdout plugin_final_layout_readelf.stdout
0ec6429b 2270MOSTLYCLEANFILES += plugin_final_layout
f0558624
ST
2271plugin_final_layout.o: plugin_final_layout.cc
2272 $(CXXCOMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
2273plugin_final_layout: plugin_final_layout.o plugin_section_order.so gcctestdir/ld
2274 $(CXXLINK) -Bgcctestdir/ -Wl,--plugin,"./plugin_section_order.so" plugin_final_layout.o
2275plugin_final_layout.stdout: plugin_final_layout
864a1b56 2276 $(TEST_NM) -n --synthetic plugin_final_layout > plugin_final_layout.stdout
16164a6b
ST
2277plugin_final_layout_readelf.stdout: plugin_final_layout
2278 $(TEST_READELF) -Wl plugin_final_layout > plugin_final_layout_readelf.stdout
f0558624
ST
2279
2280plugin_section_order.so: plugin_section_order.o
2281 $(LINK) -Bgcctestdir/ -shared plugin_section_order.o
2282plugin_section_order.o: plugin_section_order.c
2283 $(COMPILE) -O0 -c -fpic -o $@ $<
2284
82838bd6
CC
2285check_SCRIPTS += plugin_layout_with_alignment.sh
2286check_DATA += plugin_layout_with_alignment.stdout
2287MOSTLYCLEANFILES += plugin_layout_with_alignment
fd91f002
L
2288plugin_layout_with_alignment.o: plugin_layout_with_alignment.c
2289 $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
82838bd6 2290plugin_layout_with_alignment: plugin_layout_with_alignment.o plugin_section_alignment.so gcctestdir/ld
fd91f002 2291 $(LINK) -Bgcctestdir/ -Wl,--plugin,"./plugin_section_alignment.so" plugin_layout_with_alignment.o
82838bd6
CC
2292plugin_layout_with_alignment.stdout: plugin_layout_with_alignment
2293 $(TEST_NM) -n --synthetic plugin_layout_with_alignment > plugin_layout_with_alignment.stdout
2294
2295plugin_section_alignment.so: plugin_section_alignment.o
2296 $(CXXLINK) -Bgcctestdir/ -shared plugin_section_alignment.o
2297plugin_section_alignment.o: plugin_section_alignment.cc
2298 $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
2299
89fc3421
CC
2300endif PLUGINS
2301
65514900
CC
2302check_PROGRAMS += exclude_libs_test
2303check_SCRIPTS += exclude_libs_test.sh
2304check_DATA += exclude_libs_test.syms
2305MOSTLYCLEANFILES += exclude_libs_test.syms libexclude_libs_test_1.a \
2fdd743f 2306 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
65514900
CC
2307exclude_libs_test_SOURCES = exclude_libs_test.c
2308exclude_libs_test_DEPENDENCIES = gcctestdir/ld libexclude_libs_test_1.a \
2fdd743f
DK
2309 libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
2310exclude_libs_test_LDFLAGS = -Bgcctestdir/ -L. -Lalt \
2311 -Wl,--exclude-libs,dummy:libexclude_libs_test_1 \
2312 -Wl,--exclude-libs,libexclude_libs_test_3
2313exclude_libs_test_LDADD = -lexclude_libs_test_1 -lexclude_libs_test_2 \
2314 alt/libexclude_libs_test_3.a
65514900
CC
2315exclude_libs_test.syms: exclude_libs_test
2316 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2317libexclude_libs_test_1.a: exclude_libs_test_1.o
2318 $(TEST_AR) rc $@ $^
2319libexclude_libs_test_2.a: exclude_libs_test_2.o
2320 $(TEST_AR) rc $@ $^
2fdd743f
DK
2321alt/libexclude_libs_test_3.a: exclude_libs_test_3.o
2322 test -d alt || mkdir -p alt
2323 $(TEST_AR) rc $@ $^
65514900 2324
805bb01c
DK
2325check_PROGRAMS += local_labels_test
2326local_labels_test.o: ver_test_6.c
2327 $(COMPILE) -g -c -Wa,-L -o $@ $<
2328local_labels_test: local_labels_test.o
2329 $(LINK) -Bgcctestdir/ local_labels_test.o
2330
bb04269c
DK
2331check_PROGRAMS += discard_locals_test
2332check_SCRIPTS += discard_locals_test.sh
d3bbad62
ILT
2333check_DATA += discard_locals_test.syms \
2334 discard_locals_relocatable_test1.syms \
2335 discard_locals_relocatable_test2.syms
2336MOSTLYCLEANFILES += discard_locals_test.syms \
2337 discard_locals_relocatable_test1.syms \
2338 discard_locals_relocatable_test2.syms \
2339 discard_locals_relocatable_test1.out \
2340 discard_locals_relocatable_test2.out
bb04269c
DK
2341discard_locals_test_SOURCES = discard_locals_test.c
2342discard_locals_test_LDFLAGS = -Bgcctestdir/ -Wl,--discard-locals
2343discard_locals_test.syms: discard_locals_test
2344 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2345# '-Wa,-L' is required to preserve the local label used for testing.
2346discard_locals_test.o: discard_locals_test.c
2347 $(COMPILE) -c -Wa,-L -o $@ $<
2348
d3bbad62
ILT
2349discard_locals_relocatable_test1.syms: discard_locals_relocatable_test1.out
2350 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2351discard_locals_relocatable_test.o: discard_locals_relocatable_test.c
2352 $(COMPILE) -c -Wa,-L -fPIC -o $@ $<
2353discard_locals_relocatable_test1.out: discard_locals_relocatable_test.o ../ld-new
2354 ../ld-new --discard-locals -relocatable -o $@ $<
2355
2356discard_locals_relocatable_test2.syms: discard_locals_relocatable_test2.out
2357 $(TEST_READELF) -sW $< >$@ 2>/dev/null
2358discard_locals_relocatable_test2.out: discard_locals_relocatable_test.o ../ld-new
2359 ../ld-new --discard-all -relocatable -o $@ $<
2360
8a5e3e08
ILT
2361if MCMODEL_MEDIUM
2362check_PROGRAMS += large
2363large_SOURCES = large.c
2364large_CFLAGS = -mcmodel=medium
2365large_DEPENDENCIES = gcctestdir/ld
2366large_LDFLAGS = -Bgcctestdir/
1abce4a6 2367large_LDADD =
8a5e3e08
ILT
2368endif MCMODEL_MEDIUM
2369
645afe0c
CC
2370# Test that hidden and internal symbols in the main program cannot be
2371# referenced by a shared library.
2372check_SCRIPTS += hidden_test.sh
2373check_DATA += hidden_test.err
c20ceeb2 2374MOSTLYCLEANFILES += hidden_test hidden_test.err hidden_test.syms
645afe0c
CC
2375libhidden.so: hidden_test_1.c gcctestdir/ld
2376 $(COMPILE) -Bgcctestdir/ -g -shared -fPIC -w -o $@ $(srcdir)/hidden_test_1.c
2377hidden_test: hidden_test_main.o libhidden.so gcctestdir/ld
2378 $(LINK) -Bgcctestdir/ -Wl,-R,. hidden_test_main.o libhidden.so 2>hidden_test.err
c20ceeb2
YW
2379hidden_test.syms: hidden_test
2380 $(TEST_NM) -D hidden_test > $@
645afe0c
CC
2381hidden_test.err: hidden_test
2382 @touch hidden_test.err
2383
8c604651
CS
2384# Test -retain-symbols-file.
2385check_SCRIPTS += retain_symbols_file_test.sh
2386check_DATA += retain_symbols_file_test.stdout
2387MOSTLYCLEANFILES += retain_symbols_file_test retain_symbols_file_test.in \
2388 retain_symbols_file_test.stdout
2389retain_symbols_file_test.so: basic_pic_test.o gcctestdir/ld
2390 echo 'main' > retain_symbols_file_test.in
2391 echo 't1' >> retain_symbols_file_test.in
8c604651
CS
2392 echo '_ZNK4t20a3getEv' >> retain_symbols_file_test.in
2393 echo '_Z3t18v' >> retain_symbols_file_test.in
2b64b551 2394 echo '__tcf_0' >> retain_symbols_file_test.in
8c604651
CS
2395 $(CXXLINK) -Bgcctestdir/ -shared -Wl,-retain-symbols-file,retain_symbols_file_test.in basic_pic_test.o
2396retain_symbols_file_test.stdout: retain_symbols_file_test.so
2397 $(TEST_NM) -C retain_symbols_file_test.so > $@
2398
2399
6a89f575
CC
2400# Test that if the output file already exists and is empty,
2401# it will get execute permission.
2402check_PROGRAMS += permission_test
2403permission_test: basic_test.o gcctestdir/ld
2404 umask 022; \
2405 rm -f $@; \
2406 touch $@; \
2407 chmod 600 $@; \
2408 $(CXXLINK) -Bgcctestdir/ basic_test.o
2409
ae3b5189
CD
2410# Check -l:foo.a
2411check_PROGRAMS += searched_file_test
2412MOSTLYCLEANFILES += searched_file_test searched_file_test_lib.o \
2413 alt/searched_file_test_lib.a
2414searched_file_test_SOURCES = searched_file_test.cc
2415searched_file_test_DEPENDENCIES = alt/searched_file_test_lib.a
2416searched_file_test_LDFLAGS = -Bgcctestdir/ -Lalt
2417searched_file_test_LDADD = -l:searched_file_test_lib.a
2418searched_file_test_lib.o: searched_file_test_lib.cc
2419 $(CXXCOMPILE) -c -o $@ $<
2420alt/searched_file_test_lib.a: searched_file_test_lib.o
2421 test -d alt || mkdir -p alt
2422 $(TEST_AR) rc $@ $^
2423
2b64b551 2424# Test that no .gnu.version sections are created when
c5617f2f
DK
2425# symbol versioning is not used.
2426check_SCRIPTS += no_version_test.sh
2427check_DATA += no_version_test.stdout
2428MOSTLYCLEANFILES += libno_version_test.so no_version_test.stdout
2429# We invoke the linker directly since gcc may include additional objects that
2430# uses symbol versioning.
2431libno_version_test.so: no_version_test.o gcctestdir/ld
2432 gcctestdir/ld -shared -o $@ no_version_test.o
2433no_version_test.o: no_version_test.c
2434 $(COMPILE) -o $@ -c -fPIC $<
2435no_version_test.stdout: libno_version_test.so
2436 $(TEST_OBJDUMP) -h $< > $@
2437
7223e9ca
ILT
2438# Test STT_GNU_IFUNC symbols.
2439if IFUNC
2440
2441ifuncmod1.o: ifuncmod1.c
661d7a80 2442 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2443ifuncmod1.so: ifuncmod1.o gcctestdir/ld
2444 $(LINK) -Bgcctestdir/ -shared ifuncmod1.o
2445
2446ifuncdep1.o: ifuncmod1.c
2447 $(COMPILE) -c -o $@ $<
2448
2449ifuncmain1pic.o: ifuncmain1.c
661d7a80 2450 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca 2451ifuncmain1pie.o: ifuncmain1.c
661d7a80 2452 $(COMPILE) -c -fPIE -o $@ $<
7223e9ca 2453
328c7c2f 2454if HAVE_STATIC
ebb300b2 2455if IFUNC_STATIC
7223e9ca
ILT
2456check_PROGRAMS += ifuncmain1static
2457ifuncmain1static_SOURCES = ifuncmain1.c
2458ifuncmain1static_DEPENDENCIES = gcctestdir/ld ifuncdep1.o
2459ifuncmain1static_LDFLAGS = -Bgcctestdir/ -static
2460ifuncmain1static_LDADD = ifuncdep1.o
2461
2462check_PROGRAMS += ifuncmain1picstatic
2463ifuncmain1picstatic: ifuncmain1pic.o ifuncmod1.o gcctestdir/ld
2464 $(LINK) -Bgcctestdir/ -static ifuncmain1pic.o ifuncmod1.o
328c7c2f 2465endif
ebb300b2 2466endif
7223e9ca
ILT
2467
2468check_PROGRAMS += ifuncmain1
2469ifuncmain1_SOURCES = ifuncmain1.c
2470ifuncmain1_DEPENDENCIES = gcctestdir/ld ifuncmod1.so
2471ifuncmain1_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
2472ifuncmain1_LDADD = ifuncmod1.so
2473
2474check_PROGRAMS += ifuncmain1pic
2475ifuncmain1pic: ifuncmain1pic.o ifuncmod1.so gcctestdir/ld
2476 $(LINK) -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
2477
2478check_PROGRAMS += ifuncmain1vis
2479ifuncmain1vis_SOURCES = ifuncmain1vis.c
2480ifuncmain1vis_DEPENDENCIES = gcctestdir/ld ifuncmod1.so
2481ifuncmain1vis_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
2482ifuncmain1vis_LDADD = ifuncmod1.so
2483
2484check_PROGRAMS += ifuncmain1vispic
2485ifuncmain1vispic.o: ifuncmain1vis.c
661d7a80 2486 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2487ifuncmain1vispic: ifuncmain1vispic.o ifuncmod1.so gcctestdir/ld
2488 $(LINK) -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
2489
2490check_PROGRAMS += ifuncmain1staticpic
2491ifuncmain1staticpic: ifuncmain1pic.o ifuncmod1.o gcctestdir/ld
2492 $(LINK) -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.o
2493
2494check_PROGRAMS += ifuncmain1pie
2495ifuncmain1pie: ifuncmain1pie.o ifuncmod1.so gcctestdir/ld
2496 $(LINK) -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.so -Wl,-R,.
2497
2498check_PROGRAMS += ifuncmain1vispie
2499ifuncmain1vispie.o: ifuncmain1vis.c
661d7a80 2500 $(COMPILE) -c -fPIE -o $@ $<
7223e9ca
ILT
2501ifuncmain1vispie: ifuncmain1vispie.o ifuncmod1.so gcctestdir/ld
2502 $(LINK) -Bgcctestdir/ -pie ifuncmain1vispie.o ifuncmod1.so -Wl,-R,.
2503
2504check_PROGRAMS += ifuncmain1staticpie
2505ifuncmain1staticpie: ifuncmain1pie.o ifuncmod1.o gcctestdir/ld
2506 $(LINK) -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.o
2507
2508ifuncmain2pic.o: ifuncmain2.c
661d7a80 2509 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2510
2511ifuncdep2pic.o: ifuncdep2.c
661d7a80 2512 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca 2513
328c7c2f 2514if HAVE_STATIC
ebb300b2 2515if IFUNC_STATIC
7223e9ca
ILT
2516check_PROGRAMS += ifuncmain2static
2517ifuncmain2static_SOURCES = ifuncmain2.c ifuncdep2.c
2518ifuncmain2static_DEPENDENCIES = gcctestdir/ld
2519ifuncmain2static_LDFLAGS = -Bgcctestdir/ -static
f8e9a930 2520ifuncmain2static_LDADD =
7223e9ca
ILT
2521
2522check_PROGRAMS += ifuncmain2picstatic
2523ifuncmain2picstatic: ifuncmain2pic.o ifuncdep2pic.o gcctestdir/ld
2524 $(LINK) -Bgcctestdir/ -static ifuncmain2pic.o ifuncdep2pic.o
328c7c2f 2525endif
ebb300b2 2526endif
7223e9ca
ILT
2527
2528check_PROGRAMS += ifuncmain2
2529ifuncmain2_SOURCES = ifuncmain2.c ifuncdep2.c
2530ifuncmain2_DEPENDENCIES = gcctestdir/ld
2531ifuncmain2_LDFLAGS = -Bgcctestdir/
f8e9a930 2532ifuncmain2_LDADD =
7223e9ca
ILT
2533
2534check_PROGRAMS += ifuncmain2pic
2535ifuncmain2pic: ifuncmain2pic.o ifuncdep2pic.o gcctestdir/ld
2536 $(LINK) -Bgcctestdir/ ifuncmain2pic.o ifuncdep2pic.o
2537
2538ifuncmod3.o: ifuncmod3.c
661d7a80 2539 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2540ifuncmod3.so: ifuncmod3.o gcctestdir/ld
2541 $(LINK) -Bgcctestdir/ -shared ifuncmod3.o
2542
2543check_PROGRAMS += ifuncmain3
2544ifuncmain3_SOURCES = ifuncmain3.c
2545ifuncmain3_DEPENDENCIES = gcctestdir/ld ifuncmod3.so
2546ifuncmain3_LDFLAGS = -Bgcctestdir/ -Wl,--export-dynamic -Wl,-R,.
2547ifuncmain3_LDADD = -ldl
2548
2549ifuncmain4pic.o: ifuncmain4.c
661d7a80 2550 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca 2551
328c7c2f 2552if HAVE_STATIC
ebb300b2 2553if IFUNC_STATIC
7223e9ca
ILT
2554check_PROGRAMS += ifuncmain4static
2555ifuncmain4static_SOURCES = ifuncmain4.c
2556ifuncmain4static_DEPENDENCIES = gcctestdir/ld
2557ifuncmain4static_LDFLAGS = -Bgcctestdir/ -static
f8e9a930 2558ifuncmain4static_LDADD =
7223e9ca
ILT
2559
2560check_PROGRAMS += ifuncmain4picstatic
2561ifuncmain4picstatic: ifuncmain4pic.o gcctestdir/ld
2562 $(LINK) -Bgcctestdir/ -static ifuncmain4pic.o
328c7c2f 2563endif
ebb300b2 2564endif
7223e9ca
ILT
2565
2566check_PROGRAMS += ifuncmain4
2567ifuncmain4_SOURCES = ifuncmain4.c
2568ifuncmain4_DEPENDENCIES = gcctestdir/ld
2569ifuncmain4_LDFLAGS = -Bgcctestdir/
f8e9a930 2570ifuncmain4_LDADD =
7223e9ca
ILT
2571
2572ifuncmain5pic.o: ifuncmain5.c
661d7a80 2573 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2574
2575ifuncmain5pie.o: ifuncmain5.c
661d7a80 2576 $(COMPILE) -c -fPIE -o $@ $<
7223e9ca
ILT
2577
2578ifuncmod5.o: ifuncmod5.c
661d7a80 2579 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2580ifuncmod5.so: ifuncmod5.o gcctestdir/ld
2581 $(LINK) -Bgcctestdir/ -shared ifuncmod5.o
2582
2583ifuncdep5.o: ifuncmod5.c
2584 $(COMPILE) -c -o $@ $<
2585
328c7c2f 2586if HAVE_STATIC
ebb300b2 2587if IFUNC_STATIC
7223e9ca
ILT
2588check_PROGRAMS += ifuncmain5static
2589ifuncmain5static_SOURCES = ifuncmain5.c
2590ifuncmain5static_DEPENDENCIES = gcctestdir/ld ifuncdep5.o
2591ifuncmain5static_LDFLAGS = -Bgcctestdir/ -static
2592ifuncmain5static_LDADD = ifuncdep5.o
2593
2594check_PROGRAMS += ifuncmain5picstatic
2595ifuncmain5picstatic: ifuncmain5pic.o ifuncmod5.o gcctestdir/ld
2596 $(LINK) -Bgcctestdir/ -static ifuncmain5pic.o ifuncmod5.o
328c7c2f 2597endif
ebb300b2 2598endif
7223e9ca
ILT
2599
2600check_PROGRAMS += ifuncmain5
2601ifuncmain5_SOURCES = ifuncmain5.c
2602ifuncmain5_DEPENDENCIES = gcctestdir/ld ifuncmod5.so
2603ifuncmain5_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
2604ifuncmain5_LDADD = ifuncmod5.so
2605
2606check_PROGRAMS += ifuncmain5pic
2607ifuncmain5pic: ifuncmain5pic.o ifuncmod5.so gcctestdir/ld
2608 $(LINK) -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.so -Wl,-R,.
2609
2610check_PROGRAMS += ifuncmain5staticpic
2611ifuncmain5staticpic: ifuncmain5pic.o ifuncmod5.o gcctestdir/ld
2612 $(LINK) -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.o
2613
2614check_PROGRAMS += ifuncmain5pie
2615ifuncmain5pie: ifuncmain5pie.o ifuncmod5.so gcctestdir/ld
2616 $(LINK) -Bgcctestdir/ -pie ifuncmain5pie.o ifuncmod5.so -Wl,-R,.
2617
2618ifuncmain6pie.o: ifuncmain6pie.c
661d7a80 2619 $(COMPILE) -c -fPIE -o $@ $<
7223e9ca
ILT
2620
2621ifuncmod6.o: ifuncmod6.c
661d7a80 2622 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2623ifuncmod6.so: ifuncmod6.o gcctestdir/ld
2624 $(LINK) -Bgcctestdir/ -shared ifuncmod6.o
2625
2626check_PROGRAMS += ifuncmain6pie
2627ifuncmain6pie: ifuncmain6pie.o ifuncmod6.so gcctestdir/ld
2628 $(LINK) -Bgcctestdir/ -pie ifuncmain6pie.o ifuncmod6.so -Wl,-R,.
2629
2630ifuncmain7pic.o: ifuncmain7.c
661d7a80 2631 $(COMPILE) -c -fPIC -o $@ $<
7223e9ca
ILT
2632
2633ifuncmain7pie.o: ifuncmain7.c
661d7a80 2634 $(COMPILE) -c -fPIE -o $@ $<
7223e9ca 2635
328c7c2f 2636if HAVE_STATIC
ebb300b2 2637if IFUNC_STATIC
7223e9ca
ILT
2638check_PROGRAMS += ifuncmain7static
2639ifuncmain7static_SOURCES = ifuncmain7.c
2640ifuncmain7static_DEPENDENCIES = gcctestdir/ld
2641ifuncmain7static_LDFLAGS = -Bgcctestdir/ -static
f8e9a930 2642ifuncmain7static_LDADD =
7223e9ca
ILT
2643
2644check_PROGRAMS += ifuncmain7picstatic
2645ifuncmain7picstatic: ifuncmain7pic.o gcctestdir/ld
2646 $(LINK) -Bgcctestdir/ -static ifuncmain7pic.o
328c7c2f 2647endif
ebb300b2 2648endif
7223e9ca
ILT
2649
2650check_PROGRAMS += ifuncmain7
2651ifuncmain7_SOURCES = ifuncmain7.c
2652ifuncmain7_DEPENDENCIES = gcctestdir/ld
2653ifuncmain7_LDFLAGS = -Bgcctestdir/
f8e9a930 2654ifuncmain7_LDADD =
7223e9ca
ILT
2655
2656check_PROGRAMS += ifuncmain7pic
2657ifuncmain7pic: ifuncmain7pic.o gcctestdir/ld
2658 $(LINK) -Bgcctestdir/ ifuncmain7pic.o
2659
2660check_PROGRAMS += ifuncmain7pie
2661ifuncmain7pie: ifuncmain7pie.o gcctestdir/ld
2662 $(LINK) -Bgcctestdir/ -pie ifuncmain7pie.o
2663
67181c72
ILT
2664check_PROGRAMS += ifuncvar
2665ifuncvar1_pic.o: ifuncvar1.c
661d7a80 2666 $(COMPILE) -c -fPIC -o $@ $<
2b64b551 2667ifuncvar2_pic.o: ifuncvar2.c
661d7a80 2668 $(COMPILE) -c -fPIC -o $@ $<
67181c72
ILT
2669ifuncvar.so: ifuncvar1_pic.o ifuncvar2_pic.o gcctestdir/ld
2670 $(LINK) -Bgcctestdir/ -shared ifuncvar1_pic.o ifuncvar2_pic.o
2671ifuncvar_SOURCES = ifuncvar3.c
2672ifuncvar_DEPENDENCIES = gcctestdir/ld ifuncvar.so
2673ifuncvar_LDFLAGS = -Bgcctestdir/ -Wl,-R,.
2674ifuncvar_LDADD = ifuncvar.so
2675
7223e9ca
ILT
2676endif IFUNC
2677
74f67560
DK
2678# Test that strong reference to a weak symbol in a DSO remains strong.
2679check_SCRIPTS += strong_ref_weak_def.sh
2680check_DATA += strong_ref_weak_def.stdout
2681MOSTLYCLEANFILES += strong_ref_weak_def_1.so strong_ref_weak_def_2.so \
2682 strong_ref_weak_def.stdout
2683strong_ref_weak_def_2.o: strong_ref_weak_def_2.c
2684 $(COMPILE) -o $@ -c -fPIC $<
2685strong_ref_weak_def_2.so: strong_ref_weak_def_2.o gcctestdir/ld
2686 gcctestdir/ld -shared -o $@ strong_ref_weak_def_2.o
2687strong_ref_weak_def_1.o: strong_ref_weak_def_1.c
2688 $(COMPILE) -o $@ -c -fPIC $<
2689strong_ref_weak_def_1.so: strong_ref_weak_def_1.o strong_ref_weak_def_2.so \
2690 gcctestdir/ld
2691 gcctestdir/ld -shared -o $@ strong_ref_weak_def_1.o \
2692 strong_ref_weak_def_2.so
2693strong_ref_weak_def.stdout: strong_ref_weak_def_1.so
2694 $(TEST_READELF) -sWD $< > $@
2695
a4649286
DK
2696# Test that a strong weak reference remains strong if there is another
2697# weak reference in a DSO.
2698check_SCRIPTS += dyn_weak_ref.sh
2699check_DATA += dyn_weak_ref.stdout
2700MOSTLYCLEANFILES += dyn_weak_ref_1.so dyn_weak_ref_2.so \
2701 dyn_weak_ref.stdout
2702dyn_weak_ref_2.o: dyn_weak_ref_2.c
2703 $(COMPILE) -o $@ -c -fPIC $<
2704dyn_weak_ref_2.so: dyn_weak_ref_2.o gcctestdir/ld
2705 gcctestdir/ld -shared -o $@ dyn_weak_ref_2.o
2706dyn_weak_ref_1.o: dyn_weak_ref_1.c
2707 $(COMPILE) -o $@ -c -fPIC $<
2708# We intentionally put dyn_weak_ref_2.so in front of dyn_weak_ref_1.o
2709# so that the weak ref there goes to gold's symbol table first.
2710dyn_weak_ref_1.so: dyn_weak_ref_1.o dyn_weak_ref_2.so gcctestdir/ld
2711 gcctestdir/ld -shared -o $@ dyn_weak_ref_2.so dyn_weak_ref_1.o
2712dyn_weak_ref.stdout: dyn_weak_ref_1.so
2713 $(TEST_READELF) -sWD $< > $@
2714
2715
97b4be1c
CC
2716# Test that --start-lib and --end-lib function correctly.
2717check_PROGRAMS += start_lib_test
0ec6429b 2718MOSTLYCLEANFILES += libstart_lib_test.a
97b4be1c
CC
2719start_lib_test: start_lib_test_main.o libstart_lib_test.a start_lib_test_2.o start_lib_test_3.o \
2720 gcctestdir/ld
2721 $(LINK) -Bgcctestdir/ -o $@ start_lib_test_main.o -L. -lstart_lib_test \
2722 -Wl,--start-lib start_lib_test_2.o start_lib_test_3.o -Wl,--end-lib
2723libstart_lib_test.a: start_lib_test_1.o
2724 $(TEST_AR) rc $@ $^
2725
7f8cd844
NC
2726# Test that MEMORY region support works.
2727check_SCRIPTS += memory_test.sh
2728check_DATA += memory_test.stdout
2729MOSTLYCLEANFILES += memory_test.stdout memory_test memory_test.o
d4d91489
ILT
2730memory_test.o: memory_test.s
2731 $(COMPILE) -o $@ -c $<
2732memory_test: memory_test.o gcctestdir/ld $(srcdir)/memory_test.t
1496b446 2733 $(LINK) -Bgcctestdir/ -nostartfiles -nostdlib -z max-page-size=0x1000 -z common-page-size=0x1000 -Wl,-T,$(srcdir)/memory_test.t -o $@ memory_test.o
7f8cd844 2734memory_test.stdout: memory_test
41a8542a 2735 $(TEST_READELF) -lWS $< > $@
7f8cd844 2736
410da591
CC
2737# Test INCLUDE directives in linker scripts.
2738# The binary isn't runnable, so we just check that we can build it without errors.
2739check_DATA += memory_test_2
0863441e 2740MOSTLYCLEANFILES += memory_test_inc_1.t memory_test_inc_2.t memory_test_inc_3.t memory_test_2
410da591
CC
2741memory_test_inc_1.t: $(srcdir)/memory_test_inc_1.t.src
2742 cp $< $@
2743memory_test_inc_2.t: $(srcdir)/memory_test_inc_2.t.src
2744 cp $< $@
2745memory_test_inc_3.t: $(srcdir)/memory_test_inc_3.t.src
2746 cp $< $@
2747memory_test_2: memory_test.o gcctestdir/ld $(srcdir)/memory_test.t memory_test_inc_1.t memory_test_inc_2.t memory_test_inc_3.t
2748 $(LINK) -Bgcctestdir/ -nostartfiles -nostdlib -z max-page-size=0x1000 -z common-page-size=0x1000 -Wl,-T,$(srcdir)/memory_test.t -o $@ memory_test.o
2749
f1415016
CC
2750if HAVE_PUBNAMES
2751
2752# Test that --gdb-index functions correctly without gcc-generated pubnames.
c1027032
CC
2753check_SCRIPTS += gdb_index_test_1.sh
2754check_DATA += gdb_index_test_1.stdout
2755MOSTLYCLEANFILES += gdb_index_test_1.stdout gdb_index_test_1
2756gdb_index_test.o: gdb_index_test.cc
f1415016 2757 $(CXXCOMPILE) -O0 -g -gno-pubnames -c -o $@ $<
c1027032
CC
2758gdb_index_test_1: gdb_index_test.o gcctestdir/ld
2759 $(CXXLINK) -Bgcctestdir/ -Wl,--gdb-index $<
2760gdb_index_test_1.stdout: gdb_index_test_1
2761 $(TEST_READELF) --debug-dump=gdb_index $< > $@
2762
f1415016 2763# Test that --gdb-index functions correctly with compressed debug sections.
c1027032
CC
2764check_SCRIPTS += gdb_index_test_2.sh
2765check_DATA += gdb_index_test_2.stdout
0863441e 2766MOSTLYCLEANFILES += gdb_index_test_2.stdout gdb_index_test_2 gdb_index_test_2_gabi
c1027032
CC
2767gdb_index_test_cdebug.o: gdb_index_test.cc
2768 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -o $@ $<
2769gdb_index_test_2: gdb_index_test_cdebug.o gcctestdir/ld
2770 $(CXXLINK) -Bgcctestdir/ -Wl,--gdb-index $<
2771gdb_index_test_2.stdout: gdb_index_test_2
2772 $(TEST_READELF) --debug-dump=gdb_index $< > $@
48058663
L
2773check_SCRIPTS += gdb_index_test_2_gabi.sh
2774check_DATA += gdb_index_test_2_gabi.stdout
2775MOSTLYCLEANFILES += gdb_index_test_2.stdout gdb_index_test_2
2776gdb_index_test_cdebug_gabi.o: gdb_index_test.cc
2777 $(CXXCOMPILE) -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -o $@ $<
2778gdb_index_test_2_gabi: gdb_index_test_cdebug_gabi.o gcctestdir/ld
2779 $(CXXLINK) -Bgcctestdir/ -Wl,--gdb-index $<
2780gdb_index_test_2_gabi.stdout: gdb_index_test_2_gabi
2781 $(TEST_READELF) --debug-dump=gdb_index $< > $@
c1027032 2782
f1415016 2783# Another simple C test (DW_AT_high_pc encoding) for --gdb-index.
57923f48
MW
2784check_SCRIPTS += gdb_index_test_3.sh
2785check_DATA += gdb_index_test_3.stdout
2786MOSTLYCLEANFILES += gdb_index_test_3.stdout gdb_index_test_3
2787gdb_index_test_3.o: gdb_index_test_3.c
2788 $(COMPILE) -O0 -g -c -o $@ $<
2789gdb_index_test_3: gdb_index_test_3.o gcctestdir/ld
2790 $(LINK) -Bgcctestdir/ -Wl,--gdb-index,--fatal-warnings $<
2791gdb_index_test_3.stdout: gdb_index_test_3
2792 $(TEST_READELF) --debug-dump=gdb_index $< > $@
2793
f1415016
CC
2794# Test that --gdb-index functions correctly with gcc-generated pubnames.
2795check_SCRIPTS += gdb_index_test_4.sh
2796check_DATA += gdb_index_test_4.stdout
2797MOSTLYCLEANFILES += gdb_index_test_4.stdout gdb_index_test_4
2798gdb_index_test_pub.o: gdb_index_test.cc
2799 $(CXXCOMPILE) -O0 -g -gpubnames -c -o $@ $<
2800gdb_index_test_4: gdb_index_test_pub.o gcctestdir/ld
2801 $(CXXLINK) -Bgcctestdir/ -Wl,--gdb-index $<
2802gdb_index_test_4.stdout: gdb_index_test_4
2803 $(TEST_READELF) --debug-dump=gdb_index $< > $@
2804
2805endif HAVE_PUBNAMES
57923f48 2806
d1bddd3c
CC
2807# Test that __ehdr_start is defined correctly.
2808check_PROGRAMS += ehdr_start_test_1
2809ehdr_start_test_1_SOURCES = ehdr_start_test.cc
2810ehdr_start_test_1_DEPENDENCIES = gcctestdir/ld
2811ehdr_start_test_1_CXXFLAGS =
2812ehdr_start_test_1_LDFLAGS = -Bgcctestdir/
2813ehdr_start_test_1_LDADD =
2814
2815# Test that __ehdr_start is defined correctly with a weak reference.
2816check_PROGRAMS += ehdr_start_test_2
2817ehdr_start_test_2_SOURCES = ehdr_start_test.cc
2818ehdr_start_test_2_DEPENDENCIES = gcctestdir/ld
2819ehdr_start_test_2_CXXFLAGS = -DEHDR_START_WEAK
2820ehdr_start_test_2_LDFLAGS = -Bgcctestdir/
2821ehdr_start_test_2_LDADD =
2822
2823# Test that __ehdr_start is defined correctly when used with a linker script.
2824check_PROGRAMS += ehdr_start_test_3
2825ehdr_start_test_3_SOURCES = ehdr_start_test.cc
2826ehdr_start_test_3_DEPENDENCIES = gcctestdir/ld $(srcdir)/ehdr_start_test.t
2827ehdr_start_test_3_CXXFLAGS = -DEHDR_START_WEAK
2828ehdr_start_test_3_LDFLAGS = -Bgcctestdir/ -Wl,-T,$(srcdir)/ehdr_start_test.t
2829ehdr_start_test_3_LDADD =
2830
2831# Test that __ehdr_start is left undefined when the text segment is not
2832# appropriately aligned.
2833check_SCRIPTS += ehdr_start_test_4.sh
2834check_DATA += ehdr_start_test_4.syms
2835MOSTLYCLEANFILES += ehdr_start_test_4
2836ehdr_start_test_4.syms: ehdr_start_test_4
2837 $(TEST_NM) ehdr_start_test_4 > $@
2838ehdr_start_test_4: ehdr_start_test_4.o gcctestdir/ld
f6fb8322 2839 $(CXXLINK) -Bgcctestdir/ -Wl,-Ttext=0x100100 $<
d1bddd3c
CC
2840ehdr_start_test_4.o: ehdr_start_test.cc
2841 $(CXXCOMPILE) -c -DEHDR_START_WEAK -o $@ $<
2842
2843# Test that __ehdr_start is not overridden when supplied by the user.
2844check_PROGRAMS += ehdr_start_test_5
2845ehdr_start_test_5_SOURCES = ehdr_start_test.cc ehdr_start_def.cc
2846ehdr_start_test_5_DEPENDENCIES = gcctestdir/ld
2847ehdr_start_test_5_CXXFLAGS = -DEHDR_START_USER_DEF
2848ehdr_start_test_5_LDFLAGS = -Bgcctestdir/
2849ehdr_start_test_5_LDADD =
2850
e051745c
CC
2851# Test that the --defsym option copies the symbol type and visibility.
2852check_SCRIPTS += defsym_test.sh
2853check_DATA += defsym_test.syms
dddcc5b9 2854MOSTLYCLEANFILES += defsym_test defsym_test.syms
e051745c
CC
2855defsym_test.syms: defsym_test
2856 $(TEST_READELF) -sW $< > $@
2857defsym_test: defsym_test.o gcctestdir/ld
2858 $(LINK) -Bgcctestdir/ -Wl,--defsym=bar=foo defsym_test.o
2859defsym_test.o: defsym_test.c
2860 $(COMPILE) -c -o $@ $<
2861
2eedd706
CC
2862# End-to-end incremental linking tests.
2863# Incremental linking is currently supported only on the x86_64 target.
2864
2865if DEFAULT_TARGET_X86_64
2866
33c15b45
CC
2867two_file_test_1_v1_ndebug.o: two_file_test_1_v1.cc
2868 $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
2869two_file_test_1_ndebug.o: two_file_test_1.cc
2870 $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
2871two_file_test_1b_ndebug.o: two_file_test_1b.cc
2872 $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
2873two_file_test_2_ndebug.o: two_file_test_2.cc
2874 $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
2875two_file_test_main_ndebug.o: two_file_test_main.cc
2876 $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
2877
2eedd706 2878check_PROGRAMS += incremental_test_2
c49875be 2879MOSTLYCLEANFILES += two_file_test_tmp_2.o
33c15b45
CC
2880incremental_test_2: two_file_test_1_v1_ndebug.o two_file_test_1_ndebug.o two_file_test_1b_ndebug.o \
2881 two_file_test_2_ndebug.o two_file_test_main_ndebug.o gcctestdir/ld
2882 cp -f two_file_test_1_v1_ndebug.o two_file_test_tmp_2.o
943c8b43 2883 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ two_file_test_tmp_2.o two_file_test_1b_ndebug.o two_file_test_2_ndebug.o two_file_test_main_ndebug.o
2eedd706 2884 @sleep 1
33c15b45 2885 cp -f two_file_test_1_ndebug.o two_file_test_tmp_2.o
943c8b43 2886 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ two_file_test_tmp_2.o two_file_test_1b_ndebug.o two_file_test_2_ndebug.o two_file_test_main_ndebug.o
2eedd706
CC
2887
2888check_PROGRAMS += incremental_test_3
c49875be 2889MOSTLYCLEANFILES += two_file_test_tmp_3.o
2eedd706
CC
2890incremental_test_3: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
2891 two_file_test_2.o two_file_test_main.o gcctestdir/ld
c49875be 2892 cp -f two_file_test_1b_v1.o two_file_test_tmp_3.o
943c8b43 2893 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ two_file_test_1.o two_file_test_tmp_3.o two_file_test_2.o two_file_test_main.o
2eedd706 2894 @sleep 1
c49875be 2895 cp -f two_file_test_1b.o two_file_test_tmp_3.o
943c8b43 2896 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ two_file_test_1.o two_file_test_tmp_3.o two_file_test_2.o two_file_test_main.o
2eedd706
CC
2897
2898check_PROGRAMS += incremental_test_4
c49875be 2899MOSTLYCLEANFILES += incremental_test_4.base two_file_test_tmp_4.o
2eedd706
CC
2900incremental_test_4: two_file_test_1.o two_file_test_1b.o two_file_test_2_v1.o \
2901 two_file_test_2.o two_file_test_main.o gcctestdir/ld
c49875be 2902 cp -f two_file_test_2_v1.o two_file_test_tmp_4.o
943c8b43 2903 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ two_file_test_1.o two_file_test_1b.o two_file_test_tmp_4.o two_file_test_main.o
aa92d6ed 2904 mv -f incremental_test_4 incremental_test_4.base
2eedd706 2905 @sleep 1
c49875be 2906 cp -f two_file_test_2.o two_file_test_tmp_4.o
943c8b43 2907 $(CXXLINK) -Wl,--incremental-update,--incremental-base=incremental_test_4.base -Wl,-z,norelro -Bgcctestdir/ two_file_test_1.o two_file_test_1b.o two_file_test_tmp_4.o two_file_test_main.o
2eedd706 2908
e24719f6
CC
2909check_PROGRAMS += incremental_test_5
2910MOSTLYCLEANFILES += two_file_test_5.a
2911incremental_test_5: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
2912 two_file_test_2.o two_file_test_main.o gcctestdir/ld
2913 cp -f two_file_test_1b_v1.o two_file_test_tmp_5.o
2914 $(TEST_AR) rc two_file_test_5.a two_file_test_1.o two_file_test_tmp_5.o two_file_test_2.o
943c8b43 2915 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ two_file_test_main.o two_file_test_5.a
e24719f6
CC
2916 @sleep 1
2917 cp -f two_file_test_1b.o two_file_test_tmp_5.o
2918 $(TEST_AR) rc two_file_test_5.a two_file_test_1.o two_file_test_tmp_5.o two_file_test_2.o
943c8b43 2919 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ two_file_test_main.o two_file_test_5.a
e24719f6
CC
2920
2921# Test the --incremental-unchanged flag with an archive library.
2922# The second link should not update the library.
2923check_PROGRAMS += incremental_test_6
2924MOSTLYCLEANFILES += two_file_test_6.a
2925incremental_test_6: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
2926 two_file_test_2.o two_file_test_main.o gcctestdir/ld
2927 cp -f two_file_test_1b.o two_file_test_tmp_6.o
2928 $(TEST_AR) rc two_file_test_6.a two_file_test_1.o two_file_test_tmp_6.o two_file_test_2.o
943c8b43 2929 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ two_file_test_main.o two_file_test_6.a
e24719f6
CC
2930 @sleep 1
2931 cp -f two_file_test_1b_v1.o two_file_test_tmp_6.o
2932 $(TEST_AR) rc two_file_test_6.a two_file_test_1.o two_file_test_tmp_6.o two_file_test_2.o
943c8b43 2933 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ two_file_test_main.o -Wl,--incremental-unchanged two_file_test_6.a -Wl,--incremental-unknown
e24719f6 2934
a5ee4d5d
CC
2935check_PROGRAMS += incremental_copy_test
2936incremental_copy_test: copy_test_v1.o copy_test.o copy_test_1.so copy_test_2.so
2937 cp -f copy_test_v1.o copy_test_tmp.o
943c8b43 2938 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed copy_test_tmp.o copy_test_1.so copy_test_2.so
a5ee4d5d
CC
2939 @sleep 1
2940 cp -f copy_test.o copy_test_tmp.o
943c8b43 2941 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed copy_test_tmp.o copy_test_1.so copy_test_2.so
a5ee4d5d
CC
2942
2943check_PROGRAMS += incremental_common_test_1
2944incremental_common_test_1: common_test_1_v1.o common_test_1_v2.o gcctestdir/ld
2945 cp -f common_test_1_v1.o common_test_1_tmp.o
943c8b43 2946 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ common_test_1_tmp.o
a5ee4d5d
CC
2947 @sleep 1
2948 cp -f common_test_1_v2.o common_test_1_tmp.o
943c8b43 2949 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ common_test_1_tmp.o
a5ee4d5d 2950
1206d0d5
CC
2951check_PROGRAMS += incremental_comdat_test_1
2952incremental_comdat_test_1: incr_comdat_test_1.o incr_comdat_test_2_v1.o incr_comdat_test_2_v2.o incr_comdat_test_2_v3.o gcctestdir/ld
2953 cp -f incr_comdat_test_2_v1.o incr_comdat_test_1_tmp.o
943c8b43 2954 $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro -Bgcctestdir/ incr_comdat_test_1.o incr_comdat_test_1_tmp.o
1206d0d5
CC
2955 @sleep 1
2956 cp -f incr_comdat_test_2_v2.o incr_comdat_test_1_tmp.o
943c8b43 2957 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ incr_comdat_test_1.o incr_comdat_test_1_tmp.o
1206d0d5
CC
2958 @sleep 1
2959 cp -f incr_comdat_test_2_v3.o incr_comdat_test_1_tmp.o
943c8b43 2960 $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro -Bgcctestdir/ incr_comdat_test_1.o incr_comdat_test_1_tmp.o
1206d0d5 2961
2eedd706
CC
2962endif DEFAULT_TARGET_X86_64
2963
f49fe902
L
2964if DEFAULT_TARGET_X86_64
2965check_PROGRAMS += exception_x86_64_bnd_test
2966exception_x86_64_bnd_test_SOURCES = exception_test_main.cc
635aa30e 2967exception_x86_64_bnd_test_DEPENDENCIES = gcctestdir/ld exception_x86_64_bnd_1.o exception_x86_64_bnd_2.o
f49fe902 2968exception_x86_64_bnd_test_LDFLAGS = $(exception_test_LDFLAGS)
635aa30e 2969exception_x86_64_bnd_test_LDADD = exception_x86_64_bnd_1.o exception_x86_64_bnd_2.o
0c075858 2970exception_x86_64_bnd_1.o: exception_test_1.cc gcctestdir/as
f49fe902 2971 $(CXXCOMPILE) -c -fpic -Bgcctestdir/ -Wa,-madd-bnd-prefix -o $@ $<
0c075858 2972exception_x86_64_bnd_2.o: exception_test_2.cc gcctestdir/as
f49fe902
L
2973 $(CXXCOMPILE) -c -Bgcctestdir/ -Wa,-madd-bnd-prefix -o $@ $<
2974endif DEFAULT_TARGET_X86_64
2975
351a8000
ILT
2976endif GCC
2977endif NATIVE_LINKER
364c7fa5 2978
eb373049
ILT
2979# These tests work with native and cross linkers.
2980
2981if NATIVE_OR_CROSS_LINKER
2982
2983# Test script section order.
2984check_SCRIPTS += script_test_10.sh
2985check_DATA += script_test_10.stdout
0ec6429b 2986MOSTLYCLEANFILES += script_test_10
eb373049
ILT
2987script_test_10.o: script_test_10.s
2988 $(TEST_AS) -o $@ $<
2989script_test_10: $(srcdir)/script_test_10.t script_test_10.o gcctestdir/ld
52dc3f9c 2990 gcctestdir/ld -o $@ script_test_10.o -T $(srcdir)/script_test_10.t
eb373049
ILT
2991script_test_10.stdout: script_test_10
2992 $(TEST_READELF) -SW script_test_10 > $@
2993
2994# These tests work with cross linkers only.
364c7fa5
ILT
2995
2996if DEFAULT_TARGET_I386
2997
2998check_SCRIPTS += split_i386.sh
2999check_DATA += split_i386_1.stdout split_i386_2.stdout \
3000 split_i386_3.stdout split_i386_4.stdout split_i386_r.stdout
3001SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3002split_i386_1.o: split_i386_1.s
3003 $(TEST_AS) -o $@ $<
3004split_i386_2.o: split_i386_2.s
3005 $(TEST_AS) -o $@ $<
3006split_i386_3.o: split_i386_3.s
3007 $(TEST_AS) -o $@ $<
3008split_i386_4.o: split_i386_4.s
3009 $(TEST_AS) -o $@ $<
3010split_i386_n.o: split_i386_n.s
3011 $(TEST_AS) -o $@ $<
3012split_i386_1: split_i386_1.o split_i386_n.o ../ld-new
3013 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_1.o split_i386_n.o
3014split_i386_1.stdout: split_i386_1
3015 $(TEST_OBJDUMP) -d $< > $@
3016split_i386_2: split_i386_2.o split_i386_n.o ../ld-new
3017 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_2.o split_i386_n.o
3018split_i386_2.stdout: split_i386_2
3019 $(TEST_OBJDUMP) -d $< > $@
3020split_i386_3.stdout: split_i386_3.o split_i386_n.o ../ld-new
3021 ../ld-new $(SPLIT_DEFSYMS) -o split_i386_3 split_i386_3.o split_i386_n.o > $@ 2>&1 || exit 0
3022split_i386_4: split_i386_4.o split_i386_n.o ../ld-new
3023 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_4.o split_i386_n.o
3024split_i386_4.stdout: split_i386_4
3025 $(TEST_OBJDUMP) -d $< > $@
3026split_i386_r.stdout: split_i386_1.o split_i386_n.o ../ld-new
3027 ../ld-new -r split_i386_1.o split_i386_n.o -o split_i386_r > $@ 2>&1 || exit 0
3028MOSTLYCLEANFILES += split_i386_1 split_i386_2 split_i386_3 \
3029 split_i386_4 split_i386_r
3030
3031endif DEFAULT_TARGET_I386
3032
3033if DEFAULT_TARGET_X86_64
3034
3035check_SCRIPTS += split_x86_64.sh
3036check_DATA += split_x86_64_1.stdout split_x86_64_2.stdout \
3037 split_x86_64_3.stdout split_x86_64_4.stdout split_x86_64_r.stdout
3038SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3039split_x86_64_1.o: split_x86_64_1.s
3040 $(TEST_AS) -o $@ $<
3041split_x86_64_2.o: split_x86_64_2.s
3042 $(TEST_AS) -o $@ $<
3043split_x86_64_3.o: split_x86_64_3.s
3044 $(TEST_AS) -o $@ $<
3045split_x86_64_4.o: split_x86_64_4.s
3046 $(TEST_AS) -o $@ $<
3047split_x86_64_n.o: split_x86_64_n.s
3048 $(TEST_AS) -o $@ $<
3049split_x86_64_1: split_x86_64_1.o split_x86_64_n.o ../ld-new
3050 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_1.o split_x86_64_n.o
3051split_x86_64_1.stdout: split_x86_64_1
3052 $(TEST_OBJDUMP) -d $< > $@
3053split_x86_64_2: split_x86_64_2.o split_x86_64_n.o ../ld-new
3054 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_2.o split_x86_64_n.o
3055split_x86_64_2.stdout: split_x86_64_2
3056 $(TEST_OBJDUMP) -d $< > $@
3057split_x86_64_3.stdout: split_x86_64_3.o split_x86_64_n.o ../ld-new
3058 ../ld-new $(SPLIT_DEFSYMS) -o split_x86_64_3 split_x86_64_3.o split_x86_64_n.o > $@ 2>&1 || exit 0
3059split_x86_64_4: split_x86_64_4.o split_x86_64_n.o ../ld-new
3060 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_4.o split_x86_64_n.o
3061split_x86_64_4.stdout: split_x86_64_4
3062 $(TEST_OBJDUMP) -d $< > $@
3063split_x86_64_r.stdout: split_x86_64_1.o split_x86_64_n.o ../ld-new
3064 ../ld-new -r split_x86_64_1.o split_x86_64_n.o -o split_x86_64_r > $@ 2>&1 || exit 0
3065MOSTLYCLEANFILES += split_x86_64_1 split_x86_64_2 split_x86_64_3 \
3066 split_x86_64_4 split_x86_64_r
3067
3068endif DEFAULT_TARGET_X86_64
e4782e83 3069
4fc1b9d4
L
3070if DEFAULT_TARGET_X32
3071
3072check_SCRIPTS += split_x32.sh
3073check_DATA += split_x32_1.stdout split_x32_2.stdout \
3074 split_x32_3.stdout split_x32_4.stdout split_x32_r.stdout
3075SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3076split_x32_1.o: split_x32_1.s
3077 $(TEST_AS) -o $@ $<
3078split_x32_2.o: split_x32_2.s
3079 $(TEST_AS) -o $@ $<
3080split_x32_3.o: split_x32_3.s
3081 $(TEST_AS) -o $@ $<
3082split_x32_4.o: split_x32_4.s
3083 $(TEST_AS) -o $@ $<
3084split_x32_n.o: split_x32_n.s
3085 $(TEST_AS) -o $@ $<
3086split_x32_1: split_x32_1.o split_x32_n.o ../ld-new
3087 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_1.o split_x32_n.o
3088split_x32_1.stdout: split_x32_1
3089 $(TEST_OBJDUMP) -d $< > $@
3090split_x32_2: split_x32_2.o split_x32_n.o ../ld-new
3091 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_2.o split_x32_n.o
3092split_x32_2.stdout: split_x32_2
3093 $(TEST_OBJDUMP) -d $< > $@
3094split_x32_3.stdout: split_x32_3.o split_x32_n.o ../ld-new
3095 ../ld-new $(SPLIT_DEFSYMS) -o split_x32_3 split_x32_3.o split_x32_n.o > $@ 2>&1 || exit 0
3096split_x32_4: split_x32_4.o split_x32_n.o ../ld-new
3097 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_4.o split_x32_n.o
3098split_x32_4.stdout: split_x32_4
3099 $(TEST_OBJDUMP) -d $< > $@
3100split_x32_r.stdout: split_x32_1.o split_x32_n.o ../ld-new
3101 ../ld-new -r split_x32_1.o split_x32_n.o -o split_x32_r > $@ 2>&1 || exit 0
3102MOSTLYCLEANFILES += split_x32_1 split_x32_2 split_x32_3 \
3103 split_x32_4 split_x32_r
3104
3105endif DEFAULT_TARGET_X32
3106
e4782e83
DK
3107if DEFAULT_TARGET_ARM
3108
3109check_SCRIPTS += arm_abs_global.sh
3110check_DATA += arm_abs_global.stdout
3111arm_abs_lib.o: arm_abs_lib.s
3112 $(TEST_AS) -march=armv7-a -o $@ $<
d3bbad62 3113libarm_abs.so: arm_abs_lib.o ../ld-new
e4782e83
DK
3114 ../ld-new -shared -o $@ arm_abs_lib.o
3115arm_abs_global.o: arm_abs_global.s
3116 $(TEST_AS) -march=armv7-a -o $@ $<
d3bbad62 3117arm_abs_global: arm_abs_global.o libarm_abs.so ../ld-new
e4782e83
DK
3118 ../ld-new -o $@ arm_abs_global.o -L. -larm_abs
3119arm_abs_global.stdout: arm_abs_global
3120 $(TEST_READELF) -r $< > $@
3121
3122MOSTLYCLEANFILES += arm_abs_global
3123
aa98ff75 3124check_SCRIPTS += arm_branch_in_range.sh arm_branch_out_of_range.sh
2a2b6d42
DK
3125check_DATA += arm_bl_in_range.stdout arm_bl_out_of_range.stdout \
3126 thumb_bl_in_range.stdout thumb_bl_out_of_range.stdout \
a2c7281b
DK
3127 thumb2_bl_in_range.stdout thumb2_bl_out_of_range.stdout \
3128 thumb_blx_in_range.stdout thumb_blx_out_of_range.stdout \
aa98ff75 3129 thumb2_blx_in_range.stdout thumb2_blx_out_of_range.stdout \
57eb9b50
DK
3130 thumb_bl_out_of_range_local.stdout arm_thm_jump11.stdout \
3131 arm_thm_jump8.stdout
2a2b6d42
DK
3132
3133arm_bl_in_range.stdout: arm_bl_in_range
3134 $(TEST_OBJDUMP) -D $< > $@
3135
d3bbad62 3136arm_bl_in_range: arm_bl_in_range.o ../ld-new
52dc3f9c 3137 ../ld-new -T $(srcdir)/arm_branch_range.t -o $@ $<
2a2b6d42
DK
3138
3139arm_bl_in_range.o: arm_bl_in_range.s
3140 $(TEST_AS) -o $@ $<
3141
3142arm_bl_out_of_range.stdout: arm_bl_out_of_range
3143 $(TEST_OBJDUMP) -S $< > $@
3144
d3bbad62 3145arm_bl_out_of_range: arm_bl_out_of_range.o ../ld-new
52dc3f9c 3146 ../ld-new -T $(srcdir)/arm_branch_range.t -o $@ $<
2a2b6d42
DK
3147
3148arm_bl_out_of_range.o: arm_bl_out_of_range.s
3149 $(TEST_AS) -o $@ $<
3150
3151thumb_bl_in_range.stdout: thumb_bl_in_range
3152 $(TEST_OBJDUMP) -D $< > $@
3153
d3bbad62 3154thumb_bl_in_range: thumb_bl_in_range.o ../ld-new
52dc3f9c 3155 ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
2a2b6d42
DK
3156
3157thumb_bl_in_range.o: thumb_bl_in_range.s
3158 $(TEST_AS) -o $@ -march=armv5te $<
3159
3160thumb_bl_out_of_range.stdout: thumb_bl_out_of_range
3161 $(TEST_OBJDUMP) -D $< > $@
3162
a2c7281b 3163thumb_bl_out_of_range: thumb_bl_out_of_range.o ../ld-new
52dc3f9c 3164 ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
2a2b6d42 3165
a2c7281b 3166thumb_bl_out_of_range.o: thumb_bl_out_of_range.s
2a2b6d42
DK
3167 $(TEST_AS) -o $@ -march=armv5te $<
3168
3169thumb2_bl_in_range.stdout: thumb2_bl_in_range
3170 $(TEST_OBJDUMP) -D $< > $@
3171
d3bbad62 3172thumb2_bl_in_range: thumb2_bl_in_range.o ../ld-new
52dc3f9c 3173 ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
2a2b6d42
DK
3174
3175thumb2_bl_in_range.o: thumb_bl_in_range.s
3176 $(TEST_AS) -o $@ -march=armv7-a $<
3177
3178thumb2_bl_out_of_range.stdout: thumb2_bl_out_of_range
3179 $(TEST_OBJDUMP) -D $< > $@
3180
a2c7281b 3181thumb2_bl_out_of_range: thumb2_bl_out_of_range.o ../ld-new
52dc3f9c 3182 ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
2a2b6d42 3183
a2c7281b
DK
3184thumb2_bl_out_of_range.o: thumb_bl_out_of_range.s
3185 $(TEST_AS) -o $@ -march=armv7-a $<
3186
3187thumb_blx_in_range.stdout: thumb_blx_in_range
3188 $(TEST_OBJDUMP) -D $< > $@
3189
3190thumb_blx_in_range: thumb_blx_in_range.o ../ld-new
52dc3f9c 3191 ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
a2c7281b
DK
3192
3193thumb_blx_in_range.o: thumb_blx_in_range.s
3194 $(TEST_AS) -o $@ -march=armv5te $<
3195
3196thumb_blx_out_of_range.stdout: thumb_blx_out_of_range
3197 $(TEST_OBJDUMP) -D $< > $@
3198
3199thumb_blx_out_of_range: thumb_blx_out_of_range.o ../ld-new
52dc3f9c 3200 ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
a2c7281b
DK
3201
3202thumb_blx_out_of_range.o: thumb_blx_out_of_range.s
3203 $(TEST_AS) -o $@ -march=armv5te $<
3204
3205thumb2_blx_in_range.stdout: thumb2_blx_in_range
3206 $(TEST_OBJDUMP) -D $< > $@
3207
3208thumb2_blx_in_range: thumb2_blx_in_range.o ../ld-new
52dc3f9c 3209 ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
a2c7281b
DK
3210
3211thumb2_blx_in_range.o: thumb_blx_in_range.s
3212 $(TEST_AS) -o $@ -march=armv7-a $<
3213
3214thumb2_blx_out_of_range.stdout: thumb2_blx_out_of_range
3215 $(TEST_OBJDUMP) -D $< > $@
3216
3217thumb2_blx_out_of_range: thumb2_blx_out_of_range.o ../ld-new
52dc3f9c 3218 ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
a2c7281b
DK
3219
3220thumb2_blx_out_of_range.o: thumb_blx_out_of_range.s
2a2b6d42
DK
3221 $(TEST_AS) -o $@ -march=armv7-a $<
3222
aa98ff75
DK
3223thumb_bl_out_of_range_local.stdout: thumb_bl_out_of_range_local
3224 $(TEST_OBJDUMP) -D $< > $@
3225
3226thumb_bl_out_of_range_local: thumb_bl_out_of_range_local.o ../ld-new
52dc3f9c 3227 ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
aa98ff75
DK
3228
3229thumb_bl_out_of_range_local.o: thumb_bl_out_of_range_local.s
3230 $(TEST_AS) -o $@ -march=armv5te $<
3231
57eb9b50
DK
3232arm_thm_jump11.stdout: arm_thm_jump11
3233 $(TEST_OBJDUMP) -D $< > $@
3234
3235arm_thm_jump11: arm_thm_jump11.o ../ld-new
52dc3f9c 3236 ../ld-new -T $(srcdir)/arm_thm_jump11.t -o $@ $<
57eb9b50
DK
3237
3238arm_thm_jump11.o: arm_thm_jump11.s
3239 $(TEST_AS) -o $@ $<
3240
3241arm_thm_jump8.stdout: arm_thm_jump8
3242 $(TEST_OBJDUMP) -D $< > $@
3243
3244arm_thm_jump8: arm_thm_jump8.o ../ld-new
52dc3f9c 3245 ../ld-new -T $(srcdir)/arm_thm_jump8.t -o $@ $<
57eb9b50
DK
3246
3247arm_thm_jump8.o: arm_thm_jump8.s
3248 $(TEST_AS) -o $@ $<
3249
2a2b6d42 3250MOSTLYCLEANFILES += arm_bl_in_range arm_bl_out_of_range thumb_bl_in_range \
a2c7281b
DK
3251 thumb_bl_out_of_range thumb2_bl_in_range thumb2_bl_out_of_range \
3252 thumb_blx_in_range thumb_blx_out_of_range thumb2_blx_in_range \
57eb9b50
DK
3253 thumb2_blx_out_of_range thumb_bl_out_of_range_local arm_thm_jump11 \
3254 arm_thm_jump8
2a2b6d42 3255
2fd9ae7a
DK
3256check_SCRIPTS += arm_fix_v4bx.sh
3257check_DATA += arm_fix_v4bx.stdout arm_fix_v4bx_interworking.stdout \
3258 arm_no_fix_v4bx.stdout
3259
3260arm_fix_v4bx.stdout: arm_fix_v4bx
3261 $(TEST_OBJDUMP) -D -j.text $< > $@
3262
d3bbad62 3263arm_fix_v4bx: arm_fix_v4bx.o ../ld-new
a8e2273b 3264 ../ld-new --no-fix-arm1176 --fix-v4bx -o $@ $<
2fd9ae7a
DK
3265
3266arm_fix_v4bx.o: arm_fix_v4bx.s
3267 $(TEST_AS) -o $@ $<
3268
3269arm_fix_v4bx_interworking.stdout: arm_fix_v4bx_interworking
3270 $(TEST_OBJDUMP) -D -j.text $< > $@
3271
d3bbad62 3272arm_fix_v4bx_interworking: arm_fix_v4bx.o ../ld-new
a8e2273b 3273 ../ld-new --no-fix-arm1176 --fix-v4bx-interworking -o $@ $<
2fd9ae7a
DK
3274
3275arm_no_fix_v4bx.stdout: arm_no_fix_v4bx
3276 $(TEST_OBJDUMP) -D -j.text $< > $@
3277
d3bbad62 3278arm_no_fix_v4bx: arm_fix_v4bx.o ../ld-new
a8e2273b 3279 ../ld-new --no-fix-arm1176 -o $@ $<
2fd9ae7a
DK
3280
3281MOSTLYCLEANFILES += arm_fix_v4bx arm_fix_v4bx_interworking arm_no_fix_v4bx
3282
da59ad79
DK
3283check_SCRIPTS += arm_attr_merge.sh
3284check_DATA += arm_attr_merge_6.stdout arm_attr_merge_6r.stdout \
3285 arm_attr_merge_7.stdout
3286
3287arm_attr_merge_6.stdout: arm_attr_merge_6
3288 $(TEST_READELF) -A $< > $@
3289
3290arm_attr_merge_6: arm_attr_merge_6a.o arm_attr_merge_6b.o
3291 ../ld-new -o $@ arm_attr_merge_6a.o arm_attr_merge_6b.o
3292
3293arm_attr_merge_6a.o: arm_attr_merge_6a.s
3294 $(TEST_AS) -o $@ $<
3295
3296arm_attr_merge_6b.o: arm_attr_merge_6b.s
3297 $(TEST_AS) -o $@ $<
3298
3299arm_attr_merge_6r.stdout: arm_attr_merge_6r
3300 $(TEST_READELF) -A $< > $@
3301
3302arm_attr_merge_6r: arm_attr_merge_6b.o arm_attr_merge_6a.o
3303 ../ld-new -o $@ arm_attr_merge_6b.o arm_attr_merge_6a.o
3304
3305arm_attr_merge_7.stdout: arm_attr_merge_7
3306 $(TEST_READELF) -A $< > $@
3307
3308arm_attr_merge_7: arm_attr_merge_7a.o arm_attr_merge_7b.o
3309 ../ld-new -o $@ arm_attr_merge_7a.o arm_attr_merge_7b.o
3310
3311arm_attr_merge_7a.o: arm_attr_merge_7a.s
3312 $(TEST_AS) -o $@ $<
3313
3314arm_attr_merge_7b.o: arm_attr_merge_7b.s
3315 $(TEST_AS) -o $@ $<
3316
3317MOSTLYCLEANFILES += arm_attr_merge_6 arm_attr_merge_6r arm_attr_merge_7
3318
a8e2273b
ILT
3319# ARM1176 workaround test.
3320check_SCRIPTS += arm_fix_1176.sh
3321check_DATA += arm_fix_1176_default_v6z.stdout arm_fix_1176_on_v6z.stdout \
3322 arm_fix_1176_off_v6z.stdout arm_fix_1176_default_v5te.stdout \
3323 arm_fix_1176_default_v7a.stdout arm_fix_1176_default_1156t2f_s.stdout
3324
3325arm_fix_1176_default_v6z.stdout: arm_fix_1176_default_v6z
3326 $(TEST_OBJDUMP) -D -j.foo $< > $@
3327
3328arm_fix_1176_default_v6z: arm_fix_1176_default_v6z.o ../ld-new
3329 ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3330
3331arm_fix_1176_default_v6z.o: arm_fix_1176.s
3332 $(TEST_AS) -march=armv6z -o $@ $<
3333
3334arm_fix_1176_on_v6z.stdout: arm_fix_1176_on_v6z
3335 $(TEST_OBJDUMP) -D -j.foo $< > $@
3336
3337arm_fix_1176_on_v6z: arm_fix_1176_on_v6z.o ../ld-new
3338 ../ld-new --section-start=.foo=0x2001014 --fix-arm1176 -o $@ $<
3339
3340arm_fix_1176_on_v6z.o: arm_fix_1176.s
3341 $(TEST_AS) -march=armv6z -o $@ $<
3342
3343arm_fix_1176_off_v6z.stdout: arm_fix_1176_off_v6z
3344 $(TEST_OBJDUMP) -D -j.foo $< > $@
3345
3346arm_fix_1176_off_v6z: arm_fix_1176_off_v6z.o ../ld-new
3347 ../ld-new --section-start=.foo=0x2001014 --no-fix-arm1176 -o $@ $<
3348
3349arm_fix_1176_off_v6z.o: arm_fix_1176.s
3350 $(TEST_AS) -march=armv6z -o $@ $<
3351
3352arm_fix_1176_default_v5te.stdout: arm_fix_1176_default_v5te
3353 $(TEST_OBJDUMP) -D -j.foo $< > $@
3354
3355arm_fix_1176_default_v5te: arm_fix_1176_default_v5te.o ../ld-new
3356 ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3357
3358arm_fix_1176_default_v5te.o: arm_fix_1176.s
3359 $(TEST_AS) -march=armv5te -o $@ $<
3360
3361arm_fix_1176_default_v7a.stdout: arm_fix_1176_default_v7a
3362 $(TEST_OBJDUMP) -D -j.foo $< > $@
3363
3364arm_fix_1176_default_v7a: arm_fix_1176_default_v7a.o ../ld-new
3365 ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3366
3367arm_fix_1176_default_v7a.o: arm_fix_1176.s
3368 $(TEST_AS) -march=armv7-a -o $@ $<
3369
3370arm_fix_1176_default_1156t2f_s.stdout: arm_fix_1176_default_1156t2f_s
3371 $(TEST_OBJDUMP) -D -j.foo $< > $@
3372
3373arm_fix_1176_default_1156t2f_s: arm_fix_1176_default_1156t2f_s.o ../ld-new
3374 ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3375
3376arm_fix_1176_default_1156t2f_s.o: arm_fix_1176.s
3377 $(TEST_AS) -mcpu=arm1156t2f-s -o $@ $<
3378
3379MOSTLYCLEANFILES += arm_fix_1176_default_v6z arm_fix_1176_on_v6z arm_fix_1176_off_v6z \
3380 arm_fix_1176_default_v5te arm_fix_1176_default_v7a arm_fix_1176_default_1156t2f_s
3381
aa98ff75
DK
3382# Cortex-A8 workaround test.
3383
3384check_SCRIPTS += arm_cortex_a8.sh
3385check_DATA += arm_cortex_a8_b_cond.stdout arm_cortex_a8_b.stdout \
3386 arm_cortex_a8_bl.stdout arm_cortex_a8_blx.stdout \
3387 arm_cortex_a8_local.stdout arm_cortex_a8_local_reloc.stdout
3388
3389arm_cortex_a8_b_cond.stdout: arm_cortex_a8_b_cond
3390 $(TEST_OBJDUMP) -D -j.text $< > $@
3391
3392arm_cortex_a8_b_cond: arm_cortex_a8_b_cond.o ../ld-new
3393 ../ld-new -o $@ $<
3394
3395arm_cortex_a8_b_cond.o: arm_cortex_a8_b_cond.s
3396 $(TEST_AS) -o $@ $<
3397
3398arm_cortex_a8_b.stdout: arm_cortex_a8_b
3399 $(TEST_OBJDUMP) -D -j.text $< > $@
3400
3401arm_cortex_a8_b: arm_cortex_a8_b.o ../ld-new
3402 ../ld-new --fix-cortex-a8 -o $@ $<
3403
3404arm_cortex_a8_b.o: arm_cortex_a8_b.s
3405 $(TEST_AS) -o $@ $<
3406
3407arm_cortex_a8_bl.stdout: arm_cortex_a8_bl
3408 $(TEST_OBJDUMP) -D -j.text $< > $@
3409
3410arm_cortex_a8_bl: arm_cortex_a8_bl.o ../ld-new
3411 ../ld-new -o $@ $<
3412
3413arm_cortex_a8_bl.o: arm_cortex_a8_bl.s
3414 $(TEST_AS) -o $@ $<
3415
3416arm_cortex_a8_blx.stdout: arm_cortex_a8_blx
3417 $(TEST_OBJDUMP) -D -j.text $< > $@
3418
3419arm_cortex_a8_blx: arm_cortex_a8_blx.o ../ld-new
3420 ../ld-new -o $@ $<
3421
3422arm_cortex_a8_blx.o: arm_cortex_a8_blx.s
3423 $(TEST_AS) -o $@ $<
3424
3425arm_cortex_a8_local.stdout: arm_cortex_a8_local
3426 $(TEST_OBJDUMP) -D -j.text $< > $@
3427
3428arm_cortex_a8_local: arm_cortex_a8_local.o ../ld-new
3429 ../ld-new -o $@ $<
3430
3431arm_cortex_a8_local.o: arm_cortex_a8_local.s
3432 $(TEST_AS) -o $@ $<
3433
3434arm_cortex_a8_local_reloc.stdout: arm_cortex_a8_local_reloc
3435 $(TEST_OBJDUMP) -D -j.text $< > $@
3436
3437arm_cortex_a8_local_reloc: arm_cortex_a8_local_reloc.o ../ld-new
3438 ../ld-new -o $@ $<
3439
3440arm_cortex_a8_local_reloc.o: arm_cortex_a8_local_reloc.s
3441 $(TEST_AS) -o $@ $<
3442
3443MOSTLYCLEANFILES += arm_cortex_a8_b_cond arm_cortex_a8_b arm_cortex_a8_bl \
3444 arm_cortex_a8_blx arm_cortex_a8_local arm_cortex_a8_local_reloc
3445
c87e4302
DK
3446check_SCRIPTS += arm_exidx_test.sh
3447check_DATA += arm_exidx_test.stdout
3448
3449arm_exidx_test.stdout: arm_exidx_test.so
647f1574 3450 $(TEST_READELF) -Sr $< > $@
c87e4302
DK
3451
3452arm_exidx_test.so: arm_exidx_test.o ../ld-new
3453 ../ld-new -shared -o $@ $<
3454
3455arm_exidx_test.o: arm_exidx_test.s
3456 $(TEST_AS) -o $@ $<
3457
f62a3ca7
DK
3458check_SCRIPTS += pr12826.sh
3459check_DATA += pr12826.stdout
3460
3461pr12826.stdout: pr12826.so
3462 $(TEST_READELF) -A $< > $@
3463
3464pr12826.so: pr12826_1.o pr12826_2.o ../ld-new
3465 ../ld-new -shared -o $@ $<
3466
3467pr12826_1.o: pr12826_1.s
3468 $(TEST_AS) -o $@ $<
3469
3470pr12826_2.o: pr12826_2.s
3471 $(TEST_AS) -o $@ $<
c87e4302 3472
f6cccc2c 3473check_SCRIPTS += arm_unaligned_reloc.sh
2c339f71 3474check_DATA += arm_unaligned_reloc.stdout arm_unaligned_reloc_r.stdout
f6cccc2c
DK
3475
3476arm_unaligned_reloc.stdout: arm_unaligned_reloc
3477 $(TEST_OBJDUMP) -D $< > $@
3478
2c339f71
DK
3479arm_unaligned_reloc_r.stdout: arm_unaligned_reloc_r
3480 $(TEST_OBJDUMP) -Dr $< > $@
3481
f6cccc2c
DK
3482arm_unaligned_reloc: arm_unaligned_reloc.o ../ld-new
3483 ../ld-new -o $@ $<
3484
2c339f71
DK
3485arm_unaligned_reloc_r: arm_unaligned_reloc.o ../ld-new
3486 ../ld-new -r -o $@ $<
3487
f6cccc2c
DK
3488arm_unaligned_reloc.o: arm_unaligned_reloc.s
3489 $(TEST_AS) -o $@ $<
3490
2c339f71 3491MOSTLYCLEANFILES += arm_unaligned_reloc arm_unaligned_reloc_r
f6cccc2c 3492
cd6eab1c
ILT
3493# Check ARM to ARM farcall veneers
3494
3495check_SCRIPTS += arm_farcall_arm_arm.sh
3496check_DATA += arm_farcall_arm_arm.stdout
3497
3498arm_farcall_arm_arm.stdout: arm_farcall_arm_arm
3499 $(TEST_OBJDUMP) -d $< > $@
3500
3501arm_farcall_arm_arm: arm_farcall_arm_arm.o ../ld-new
a8e2273b 3502 ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001020 -o $@ $<
cd6eab1c
ILT
3503
3504arm_farcall_arm_arm.o: arm_farcall_arm_arm.s
3505 $(TEST_AS) -o $@ $<
3506
3507MOSTLYCLEANFILES += arm_farcall_arm_arm
3508
3509# Check ARM to Thumb farcall veneers
3510
3511check_SCRIPTS += arm_farcall_arm_thumb.sh
3512check_DATA += arm_farcall_arm_thumb.stdout arm_farcall_arm_thumb_5t.stdout
3513
3514arm_farcall_arm_thumb.stdout: arm_farcall_arm_thumb
3515 $(TEST_OBJDUMP) -D $< > $@
3516
3517arm_farcall_arm_thumb: arm_farcall_arm_thumb.o ../ld-new
3518 ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3519
3520arm_farcall_arm_thumb.o: arm_farcall_arm_thumb.s
3521 $(TEST_AS) -o $@ $<
3522
3523arm_farcall_arm_thumb_5t.stdout: arm_farcall_arm_thumb_5t
3524 $(TEST_OBJDUMP) -D $< > $@
3525
3526arm_farcall_arm_thumb_5t: arm_farcall_arm_thumb_5t.o ../ld-new
a8e2273b 3527 ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
cd6eab1c
ILT
3528
3529arm_farcall_arm_thumb_5t.o: arm_farcall_arm_thumb.s
3530 $(TEST_AS) -march=armv5t -o $@ $<
3531
3532MOSTLYCLEANFILES += arm_farcall_arm_thumb arm_farcall_arm_thumb_5t
3533
3534# Check Thumb to Thumb farcall veneers
3535
3536check_SCRIPTS += arm_farcall_thumb_thumb.sh
3537check_DATA += arm_farcall_thumb_thumb.stdout \
3538 arm_farcall_thumb_thumb_5t.stdout \
3539 arm_farcall_thumb_thumb_7m.stdout \
3540 arm_farcall_thumb_thumb_6m.stdout
3541
3542arm_farcall_thumb_thumb.stdout: arm_farcall_thumb_thumb
3543 $(TEST_OBJDUMP) -D $< > $@
3544
3545arm_farcall_thumb_thumb: arm_farcall_thumb_thumb.o ../ld-new
3546 ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3547
3548arm_farcall_thumb_thumb.o: arm_farcall_thumb_thumb.s
3549 $(TEST_AS) -march=armv4t -o $@ $<
3550
3551arm_farcall_thumb_thumb_5t.stdout: arm_farcall_thumb_thumb_5t
3552 $(TEST_OBJDUMP) -D $< > $@
3553
3554arm_farcall_thumb_thumb_5t: arm_farcall_thumb_thumb_5t.o ../ld-new
a8e2273b 3555 ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
cd6eab1c
ILT
3556
3557arm_farcall_thumb_thumb_5t.o: arm_farcall_thumb_thumb.s
3558 $(TEST_AS) -march=armv5t -o $@ $<
3559
3560arm_farcall_thumb_thumb_7m.stdout: arm_farcall_thumb_thumb_7m
3561 $(TEST_OBJDUMP) -D $< > $@
3562
3563arm_farcall_thumb_thumb_7m: arm_farcall_thumb_thumb_7m.o ../ld-new
3564 ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3565
3566arm_farcall_thumb_thumb_7m.o: arm_farcall_thumb_thumb.s
3567 $(TEST_AS) -march=armv7-m -o $@ $<
3568
3569arm_farcall_thumb_thumb_6m.stdout: arm_farcall_thumb_thumb_6m
3570 $(TEST_OBJDUMP) -D $< > $@
3571
3572arm_farcall_thumb_thumb_6m: arm_farcall_thumb_thumb_6m.o ../ld-new
3573 ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3574
3575arm_farcall_thumb_thumb_6m.o: arm_farcall_thumb_thumb.s
3576 $(TEST_AS) -march=armv6-m -o $@ $<
3577
3578MOSTLYCLEANFILES += arm_farcall_thumb_thumb arm_farcall_thumb_thumb_5t \
3579 arm_farcall_thumb_thumb_7m arm_farcall_thumb_thumb_6m
3580
3581# Check Thumb to ARM farcall veneers
3582
3583check_SCRIPTS += arm_farcall_thumb_arm.sh
3584check_DATA += arm_farcall_thumb_arm.stdout \
3585 arm_farcall_thumb_arm_5t.stdout
3586
3587arm_farcall_thumb_arm.stdout: arm_farcall_thumb_arm
3588 $(TEST_OBJDUMP) -D $< > $@
3589
3590arm_farcall_thumb_arm: arm_farcall_thumb_arm.o ../ld-new
3591 ../ld-new --section-start .text=0x1c01010 --section-start .foo=0x2001014 -o $@ $<
3592
3593arm_farcall_thumb_arm.o: arm_farcall_thumb_arm.s
3594 $(TEST_AS) -o $@ $<
3595
3596arm_farcall_thumb_arm_5t.stdout: arm_farcall_thumb_arm_5t
3597 $(TEST_OBJDUMP) -D $< > $@
3598
3599arm_farcall_thumb_arm_5t: arm_farcall_thumb_arm_5t.o ../ld-new
a8e2273b 3600 ../ld-new --no-fix-arm1176 --section-start .text=0x1c01010 --section-start .foo=0x2001014 -o $@ $<
cd6eab1c
ILT
3601
3602arm_farcall_thumb_arm_5t.o: arm_farcall_thumb_arm.s
3603 $(TEST_AS) -march=armv5t -o $@ $<
3604
3605MOSTLYCLEANFILES += arm_farcall_thumb_arm arm_farcall_thumb_arm_5t
3606
e4782e83 3607endif DEFAULT_TARGET_ARM
eb373049 3608
5627d875
IK
3609if DEFAULT_TARGET_AARCH64
3610
3611check_SCRIPTS += aarch64_reloc_none.sh
3612check_DATA += aarch64_reloc_none.stdout
3613aarch64_reloc_none.o: aarch64_reloc_none.s
3614 $(TEST_AS) -o $@ $<
3615aarch64_reloc_none: aarch64_reloc_none.o ../ld-new
3616 ../ld-new -o $@ aarch64_reloc_none.o --gc-sections
3617aarch64_reloc_none.stdout: aarch64_reloc_none
3618 $(TEST_NM) $< > $@
3619
3620MOSTLYCLEANFILES += aarch64_reloc_none
3621
3622endif DEFAULT_TARGET_AARCH64
3623
2b63aca3
MK
3624if DEFAULT_TARGET_S390
3625
3626check_SCRIPTS += split_s390.sh
3627check_DATA += split_s390_z1.stdout split_s390_z2.stdout split_s390_z3.stdout \
3628 split_s390_z4.stdout split_s390_n1.stdout split_s390_n2.stdout \
3629 split_s390_a1.stdout split_s390_a2.stdout split_s390_z1_ns.stdout \
3630 split_s390_z2_ns.stdout split_s390_z3_ns.stdout split_s390_z4_ns.stdout \
3631 split_s390_n1_ns.stdout split_s390_n2_ns.stdout split_s390_r.stdout \
3632 split_s390x_z1.stdout split_s390x_z2.stdout split_s390x_z3.stdout \
3633 split_s390x_z4.stdout split_s390x_n1.stdout split_s390x_n2.stdout \
3634 split_s390x_a1.stdout split_s390x_a2.stdout split_s390x_z1_ns.stdout \
3635 split_s390x_z2_ns.stdout split_s390x_z3_ns.stdout \
3636 split_s390x_z4_ns.stdout split_s390x_n1_ns.stdout \
3637 split_s390x_n2_ns.stdout split_s390x_r.stdout
3638SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3639split_s390_1_z1.o: split_s390_1_z1.s
3640 $(TEST_AS) -m31 -o $@ $<
3641split_s390_1_z2.o: split_s390_1_z2.s
3642 $(TEST_AS) -m31 -o $@ $<
3643split_s390_1_z3.o: split_s390_1_z3.s
3644 $(TEST_AS) -m31 -o $@ $<
3645split_s390_1_z4.o: split_s390_1_z4.s
3646 $(TEST_AS) -m31 -o $@ $<
3647split_s390_1_n1.o: split_s390_1_n1.s
3648 $(TEST_AS) -m31 -o $@ $<
3649split_s390_1_n2.o: split_s390_1_n2.s
3650 $(TEST_AS) -m31 -o $@ $<
3651split_s390_1_a1.o: split_s390_1_a1.s
3652 $(TEST_AS) -m31 -o $@ $<
3653split_s390_1_a2.o: split_s390_1_a2.s
3654 $(TEST_AS) -m31 -o $@ $<
3655split_s390_2_s.o: split_s390_2_s.s
3656 $(TEST_AS) -m31 -o $@ $<
3657split_s390_2_ns.o: split_s390_2_ns.s
3658 $(TEST_AS) -m31 -o $@ $<
3659split_s390_z1: split_s390_1_z1.o split_s390_2_s.o ../ld-new
3660 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z1.o split_s390_2_s.o
3661split_s390_z1.stdout: split_s390_z1
3662 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3663split_s390_z2: split_s390_1_z2.o split_s390_2_s.o ../ld-new
3664 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z2.o split_s390_2_s.o
3665split_s390_z2.stdout: split_s390_z2
3666 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3667split_s390_z3: split_s390_1_z3.o split_s390_2_s.o ../ld-new
3668 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z3.o split_s390_2_s.o
3669split_s390_z3.stdout: split_s390_z3
3670 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3671split_s390_z4: split_s390_1_z4.o split_s390_2_s.o ../ld-new
3672 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z4.o split_s390_2_s.o
3673split_s390_z4.stdout: split_s390_z4
3674 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3675split_s390_n1: split_s390_1_n1.o split_s390_2_s.o ../ld-new
3676 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n1.o split_s390_2_s.o
3677split_s390_n1.stdout: split_s390_n1
3678 $(TEST_OBJDUMP) -d $< > $@
3679split_s390_n2: split_s390_1_n2.o split_s390_2_s.o ../ld-new
3680 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n2.o split_s390_2_s.o
3681split_s390_n2.stdout: split_s390_n2
3682 $(TEST_OBJDUMP) -d $< > $@
3683split_s390_z1_ns: split_s390_1_z1.o split_s390_2_ns.o ../ld-new
3684 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z1.o split_s390_2_ns.o
3685split_s390_z1_ns.stdout: split_s390_z1_ns
3686 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3687split_s390_z2_ns: split_s390_1_z2.o split_s390_2_ns.o ../ld-new
3688 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z2.o split_s390_2_ns.o
3689split_s390_z2_ns.stdout: split_s390_z2_ns
3690 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3691split_s390_z3_ns: split_s390_1_z3.o split_s390_2_ns.o ../ld-new
3692 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z3.o split_s390_2_ns.o
3693split_s390_z3_ns.stdout: split_s390_z3_ns
3694 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3695split_s390_z4_ns: split_s390_1_z4.o split_s390_2_ns.o ../ld-new
3696 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z4.o split_s390_2_ns.o
3697split_s390_z4_ns.stdout: split_s390_z4_ns
3698 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3699split_s390_n1_ns: split_s390_1_n1.o split_s390_2_ns.o ../ld-new
3700 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n1.o split_s390_2_ns.o
3701split_s390_n1_ns.stdout: split_s390_n1_ns
3702 $(TEST_OBJDUMP) -d $< > $@
3703split_s390_n2_ns.stdout: split_s390_1_n2.o split_s390_2_ns.o ../ld-new
3704 ../ld-new $(SPLIT_DEFSYMS) -o split_s390_n2 split_s390_1_n2.o split_s390_2_ns.o > $@ 2>&1 || exit 0
3705split_s390_a1.stdout: split_s390_1_a1.o split_s390_2_ns.o ../ld-new
3706 ../ld-new $(SPLIT_DEFSYMS) -o split_s390_a1 split_s390_1_a1.o split_s390_2_ns.o > $@ 2>&1 || exit 0
3707split_s390_a2: split_s390_1_a2.o split_s390_2_ns.o ../ld-new
3708 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_a2.o split_s390_2_ns.o
3709split_s390_a2.stdout: split_s390_a2
3710 $(TEST_OBJDUMP) -d $< > $@
3711split_s390_r.stdout: split_s390_1_z1.o split_s390_2_ns.o ../ld-new
3712 ../ld-new -r split_s390_1_z1.o split_s390_2_ns.o -o split_s390_r > $@ 2>&1 || exit 0
3713split_s390x_1_z1.o: split_s390x_1_z1.s
3714 $(TEST_AS) -m64 -o $@ $<
3715split_s390x_1_z2.o: split_s390x_1_z2.s
3716 $(TEST_AS) -m64 -o $@ $<
3717split_s390x_1_z3.o: split_s390x_1_z3.s
3718 $(TEST_AS) -m64 -o $@ $<
3719split_s390x_1_z4.o: split_s390x_1_z4.s
3720 $(TEST_AS) -m64 -o $@ $<
3721split_s390x_1_n1.o: split_s390x_1_n1.s
3722 $(TEST_AS) -m64 -o $@ $<
3723split_s390x_1_n2.o: split_s390x_1_n2.s
3724 $(TEST_AS) -m64 -o $@ $<
3725split_s390x_1_a1.o: split_s390x_1_a1.s
3726 $(TEST_AS) -m64 -o $@ $<
3727split_s390x_1_a2.o: split_s390x_1_a2.s
3728 $(TEST_AS) -m64 -o $@ $<
3729split_s390x_2_s.o: split_s390x_2_s.s
3730 $(TEST_AS) -m64 -o $@ $<
3731split_s390x_2_ns.o: split_s390x_2_ns.s
3732 $(TEST_AS) -m64 -o $@ $<
3733split_s390x_z1: split_s390x_1_z1.o split_s390x_2_s.o ../ld-new
3734 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z1.o split_s390x_2_s.o
3735split_s390x_z1.stdout: split_s390x_z1
3736 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3737split_s390x_z2: split_s390x_1_z2.o split_s390x_2_s.o ../ld-new
3738 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z2.o split_s390x_2_s.o
3739split_s390x_z2.stdout: split_s390x_z2
3740 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3741split_s390x_z3: split_s390x_1_z3.o split_s390x_2_s.o ../ld-new
3742 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z3.o split_s390x_2_s.o
3743split_s390x_z3.stdout: split_s390x_z3
3744 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3745split_s390x_z4: split_s390x_1_z4.o split_s390x_2_s.o ../ld-new
3746 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z4.o split_s390x_2_s.o
3747split_s390x_z4.stdout: split_s390x_z4
3748 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3749split_s390x_n1: split_s390x_1_n1.o split_s390x_2_s.o ../ld-new
3750 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n1.o split_s390x_2_s.o
3751split_s390x_n1.stdout: split_s390x_n1
3752 $(TEST_OBJDUMP) -d $< > $@
3753split_s390x_n2: split_s390x_1_n2.o split_s390x_2_s.o ../ld-new
3754 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n2.o split_s390x_2_s.o
3755split_s390x_n2.stdout: split_s390x_n2
3756 $(TEST_OBJDUMP) -d $< > $@
3757split_s390x_z1_ns: split_s390x_1_z1.o split_s390x_2_ns.o ../ld-new
3758 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z1.o split_s390x_2_ns.o
3759split_s390x_z1_ns.stdout: split_s390x_z1_ns
3760 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3761split_s390x_z2_ns: split_s390x_1_z2.o split_s390x_2_ns.o ../ld-new
3762 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z2.o split_s390x_2_ns.o
3763split_s390x_z2_ns.stdout: split_s390x_z2_ns
3764 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3765split_s390x_z3_ns: split_s390x_1_z3.o split_s390x_2_ns.o ../ld-new
3766 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z3.o split_s390x_2_ns.o
3767split_s390x_z3_ns.stdout: split_s390x_z3_ns
3768 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3769split_s390x_z4_ns: split_s390x_1_z4.o split_s390x_2_ns.o ../ld-new
3770 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z4.o split_s390x_2_ns.o
3771split_s390x_z4_ns.stdout: split_s390x_z4_ns
3772 $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
3773split_s390x_n1_ns: split_s390x_1_n1.o split_s390x_2_ns.o ../ld-new
3774 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n1.o split_s390x_2_ns.o
3775split_s390x_n1_ns.stdout: split_s390x_n1_ns
3776 $(TEST_OBJDUMP) -d $< > $@
3777split_s390x_n2_ns.stdout: split_s390x_1_n2.o split_s390x_2_ns.o ../ld-new
3778 ../ld-new $(SPLIT_DEFSYMS) -o split_s390x_n2 split_s390x_1_n2.o split_s390x_2_ns.o > $@ 2>&1 || exit 0
3779split_s390x_a1.stdout: split_s390x_1_a1.o split_s390x_2_ns.o ../ld-new
3780 ../ld-new $(SPLIT_DEFSYMS) -o split_s390x_a1 split_s390x_1_a1.o split_s390x_2_ns.o > $@ 2>&1 || exit 0
3781split_s390x_a2: split_s390x_1_a2.o split_s390x_2_ns.o ../ld-new
3782 ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_a2.o split_s390x_2_ns.o
3783split_s390x_a2.stdout: split_s390x_a2
3784 $(TEST_OBJDUMP) -d $< > $@
3785split_s390x_r.stdout: split_s390x_1_z1.o split_s390x_2_ns.o ../ld-new
3786 ../ld-new -r split_s390x_1_z1.o split_s390x_2_ns.o -o split_s390x_r > $@ 2>&1 || exit 0
3787MOSTLYCLEANFILES += split_s390_z1 split_s390_z2 split_s390_z3 \
3788 split_s390_z4 split_s390_n1 split_s390_n2 split_s390_a1 \
3789 split_s390_a2 split_s390_z1_ns split_s390_z2_ns split_s390_z3_ns \
3790 split_s390_z4_ns split_s390_n1_ns split_s390_n2_ns split_s390_r \
3791 split_s390x_z1 split_s390x_z2 split_s390x_z3 split_s390x_z4 \
3792 split_s390x_n1 split_s390x_n2 split_s390x_a1 split_s390x_a2 \
3793 split_s390x_z1_ns split_s390x_z2_ns split_s390x_z3_ns \
3794 split_s390x_z4_ns split_s390x_n1_ns split_s390x_n2_ns split_s390x_r
3795
3796endif DEFAULT_TARGET_S390
3797
eb373049
ILT
3798endif NATIVE_OR_CROSS_LINKER
3799
35c813e2
CC
3800# Tests for the dwp tool.
3801# We don't want to rely yet on GCC support for -gsplit-dwarf,
3802# so we use (for now) test cases in x86 assembly language,
3803# compiled from the dwp_test_*.cc sources.
3804
3805if DEFAULT_TARGET_X86_64
3806
3807dwp_test_main.o: dwp_test_main.s
3808 $(TEST_AS) -o $@ $<
3809dwp_test_1.o: dwp_test_1.s
3810 $(TEST_AS) -o $@ $<
3811dwp_test_1b.o: dwp_test_1b.s
3812 $(TEST_AS) -o $@ $<
3813dwp_test_2.o: dwp_test_2.s
3814 $(TEST_AS) -o $@ $<
3815
3816dwp_test_main.dwo: dwp_test_main.o
3817 $(TEST_OBJCOPY) --extract-dwo $< $@
3818dwp_test_1.dwo: dwp_test_1.o
3819 $(TEST_OBJCOPY) --extract-dwo $< $@
3820dwp_test_1b.dwo: dwp_test_1b.o
3821 $(TEST_OBJCOPY) --extract-dwo $< $@
3822dwp_test_2.dwo: dwp_test_2.o
3823 $(TEST_OBJCOPY) --extract-dwo $< $@
3824
0ec6429b 3825MOSTLYCLEANFILES += *.dwo *.dwp
35c813e2
CC
3826check_SCRIPTS += dwp_test_1.sh
3827check_DATA += dwp_test_1.stdout
3828dwp_test_1.stdout: dwp_test_1.dwp
3829 $(TEST_READELF) -wi $< > $@
3830dwp_test_1.dwp: ../dwp dwp_test_main.dwo dwp_test_1.dwo dwp_test_1b.dwo dwp_test_2.dwo
3831 ../dwp -o $@ dwp_test_main.dwo dwp_test_1.dwo dwp_test_1b.dwo dwp_test_2.dwo
3832
3833check_SCRIPTS += dwp_test_2.sh
3834check_DATA += dwp_test_2.stdout
3835dwp_test_2.stdout: dwp_test_2.dwp
3836 $(TEST_READELF) -wi $< > $@
3837dwp_test_2.dwp: ../dwp dwp_test_2a.dwp dwp_test_2b.dwp
3838 ../dwp -o $@ dwp_test_2a.dwp dwp_test_2b.dwp
3839dwp_test_2a.dwp: ../dwp dwp_test_main.dwo dwp_test_1.dwo
3840 ../dwp -o $@ dwp_test_main.dwo dwp_test_1.dwo
3841dwp_test_2b.dwp: ../dwp dwp_test_1b.dwo dwp_test_2.dwo
3842 ../dwp -o $@ dwp_test_1b.dwo dwp_test_2.dwo
3843
3844endif DEFAULT_TARGET_X86_64
This page took 0.64503 seconds and 4 git commands to generate.