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