manual copyright year range of various GDB files to add 2023
[binutils-gdb.git] / gold / testsuite / Makefile.am
blobdf9405c1aacf7aa04b6d7fdaa18f1f4e388d9fa1
1 # Process this file with automake to generate Makefile.in
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.
7 # Ignore warning about AM_PROG_CC_C_O due to large_CFLAGS
8 AUTOMAKE_OPTIONS = foreign -Wno-portability
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
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)
21 AM_CPPFLAGS = \
22         -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../../include \
23         -I$(srcdir)/../../elfcpp -I.. \
24         -DLOCALEDIR="\"$(datadir)/locale\"" \
25         @INCINTL@
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
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 differ in newer automake used by gold, but note the
36 # addition of OPT_NO_PLUGINS and use of CC and CXX in LINK1 and CXXLINK1.
37 COMPILE1 = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
38         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
39 LINK1 = $(CC) $(AM_CFLAGS) $(CFLAGS) $(OPT_NO_PLUGINS) \
40         $(AM_LDFLAGS) $(LDFLAGS) -o $@
41 CXXCOMPILE1 = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
42         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
43 CXXLINK1 = $(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) $(OPT_NO_PLUGINS) \
44         $(AM_LDFLAGS) $(LDFLAGS) -o $@
46 # Put our -B option before any other -B that might be in $CC or $CXX
47 editcc = -e 's/\([^ ]*\)\(.*\)/\1 -Bgcctestdir\/\2/'
49 # Strip out -Wp,-D_FORTIFY_SOURCE=, which is irrelevant for the gold
50 # testsuite and incompatible with -O0 used in gold tests.
51 editcc1 = -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'
53 CCLD = `echo $(CC) | sed $(editcc)`
54 CXXLD = `echo $(CXX) | sed $(editcc)`
55 COMPILE = `echo $(COMPILE1) | sed $(editcc) $(editcc1)`
56 LINK = `echo $(LINK1) | sed $(editcc) $(editcc1)`
57 CXXCOMPILE = `echo $(CXXCOMPILE1) | sed $(editcc) $(editcc1)`
58 CXXLINK = `echo $(CXXLINK1) | sed $(editcc) $(editcc1)`
60 # Strip out -static-libgcc and -static-libstdc++ options, for tests
61 # that must have these libraries linked dynamically.  The -shared-libgcc
62 # option does not work correctly, and there is no -shared-libstdc++ option.
63 # (See GCC PR 55781 and PR 55782.)
64 editcc2 = -e 's/-static-lib\(gcc\|stdc++\) *//g'
65 CXXLINK_S = `echo $(CXXLINK1) | sed $(editcc) $(editcc1) $(editcc2)`
67 TEST_READELF = $(top_builddir)/../binutils/readelf
68 TEST_OBJDUMP = $(top_builddir)/../binutils/objdump
69 TEST_OBJCOPY = $(top_builddir)/../binutils/objcopy
70 TEST_CXXFILT = $(top_builddir)/../binutils/cxxfilt
71 TEST_STRIP = $(top_builddir)/../binutils/strip-new
72 TEST_AR = $(top_builddir)/../binutils/ar
73 TEST_NM = $(top_builddir)/../binutils/nm-new
74 TEST_AS = $(top_builddir)/../gas/as-new
76 if PLUGINS
77 LIBDL = -ldl
78 endif
80 if THREADS
81 THREADFLAGS = @PTHREAD_CFLAGS@
82 THREADLIBS = @PTHREAD_LIBS@
83 endif
85 if OMP_SUPPORT
86 TLS_TEST_C_CFLAGS = -fopenmp
87 endif
89 # Since GCC 10 defaults to -fno-common, add -fcommon to common tests to
90 # force common behavior.
91 COMMON_TEST_C_CFLAGS = -fcommon
93 # 'make clean' is good about deleting some intermediate files (such as
94 # .o's), but not all of them (such as .so's and .err files).  We
95 # improve on that here.  automake-1.9 info docs say "mostlyclean" is
96 # the right choice for files 'make' builds that people rebuild.
97 MOSTLYCLEANFILES = *.so *.syms *.stdout *.stderr
99 # Export make variables to the shell scripts so that they can see
100 # (for example) DEFAULT_TARGET.
101 .EXPORT_ALL_VARIABLES:
103 # We will add to these later, for each individual test.  Note
104 # that we add each test under check_SCRIPTS or check_PROGRAMS;
105 # the TESTS variable is automatically populated from these.
106 check_SCRIPTS =
107 check_DATA =
108 check_PROGRAMS =
109 BUILT_SOURCES =
111 TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
113 # ---------------------------------------------------------------------
114 # These tests test the internals of gold (unittests).
116 # Infrastucture needed for the unittests
117 check_LIBRARIES = libgoldtest.a
118 libgoldtest_a_SOURCES = test.cc testmain.cc testfile.cc
120 DEPENDENCIES = \
121         libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL_DEP)
123 # The unittests themselves
124 if NATIVE_OR_CROSS_LINKER
125 if GCC
127 # Infrastucture needed for the unittests: a directory where the linker
128 # is named 'ld'.  This is because the -B flag appends 'ld' to its arg.
129 gcctestdir/ld: ../ld-new gcctestdir/collect-ld
130         test -d gcctestdir || mkdir -p gcctestdir
131         rm -f $@
132         $(LN_S) $(abs_top_builddir)/ld-new $@
134 # Needed when using uninstalled compiler
135 gcctestdir/collect-ld: ../ld-new
136         test -d gcctestdir || mkdir -p gcctestdir
137         rm -f $@
138         $(LN_S) $(abs_top_builddir)/ld-new $@
140 # Some tests require the latest features of an in-tree assembler.
141 gcctestdir/as: $(TEST_AS)
142         test -d gcctestdir || mkdir -p gcctestdir
143         rm -f $@
144         $(LN_S) $(abs_top_builddir)/../gas/as-new $@
146 endif GCC
148 check_PROGRAMS += object_unittest
149 object_unittest_SOURCES = object_unittest.cc
150 object_unittest_LDFLAGS = $(THREADFLAGS)
151 object_unittest_LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
152         $(THREADLIBS) $(LIBDL) $(ZLIB) $(ZSTD_LIBS) $(JANSSON_LIBS)
154 check_PROGRAMS += binary_unittest
155 binary_unittest_SOURCES = binary_unittest.cc
156 binary_unittest_LDFLAGS = $(THREADFLAGS)
157 binary_unittest_LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
158         $(THREADLIBS) $(LIBDL) $(ZLIB) $(ZSTD_LIBS) $(JANSSON_LIBS)
160 check_PROGRAMS += leb128_unittest
161 leb128_unittest_SOURCES = leb128_unittest.cc
162 leb128_unittest_LDFLAGS = $(THREADFLAGS)
163 leb128_unittest_LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
164         $(THREADLIBS) $(LIBDL) $(ZLIB) $(ZSTD_LIBS) $(JANSSON_LIBS)
166 check_PROGRAMS += overflow_unittest
167 overflow_unittest_SOURCES = overflow_unittest.cc
168 overflow_unittest_LDFLAGS = $(THREADFLAGS)
169 overflow_unittest_LDADD = libgoldtest.a ../libgold.a ../../libiberty/libiberty.a $(LIBINTL) \
170         $(THREADLIBS) $(LIBDL) $(ZLIB) $(ZSTD_LIBS) $(JANSSON_LIBS)
171 overflow_unittest.o: overflow_unittest.cc
172         $(CXXCOMPILE) -O3 -c -o $@ $<
174 endif NATIVE_OR_CROSS_LINKER
176 # ---------------------------------------------------------------------
177 # These tests test the output of gold (end-to-end tests).  In
178 # particular, they make sure that gold can link "difficult" object
179 # files, and the resulting object files run correctly.  These can only
180 # run if we've built ld-new for the native architecture (that is,
181 # we're not cross-compiling it), since we run ld-new as part of these
182 # tests.  We use the gcc-specific flag '-B' to use our linker instead
183 # of the default linker, which is why we only run our tests under gcc.
185 if NATIVE_LINKER
186 if GCC
188 # Test empty command line error conditions.
189 check_SCRIPTS += empty_command_line_test.sh
190 empty_command_line_test.sh: gcctestdir/ld
192 # Each of these .o's is a useful, small complete program.  They're
193 # particularly useful for making sure ld-new's flags do what they're
194 # supposed to (hence their names), but are used for many tests that
195 # don't actually involve analyzing input data.
196 flagstest_debug.o: constructor_test.cc
197         $(CXXCOMPILE) -O0 -g -c -o $@ $<
198 flagstest_ndebug.o: constructor_test.cc
199         $(CXXCOMPILE) -O0 -c -o $@ $<
201 check_SCRIPTS += incremental_test.sh
202 check_DATA += incremental_test.stdout
203 MOSTLYCLEANFILES += incremental_test incremental_test.cmdline
204 incremental_test_1.o: incremental_test_1.c
205         $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
206 incremental_test_2.o: incremental_test_2.c
207         $(COMPILE) -O0 -c -ffunction-sections -g -o $@ $<
208 incremental_test: incremental_test_1.o incremental_test_2.o gcctestdir/ld
209         $(LINK) -Wl,--incremental-full -Wl,-z,norelro,-no-pie incremental_test_1.o incremental_test_2.o -Wl,-debug 2> incremental_test.cmdline
210 incremental_test.stdout: incremental_test ../incremental-dump
211         ../incremental-dump incremental_test > $@
213 check_SCRIPTS += gc_comdat_test.sh
214 check_DATA += gc_comdat_test.stdout
215 MOSTLYCLEANFILES += gc_comdat_test
216 gc_comdat_test_1.o: gc_comdat_test_1.cc
217         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
218 gc_comdat_test_2.o: gc_comdat_test_2.cc
219         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
220 gc_comdat_test: gc_comdat_test_1.o gc_comdat_test_2.o gcctestdir/ld
221         $(CXXLINK) -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
222 gc_comdat_test.stdout: gc_comdat_test
223         $(TEST_NM) -C gc_comdat_test > gc_comdat_test.stdout
225 check_SCRIPTS += gc_tls_test.sh
226 check_DATA += gc_tls_test.stdout
227 MOSTLYCLEANFILES += gc_tls_test
228 gc_tls_test.o: gc_tls_test.cc
229         $(CXXCOMPILE) -O0 -c -g -o $@ $<
230 gc_tls_test:gc_tls_test.o gcctestdir/ld
231         $(CXXLINK) -Wl,--gc-sections gc_tls_test.o
232 gc_tls_test.stdout: gc_tls_test
233         $(TEST_NM) -C gc_tls_test > gc_tls_test.stdout
235 check_SCRIPTS += gc_orphan_section_test.sh
236 check_DATA += gc_orphan_section_test.stdout
237 MOSTLYCLEANFILES += gc_orphan_section_test
238 gc_orphan_section_test.o: gc_orphan_section_test.cc
239         $(CXXCOMPILE) -O0 -c -g -o $@ $<
240 gc_orphan_section_test:gc_orphan_section_test.o gcctestdir/ld
241         $(CXXLINK) -Wl,--gc-sections gc_orphan_section_test.o
242 gc_orphan_section_test.stdout: gc_orphan_section_test
243         $(TEST_NM) gc_orphan_section_test > gc_orphan_section_test.stdout
245 check_SCRIPTS += pr14265.sh
246 check_DATA += pr14265.stdout
247 MOSTLYCLEANFILES += pr14265
248 pr14265.o: pr14265.c
249         $(COMPILE) -O0 -c -o $@ $<
250 pr14265: pr14265.o gcctestdir/ld $(srcdir)/pr14265.t
251         $(LINK) -Wl,--gc-sections -Wl,-T,$(srcdir)/pr14265.t -o $@ $<
252 pr14265.stdout: pr14265
253         $(TEST_NM) --format=bsd --numeric-sort $< > $@
255 check_SCRIPTS += pr20717.sh
256 check_DATA += pr20717.stdout
257 MOSTLYCLEANFILES += pr20717
258 pr20717.o: pr20717.c
259         $(COMPILE) -O0 -ffunction-sections -c -o $@ $<
260 pr20717: pr20717.o gcctestdir/ld $(srcdir)/pr20717.t
261         $(LINK) -Wl,--gc-sections -Wl,-T,$(srcdir)/pr20717.t -o $@ $<
262 pr20717.stdout: pr20717
263         $(TEST_NM) $< > $@
265 check_SCRIPTS += gc_dynamic_list_test.sh
266 check_DATA += gc_dynamic_list_test.stdout
267 MOSTLYCLEANFILES += gc_dynamic_list_test
268 gc_dynamic_list_test.o: gc_dynamic_list_test.c
269         $(COMPILE) -c -ffunction-sections -o $@ $<
270 gc_dynamic_list_test: gc_dynamic_list_test.o gcctestdir/ld $(srcdir)/gc_dynamic_list_test.t
271         $(LINK) -Wl,--gc-sections -Wl,--dynamic-list,$(srcdir)/gc_dynamic_list_test.t gc_dynamic_list_test.o
272 gc_dynamic_list_test.stdout: gc_dynamic_list_test
273         $(TEST_NM) gc_dynamic_list_test > $@
275 check_SCRIPTS += icf_test.sh
276 check_DATA += icf_test.map
277 MOSTLYCLEANFILES += icf_test icf_test.map
278 icf_test.o: icf_test.cc
279         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
280 icf_test: icf_test.o gcctestdir/ld
281         $(CXXLINK) -o icf_test -Wl,--icf=all,-Map,icf_test.map icf_test.o
282 icf_test.map: icf_test
283         @touch icf_test.map
285 check_SCRIPTS += icf_test_pr21066.sh
286 check_DATA += icf_test_pr21066.map
287 MOSTLYCLEANFILES += icf_test_pr21066 icf_test_pr21066.map
288 icf_test_pr21066.o: icf_test_pr21066.cc
289         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
290 icf_test_pr21066: icf_test_pr21066.o gcctestdir/ld
291         $(CXXLINK) -o icf_test_pr21066 -Bgcctestdir/ -Wl,--icf=all,-Map,icf_test_pr21066.map icf_test_pr21066.o
292 icf_test_pr21066.map: icf_test_pr21066
293         @touch icf_test_pr21066.map
295 check_SCRIPTS += icf_keep_unique_test.sh
296 check_DATA += icf_keep_unique_test.stdout
297 MOSTLYCLEANFILES += icf_keep_unique_test
298 icf_keep_unique_test.o: icf_keep_unique_test.cc
299         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
300 icf_keep_unique_test: icf_keep_unique_test.o gcctestdir/ld
301         $(CXXLINK) -Wl,--icf=all -Wl,--keep-unique,_Z11unique_funcv icf_keep_unique_test.o
302 icf_keep_unique_test.stdout: icf_keep_unique_test
303         $(TEST_NM) -C $< > $@
305 check_SCRIPTS += icf_safe_test.sh
306 check_DATA += icf_safe_test_1.stdout icf_safe_test_2.stdout icf_safe_test.map
307 MOSTLYCLEANFILES += icf_safe_test icf_safe_test.map
308 icf_safe_test.o: icf_safe_test.cc
309         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
310 icf_safe_test: icf_safe_test.o gcctestdir/ld
311         $(CXXLINK) -o icf_safe_test -Wl,--icf=safe,-Map,icf_safe_test.map icf_safe_test.o
312 icf_safe_test.map: icf_safe_test
313         @touch icf_safe_test.map
314 icf_safe_test_1.stdout: icf_safe_test
315         $(TEST_NM) $< > $@
316 icf_safe_test_2.stdout: icf_safe_test
317         $(TEST_READELF) -h $< > $@
319 check_SCRIPTS += icf_safe_pie_test.sh
320 check_DATA += icf_safe_pie_test_1.stdout icf_safe_pie_test_2.stdout icf_safe_pie_test.map
321 MOSTLYCLEANFILES += icf_safe_pie_test icf_safe_pie_test.map
322 icf_safe_pie_test.o: icf_safe_test.cc
323         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIE -g -o $@ $<
324 icf_safe_pie_test: icf_safe_pie_test.o gcctestdir/ld
325         $(CXXLINK) -o icf_safe_pie_test -Wl,--icf=safe,-Map,icf_safe_pie_test.map icf_safe_pie_test.o -pie
326 icf_safe_pie_test.map: icf_safe_pie_test
327         @touch icf_safe_pie_test.map
328 icf_safe_pie_test_1.stdout: icf_safe_pie_test
329         $(TEST_NM) $< > $@
330 icf_safe_pie_test_2.stdout: icf_safe_pie_test
331         $(TEST_READELF) -h $< > $@
333 check_SCRIPTS += icf_safe_so_test.sh
334 check_DATA += icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout icf_safe_so_test.map
335 MOSTLYCLEANFILES += icf_safe_so_test icf_safe_so_test.map
336 icf_safe_so_test.o: icf_safe_so_test.cc
337         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
338 icf_safe_so_test: icf_safe_so_test.o gcctestdir/ld
339         $(CXXLINK) -o icf_safe_so_test -Wl,--icf=safe,-Map,icf_safe_so_test.map icf_safe_so_test.o -fPIC -shared
340 icf_safe_so_test.map:
341         @touch icf_safe_so_test.map
342 icf_safe_so_test_1.stdout: icf_safe_so_test
343         $(TEST_NM) $< > $@
344 icf_safe_so_test_2.stdout: icf_safe_so_test
345         $(TEST_READELF) -h $< > $@
347 check_SCRIPTS += final_layout.sh
348 check_DATA += final_layout.stdout
349 MOSTLYCLEANFILES += final_layout final_layout_sequence.txt final_layout_script.lds
350 final_layout.o: final_layout.cc
351         $(CXXCOMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
352 final_layout_sequence.txt:
353         (echo "*_Z3barv*" && echo ".text._Z3bazv" && echo "*_Z3foov*" && echo "*global_varb*" && echo "*global_vara*" && echo "*global_varc*") > final_layout_sequence.txt
354 final_layout_script.lds:
355         (echo "SECTIONS { .text : { *(.text*) } .got : { *(.got .toc) } .sbss : { *(.sbss*) } .bss : { *(.bss*) } }") > final_layout_script.lds
356 final_layout: final_layout.o final_layout_sequence.txt final_layout_script.lds gcctestdir/ld
357         $(CXXLINK) -Wl,--section-ordering-file,final_layout_sequence.txt -Wl,-T,final_layout_script.lds final_layout.o
358 final_layout.stdout: final_layout
359         $(TEST_NM) -n --synthetic final_layout > final_layout.stdout
361 check_SCRIPTS += text_section_grouping.sh
362 check_DATA += text_section_grouping.stdout text_section_no_grouping.stdout
363 MOSTLYCLEANFILES += text_section_grouping text_section_no_grouping
364 text_section_grouping.o: text_section_grouping.cc
365         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
366 text_section_grouping: text_section_grouping.o gcctestdir/ld
367         $(CXXLINK) text_section_grouping.o
368 text_section_no_grouping: text_section_grouping.o gcctestdir/ld
369         $(CXXLINK) -Wl,--no-text-reorder text_section_grouping.o
370 text_section_grouping.stdout: text_section_grouping
371         $(TEST_NM) -n --synthetic text_section_grouping > text_section_grouping.stdout
372 text_section_no_grouping.stdout: text_section_no_grouping
373         $(TEST_NM) -n --synthetic text_section_no_grouping > text_section_no_grouping.stdout
375 check_SCRIPTS += section_sorting_name.sh
376 check_DATA += section_sorting_name.stdout
377 MOSTLYCLEANFILES += section_sorting_name
378 section_sorting_name.o: section_sorting_name.cc
379         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
380 section_sorting_name: section_sorting_name.o gcctestdir/ld
381         $(CXXLINK) -Wl,--sort-section=name section_sorting_name.o
382 section_sorting_name.stdout: section_sorting_name
383         $(TEST_NM) -n --synthetic section_sorting_name > section_sorting_name.stdout
385 check_SCRIPTS += text_unlikely_segment.sh
386 check_DATA += text_unlikely_segment_readelf.stdout
387 MOSTLYCLEANFILES += text_unlikely_segment
388 text_unlikely_segment.o: text_unlikely_segment.cc
389         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
390 text_unlikely_segment: text_unlikely_segment.o gcctestdir/ld
391         $(CXXLINK) -Wl,-z,text-unlikely-segment text_unlikely_segment.o
392 text_unlikely_segment_readelf.stdout: text_unlikely_segment
393         $(TEST_READELF) -Wl $< >$@
395 check_SCRIPTS += keep_text_section_prefix.sh
396 check_DATA += keep_text_section_prefix_readelf.stdout keep_text_section_prefix_nm.stdout
397 MOSTLYCLEANFILES += keep_text_section_prefix
398 keep_text_section_prefix.o: keep_text_section_prefix.cc
399         $(CXXCOMPILE) -O0 -c -ffunction-sections -g -o $@ $<
400 keep_text_section_prefix: keep_text_section_prefix.o gcctestdir/ld
401         $(CXXLINK) -Wl,-z,keep-text-section-prefix keep_text_section_prefix.o
402 keep_text_section_prefix_readelf.stdout: keep_text_section_prefix
403         $(TEST_READELF) -Wl $< >$@
404 keep_text_section_prefix_nm.stdout: keep_text_section_prefix
405         $(TEST_NM) -n --synthetic $< >$@
407 check_PROGRAMS += icf_virtual_function_folding_test
408 MOSTLYCLEANFILES += icf_virtual_function_folding_test icf_virtual_function_folding_test.map
409 icf_virtual_function_folding_test.o: icf_virtual_function_folding_test.cc
410         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIE -g -o $@ $<
411 icf_virtual_function_folding_test: icf_virtual_function_folding_test.o gcctestdir/ld
412         $(CXXLINK) -Wl,--icf=all icf_virtual_function_folding_test.o -pie
414 check_SCRIPTS += icf_preemptible_functions_test.sh
415 check_DATA += icf_preemptible_functions_test.stdout
416 MOSTLYCLEANFILES += icf_preemptible_functions_test
417 icf_preemptible_functions_test.o: icf_preemptible_functions_test.cc
418         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
419 icf_preemptible_functions_test: icf_preemptible_functions_test.o gcctestdir/ld
420         $(CXXLINK) -Wl,--icf=all icf_preemptible_functions_test.o -fPIC -shared
421 icf_preemptible_functions_test.stdout: icf_preemptible_functions_test
422         $(TEST_NM) icf_preemptible_functions_test > icf_preemptible_functions_test.stdout
424 check_SCRIPTS += icf_string_merge_test.sh
425 check_DATA += icf_string_merge_test.stdout
426 MOSTLYCLEANFILES += icf_string_merge_test
427 icf_string_merge_test.o: icf_string_merge_test.cc
428         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
429 icf_string_merge_test: icf_string_merge_test.o gcctestdir/ld
430         $(CXXLINK) -Wl,--icf=all icf_string_merge_test.o
431 icf_string_merge_test.stdout: icf_string_merge_test
432         $(TEST_NM) icf_string_merge_test > icf_string_merge_test.stdout
434 check_SCRIPTS += icf_sht_rel_addend_test.sh
435 check_DATA += icf_sht_rel_addend_test.stdout
436 MOSTLYCLEANFILES += icf_sht_rel_addend_test
437 icf_sht_rel_addend_test_1.o: icf_sht_rel_addend_test_1.cc
438         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
439 icf_sht_rel_addend_test_2.o: icf_sht_rel_addend_test_2.cc
440         $(CXXCOMPILE) -O0 -c -ffunction-sections -fPIC -g -o $@ $<
441 icf_sht_rel_addend_test: icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o gcctestdir/ld
442         $(CXXLINK) -Wl,--icf=all icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o
443 icf_sht_rel_addend_test.stdout: icf_sht_rel_addend_test
444         $(TEST_NM) icf_sht_rel_addend_test > icf_sht_rel_addend_test.stdout
446 check_PROGRAMS += large_symbol_alignment
447 large_symbol_alignment_SOURCES = large_symbol_alignment.cc
448 large_symbol_alignment_DEPENDENCIES = gcctestdir/ld
449 large_symbol_alignment_LDADD =
451 check_SCRIPTS += merge_string_literals.sh
452 check_DATA += merge_string_literals.stdout
453 MOSTLYCLEANFILES += merge_string_literals
454 merge_string_literals_1.o: merge_string_literals_1.cc
455         $(CXXCOMPILE) -O2 -c -fPIC -g -o $@ $<
456 merge_string_literals_2.o: merge_string_literals_2.cc
457         $(CXXCOMPILE) -O2 -c -fPIC -g -o $@ $<
458 merge_string_literals: merge_string_literals_1.o merge_string_literals_2.o gcctestdir/ld
459         $(CXXLINK) merge_string_literals_1.o merge_string_literals_2.o -O2 -shared -nostdlib
460 merge_string_literals.stdout: merge_string_literals
461         $(TEST_OBJDUMP) -s -j.rodata merge_string_literals > merge_string_literals.stdout
463 check_PROGRAMS += basic_test
464 check_PROGRAMS += basic_pic_test
465 basic_test.o: basic_test.cc
466         $(CXXCOMPILE) -O0 -c -o $@ $<
467 basic_test: basic_test.o gcctestdir/ld
468         $(CXXLINK) basic_test.o
470 check_PROGRAMS += eh_test
471 eh_test_a.o: eh_test_a.cc
472         $(CXXCOMPILE) -O0 -c -o $@ $<
473 eh_test_b.o: eh_test_b.cc
474         $(CXXCOMPILE) -O0 -c -o $@ $<
475 eh_test: eh_test_a.o eh_test_b.o gcctestdir/ld
476         $(CXXLINK_S) eh_test_a.o eh_test_b.o
478 check_SCRIPTS += eh_test_2.sh
479 check_DATA += eh_test_2.sects
480 MOSTLYCLEANFILES += eh_test_2 eh_test_2.sects
481 eh_test_r.o: eh_test_a.o eh_test_b.o gcctestdir/ld
482         gcctestdir/ld -r -o $@ eh_test_a.o eh_test_b.o
483 eh_test_2: eh_test_r.o gcctestdir/ld
484         $(CXXLINK_S) -Wl,--eh-frame-hdr eh_test_r.o
485 eh_test_2.sects: eh_test_2
486         $(TEST_READELF) -SW $< >$@ 2>/dev/null
488 if HAVE_STATIC
489 check_PROGRAMS += basic_static_test
490 basic_static_test: basic_test.o gcctestdir/ld
491         $(CXXLINK) -static basic_test.o
492 endif
494 basic_pic_test.o: basic_test.cc
495         $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
496 basic_pic_test: basic_pic_test.o gcctestdir/ld
497         $(CXXLINK) basic_pic_test.o
499 if HAVE_STATIC
500 check_PROGRAMS += basic_static_pic_test
501 basic_static_pic_test: basic_pic_test.o gcctestdir/ld
502         $(CXXLINK) -static basic_pic_test.o
503 endif
505 check_PROGRAMS += basic_pie_test
506 basic_pie_test.o: basic_test.cc
507         $(CXXCOMPILE) -O0 -c -fpie -o $@ $<
508 basic_pie_test: basic_pie_test.o gcctestdir/ld
509         $(CXXLINK) -pie basic_pie_test.o
511 if THREADS
512 check_PROGRAMS += basic_threads_test
513 basic_threads_test: basic_test.o gcctestdir/ld
514         $(CXXLINK) -Wl,--threads basic_test.o
515 endif
517 check_PROGRAMS += constructor_test
518 constructor_test_SOURCES = constructor_test.cc
519 constructor_test_DEPENDENCIES = gcctestdir/ld
520 constructor_test_LDADD =
522 if HAVE_STATIC
523 check_PROGRAMS += constructor_static_test
524 constructor_static_test_SOURCES = $(constructor_test_SOURCES)
525 constructor_static_test_DEPENDENCIES = $(constructor_test_DEPENDENCIES)
526 constructor_static_test_LDFLAGS = $(constructor_test_LDFLAGS) -static
527 constructor_static_test_LDADD = $(constructor_test_LDADD)
528 endif
530 check_PROGRAMS += two_file_test
531 check_PROGRAMS += two_file_pic_test
532 two_file_test_SOURCES = \
533         two_file_test_1.cc \
534         two_file_test_1b.cc \
535         two_file_test_2.cc \
536         two_file_test_main.cc \
537         two_file_test.h
538 two_file_test_DEPENDENCIES = gcctestdir/ld
539 two_file_test_LDADD =
541 if HAVE_STATIC
542 check_PROGRAMS += two_file_static_test
543 two_file_static_test_SOURCES = $(two_file_test_SOURCES)
544 two_file_static_test_DEPENDENCIES = $(two_file_test_DEPENDENCIES)
545 two_file_static_test_LDFLAGS = $(two_file_test_LDFLAGS) -static
546 two_file_static_test_LDADD = $(two_file_test_LDADD)
547 endif
549 two_file_pic_test_SOURCES = two_file_test_main.cc
550 two_file_pic_test_DEPENDENCIES = \
551         gcctestdir/ld two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
552 two_file_pic_test_LDADD = two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
555 check_PROGRAMS += two_file_shared_1_test
556 check_PROGRAMS += two_file_shared_2_test
557 check_PROGRAMS += two_file_shared_1_pic_2_test
558 check_PROGRAMS += two_file_shared_2_pic_1_test
559 check_PROGRAMS += two_file_same_shared_test
560 check_PROGRAMS += two_file_separate_shared_12_test
561 check_PROGRAMS += two_file_separate_shared_21_test
562 two_file_test_1_pic.o: two_file_test_1.cc
563         $(CXXCOMPILE) -c -fpic -o $@ $<
564 two_file_test_1b_pic.o: two_file_test_1b.cc
565         $(CXXCOMPILE) -c -fpic -o $@ $<
566 two_file_test_2_pic.o: two_file_test_2.cc
567         $(CXXCOMPILE) -c -fpic -o $@ $<
568 two_file_shared_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o gcctestdir/ld
569         $(CXXLINK) -shared two_file_test_1_pic.o two_file_test_1b_pic.o
570 two_file_shared_2.so: two_file_test_2_pic.o gcctestdir/ld
571         $(CXXLINK) -shared two_file_test_2_pic.o
572 two_file_shared.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o gcctestdir/ld
573         $(CXXLINK) -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
575 two_file_shared_1_test_SOURCES = two_file_test_2.cc two_file_test_main.cc
576 two_file_shared_1_test_DEPENDENCIES = gcctestdir/ld two_file_shared_1.so
577 two_file_shared_1_test_LDFLAGS = -Wl,-R,.
578 two_file_shared_1_test_LDADD = two_file_shared_1.so
580 two_file_shared_2_test_SOURCES = two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
581 two_file_shared_2_test_DEPENDENCIES = gcctestdir/ld two_file_shared_2.so
582 two_file_shared_2_test_LDFLAGS = -Wl,-R,.
583 two_file_shared_2_test_LDADD = two_file_shared_2.so
585 two_file_shared_1_pic_2_test_SOURCES = two_file_test_main.cc
586 two_file_shared_1_pic_2_test_DEPENDENCIES = \
587         gcctestdir/ld two_file_shared_2.so two_file_test_1_pic.o two_file_test_1b_pic.o
588 two_file_shared_1_pic_2_test_LDFLAGS = -Wl,-R,.
589 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
591 two_file_shared_2_pic_1_test_SOURCES = two_file_test_main.cc
592 two_file_shared_2_pic_1_test_DEPENDENCIES = \
593         gcctestdir/ld two_file_shared_1.so two_file_test_2_pic.o
594 two_file_shared_2_pic_1_test_LDFLAGS = -Wl,-R,.
595 two_file_shared_2_pic_1_test_LDADD = two_file_test_2_pic.o two_file_shared_1.so
597 two_file_same_shared_test_SOURCES = two_file_test_main.cc
598 two_file_same_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared.so
599 two_file_same_shared_test_LDFLAGS = -Wl,-R,.
600 two_file_same_shared_test_LDADD = two_file_shared.so
602 two_file_separate_shared_12_test_SOURCES = two_file_test_main.cc
603 two_file_separate_shared_12_test_DEPENDENCIES = \
604         gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
605 two_file_separate_shared_12_test_LDFLAGS = -Wl,-R,.
606 two_file_separate_shared_12_test_LDADD = \
607         two_file_shared_1.so two_file_shared_2.so
609 two_file_separate_shared_21_test_SOURCES = two_file_test_main.cc
610 two_file_separate_shared_21_test_DEPENDENCIES = \
611         gcctestdir/ld two_file_shared_1.so two_file_shared_2.so
612 two_file_separate_shared_21_test_LDFLAGS = -Wl,-R,.
613 two_file_separate_shared_21_test_LDADD = \
614         two_file_shared_2.so two_file_shared_1.so
616 check_PROGRAMS += two_file_relocatable_test
617 two_file_relocatable_test_SOURCES = two_file_test_main.cc
618 two_file_relocatable_test_DEPENDENCIES = \
619         gcctestdir/ld two_file_relocatable.o
620 two_file_relocatable_test_LDFLAGS = -Wl,-R,.
621 two_file_relocatable_test_LDADD = two_file_relocatable.o
622 two_file_relocatable.o: gcctestdir/ld two_file_test_1.o two_file_test_1b.o two_file_test_2.o
623         gcctestdir/ld -r -o $@ two_file_test_1.o two_file_test_1b.o two_file_test_2.o
625 check_PROGRAMS += two_file_pie_test
626 two_file_test_1_pie.o: two_file_test_1.cc
627         $(CXXCOMPILE) -c -fpie -o $@ $<
628 two_file_test_1b_pie.o: two_file_test_1b.cc
629         $(CXXCOMPILE) -c -fpie -o $@ $<
630 two_file_test_2_pie.o: two_file_test_2.cc
631         $(CXXCOMPILE) -c -fpie -o $@ $<
632 two_file_test_main_pie.o: two_file_test_main.cc
633         $(CXXCOMPILE) -c -fpie -o $@ $<
634 two_file_pie_test: two_file_test_1_pie.o two_file_test_1b_pie.o \
635                 two_file_test_2_pie.o two_file_test_main_pie.o gcctestdir/ld
636         $(CXXLINK) -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
638 check_PROGRAMS += pie_copyrelocs_test
639 pie_copyrelocs_test_SOURCES = pie_copyrelocs_test.cc
640 pie_copyrelocs_test_DEPENDENCIES = gcctestdir/ld pie_copyrelocs_shared_test.so
641 pie_copyrelocs_test_CXXFLAGS = -fno-exceptions -fno-asynchronous-unwind-tables
642 pie_copyrelocs_test_LDFLAGS = -Wl,-R,. -pie
643 pie_copyrelocs_test_LDADD = pie_copyrelocs_shared_test.so
644 pie_copyrelocs_shared_test.o: pie_copyrelocs_shared_test.cc
645         $(CXXCOMPILE) -O2 -fpic -c -o $@ $<
646 pie_copyrelocs_shared_test.so: pie_copyrelocs_shared_test.o gcctestdir/ld
647         $(CXXLINK) -shared pie_copyrelocs_shared_test.o
649 check_PROGRAMS += weak_unresolved_symbols_test
650 weak_unresolved_symbols_test_SOURCES = weak_unresolved_symbols_test.cc
651 weak_unresolved_symbols_test_CXXFLAGS = -fPIE
652 weak_unresolved_symbols_test_LDFLAGS = -pie -Wl,--weak-unresolved-symbols
654 check_SCRIPTS += two_file_shared.sh
655 check_DATA += two_file_shared.dbg
656 MOSTLYCLEANFILES += two_file_shared.dbg
657 two_file_shared.dbg: two_file_shared.so
658         $(TEST_READELF) -w $< >$@ 2>/dev/null
660 # The nonpic tests will fail on platforms which can not put non-PIC
661 # code into shared libraries, so we just don't run them in that case.
662 if FN_PTRS_IN_SO_WITHOUT_PIC
664 check_PROGRAMS += two_file_shared_1_nonpic_test
665 check_PROGRAMS += two_file_shared_2_nonpic_test
666 check_PROGRAMS += two_file_same_shared_nonpic_test
667 check_PROGRAMS += two_file_separate_shared_12_nonpic_test
668 check_PROGRAMS += two_file_separate_shared_21_nonpic_test
669 check_PROGRAMS += two_file_mixed_shared_test
670 check_PROGRAMS += two_file_mixed_2_shared_test
671 two_file_shared_1_nonpic.so: two_file_test_1.o gcctestdir/ld
672         $(CXXLINK) -shared two_file_test_1.o two_file_test_1b.o -Wl,-z,notext
673 two_file_shared_2_nonpic.so: two_file_test_2.o gcctestdir/ld
674         $(CXXLINK) -shared two_file_test_2.o
675 two_file_shared_nonpic.so: two_file_test_1.o two_file_test_1b.o two_file_test_2.o gcctestdir/ld
676         $(CXXLINK) -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o -Wl,-z,notext
677 two_file_shared_mixed.so: two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o gcctestdir/ld
678         $(CXXLINK) -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o -Wl,-z,notext
679 two_file_shared_mixed_1.so: two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so gcctestdir/ld
680         $(CXXLINK) -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so -Wl,-z,notext
682 two_file_shared_1_nonpic_test_SOURCES = \
683         two_file_test_2.cc two_file_test_main.cc
684 two_file_shared_1_nonpic_test_DEPENDENCIES = \
685         gcctestdir/ld two_file_shared_1_nonpic.so
686 two_file_shared_1_nonpic_test_LDFLAGS = -Wl,-R,.
687 two_file_shared_1_nonpic_test_LDADD = two_file_shared_1_nonpic.so
689 two_file_shared_2_nonpic_test_SOURCES = \
690         two_file_test_1.cc two_file_test_1b.cc two_file_test_main.cc
691 two_file_shared_2_nonpic_test_DEPENDENCIES = \
692         gcctestdir/ld two_file_shared_2_nonpic.so
693 two_file_shared_2_nonpic_test_LDFLAGS = -Wl,-R,.
694 two_file_shared_2_nonpic_test_LDADD = two_file_shared_2_nonpic.so
696 two_file_same_shared_nonpic_test_SOURCES = two_file_test_main.cc
697 two_file_same_shared_nonpic_test_DEPENDENCIES = \
698         gcctestdir/ld two_file_shared_nonpic.so
699 two_file_same_shared_nonpic_test_LDFLAGS = -Wl,-R,.
700 two_file_same_shared_nonpic_test_LDADD = two_file_shared_nonpic.so
702 two_file_separate_shared_12_nonpic_test_SOURCES = two_file_test_main.cc
703 two_file_separate_shared_12_nonpic_test_DEPENDENCIES = \
704         gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
705 two_file_separate_shared_12_nonpic_test_LDFLAGS = -Wl,-R,.
706 two_file_separate_shared_12_nonpic_test_LDADD = \
707         two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
709 two_file_separate_shared_21_nonpic_test_SOURCES = two_file_test_main.cc
710 two_file_separate_shared_21_nonpic_test_DEPENDENCIES = \
711         gcctestdir/ld two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so
712 two_file_separate_shared_21_nonpic_test_LDFLAGS = -Wl,-R,.
713 two_file_separate_shared_21_nonpic_test_LDADD = \
714         two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so
716 two_file_mixed_shared_test_SOURCES = two_file_test_main.cc
717 two_file_mixed_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed.so
718 two_file_mixed_shared_test_LDFLAGS = -Wl,-R,.
719 two_file_mixed_shared_test_LDADD = two_file_shared_mixed.so
721 two_file_mixed_2_shared_test_SOURCES = two_file_test_main.cc
722 two_file_mixed_2_shared_test_DEPENDENCIES = gcctestdir/ld two_file_shared_mixed_1.so two_file_shared_2.so
723 two_file_mixed_2_shared_test_LDFLAGS = -Wl,-R,.
724 two_file_mixed_2_shared_test_LDADD = two_file_shared_mixed_1.so two_file_shared_2.so
726 check_PROGRAMS += two_file_mixed_pie_test
727 two_file_mixed_pie_test: two_file_test_1.o two_file_test_1b_pie.o \
728                 two_file_test_main_pie.o two_file_shared_2.so gcctestdir/ld
729         $(CXXLINK) -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
731 endif FN_PTRS_IN_SO_WITHOUT_PIC
733 check_PROGRAMS += two_file_strip_test
734 two_file_strip_test: two_file_test
735         $(TEST_STRIP) -o two_file_strip_test two_file_test
737 check_PROGRAMS += two_file_same_shared_strip_test
738 two_file_same_shared_strip_test_SOURCES = two_file_test_main.cc
739 two_file_same_shared_strip_test_DEPENDENCIES = \
740         gcctestdir/ld two_file_shared_strip.so
741 two_file_same_shared_strip_test_LDFLAGS = -Wl,-R.
742 two_file_same_shared_strip_test_LDADD = two_file_shared_strip.so
743 two_file_shared_strip.so: two_file_shared.so
744         $(TEST_STRIP) -S -o two_file_shared_strip.so two_file_shared.so
746 check_PROGRAMS += common_test_1
747 common_test_1_SOURCES = common_test_1.c
748 common_test_1_DEPENDENCIES = gcctestdir/ld
749 common_test_1_LDADD =
750 common_test_1.o: common_test_1.c
751         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
753 check_PROGRAMS += common_test_2
754 common_test_2_SOURCES = common_test_1.c
755 common_test_2_DEPENDENCIES = common_test_2.so common_test_3.so gcctestdir/ld
756 common_test_2_LDFLAGS = -Wl,-R,.
757 common_test_2_LDADD = common_test_2.so common_test_3.so
758 common_test_2.o: common_test_2.c
759         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
760 common_test_2_pic.o: common_test_2.c
761         $(COMPILE) -c -fpic $(COMMON_TEST_C_CFLAGS) -o $@ $<
762 common_test_2.so: common_test_2_pic.o common_test_3.so gcctestdir/ld
763         $(LINK) -shared common_test_2_pic.o common_test_3.so
764 common_test_3.o: common_test_3.c
765         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
766 common_test_3_pic.o: common_test_3.c
767         $(COMPILE) -c -fpic $(COMMON_TEST_C_CFLAGS) -o $@ $<
768 common_test_3.so: common_test_3_pic.o ver_test_2.script gcctestdir/ld
769         $(LINK) -shared common_test_3_pic.o -Wl,--version-script,$(srcdir)/ver_test_2.script
771 check_PROGRAMS += exception_test
772 check_PROGRAMS += exception_shared_1_test
773 check_PROGRAMS += exception_shared_2_test
774 check_PROGRAMS += exception_same_shared_test
775 check_PROGRAMS += exception_separate_shared_12_test
776 check_PROGRAMS += exception_separate_shared_21_test
777 exception_test_1_pic.o: exception_test_1.cc
778         $(CXXCOMPILE) -c -fpic -o $@ $<
779 exception_test_2_pic.o: exception_test_2.cc
780         $(CXXCOMPILE) -c -fpic -o $@ $<
781 exception_shared_1.so: exception_test_1_pic.o gcctestdir/ld
782         $(CXXLINK) -shared exception_test_1_pic.o
783 exception_shared_2.so: exception_test_2_pic.o gcctestdir/ld
784         $(CXXLINK) -shared exception_test_2_pic.o
785 exception_shared.so: exception_test_1_pic.o exception_test_2_pic.o gcctestdir/ld
786         $(CXXLINK) -shared exception_test_1_pic.o exception_test_2_pic.o
788 exception_test_SOURCES = \
789         exception_test_main.cc \
790         exception_test_1.cc \
791         exception_test_2.cc \
792         exception_test.h
793 exception_test_DEPENDENCIES = gcctestdir/ld
794 exception_test_LDADD =
796 if HAVE_STATIC
797 check_PROGRAMS += exception_static_test
798 exception_static_test_SOURCES = $(exception_test_SOURCES)
799 exception_static_test_DEPENDENCIES = $(exception_test_DEPENDENCIES)
800 exception_static_test_LDFLAGS = $(exception_test_LDFLAGS) -static
801 exception_static_test_LDADD = $(exception_test_LDADD)
802 endif
804 exception_shared_1_test_SOURCES = exception_test_2.cc exception_test_main.cc
805 exception_shared_1_test_DEPENDENCIES = gcctestdir/ld exception_shared_1.so
806 exception_shared_1_test_LDFLAGS = -Wl,-R,.
807 exception_shared_1_test_LDADD = exception_shared_1.so
809 exception_shared_2_test_SOURCES = exception_test_1.cc exception_test_main.cc
810 exception_shared_2_test_DEPENDENCIES = gcctestdir/ld exception_shared_2.so
811 exception_shared_2_test_LDFLAGS = -Wl,-R,.
812 exception_shared_2_test_LDADD = exception_shared_2.so
814 exception_same_shared_test_SOURCES = exception_test_main.cc
815 exception_same_shared_test_DEPENDENCIES = gcctestdir/ld exception_shared.so
816 exception_same_shared_test_LDFLAGS = -Wl,-R,.
817 exception_same_shared_test_LDADD = exception_shared.so
819 exception_separate_shared_12_test_SOURCES = exception_test_main.cc
820 exception_separate_shared_12_test_DEPENDENCIES = \
821         gcctestdir/ld exception_shared_1.so exception_shared_2.so
822 exception_separate_shared_12_test_LDFLAGS = -Wl,-R,. -Wl,--no-as-needed
823 exception_separate_shared_12_test_LDADD = \
824         exception_shared_1.so exception_shared_2.so
826 exception_separate_shared_21_test_SOURCES = exception_test_main.cc
827 exception_separate_shared_21_test_DEPENDENCIES = \
828         gcctestdir/ld exception_shared_1.so exception_shared_2.so
829 exception_separate_shared_21_test_LDFLAGS = -Wl,-R,. -Wl,--no-as-needed
830 exception_separate_shared_21_test_LDADD = \
831         exception_shared_2.so exception_shared_1.so
834 check_PROGRAMS += weak_test
835 weak_test_SOURCES = weak_test.cc
836 weak_test_DEPENDENCIES = gcctestdir/ld
837 weak_test_LDADD =
839 check_PROGRAMS += weak_undef_test
840 MOSTLYCLEANFILES += alt/weak_undef_lib.so
841 weak_undef_test_SOURCES = weak_undef_test.cc
842 weak_undef_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib.so alt/weak_undef_lib.so
843 weak_undef_test_LDFLAGS = -Wl,-R,alt
844 weak_undef_test_LDADD = -L . weak_undef_lib.so
845 weak_undef_file1.o: weak_undef_file1.cc
846         $(CXXCOMPILE) -c -fpic -o $@ $<
847 weak_undef_file2.o: weak_undef_file2.cc
848         $(CXXCOMPILE) -c -fpic -o $@ $<
849 weak_undef_lib.so: weak_undef_file1.o gcctestdir/ld
850         $(CXXLINK) -shared weak_undef_file1.o
851 alt/weak_undef_lib.so: weak_undef_file2.o gcctestdir/ld
852         test -d alt || mkdir -p alt
853         $(CXXLINK) -shared weak_undef_file2.o
855 check_PROGRAMS += weak_undef_test_2
856 weak_undef_test_2_SOURCES = weak_undef_test_2.cc
857 weak_undef_test_2_DEPENDENCIES = gcctestdir/ld libweak_undef_2.a
858 weak_undef_test_2_LDFLAGS = -u weak_undef_2
859 weak_undef_test_2_LDADD = -L . -lweak_undef_2
860 MOSTLYCLEANFILES += libweak_undef_2.a
861 libweak_undef_2.a: weak_undef_file3.o weak_undef_file4.o
862         $(TEST_AR) rc $@ $^
863 weak_undef_file3.o: weak_undef_file3.cc
864         $(CXXCOMPILE) -c -o $@ $<
865 weak_undef_file4.o: weak_undef_file4.cc
866         $(CXXCOMPILE) -c -o $@ $<
868 if FN_PTRS_IN_SO_WITHOUT_PIC
869 check_PROGRAMS += weak_undef_nonpic_test
870 MOSTLYCLEANFILES += alt/weak_undef_lib_nonpic.so
871 weak_undef_nonpic_test_SOURCES = weak_undef_test.cc
872 weak_undef_nonpic_test_DEPENDENCIES = gcctestdir/ld weak_undef_lib_nonpic.so alt/weak_undef_lib_nonpic.so
873 weak_undef_nonpic_test_LDFLAGS = -Wl,-R,alt
874 weak_undef_nonpic_test_LDADD = -L . weak_undef_lib_nonpic.so
875 weak_undef_file1_nonpic.o: weak_undef_file1.cc
876         $(CXXCOMPILE) -c -o $@ $<
877 weak_undef_file2_nonpic.o: weak_undef_file2.cc
878         $(CXXCOMPILE) -c -o $@ $<
879 weak_undef_lib_nonpic.so: weak_undef_file1_nonpic.o
880         $(CXXLINK) -shared weak_undef_file1_nonpic.o -Wl,-z,notext
881 alt/weak_undef_lib_nonpic.so: weak_undef_file2_nonpic.o
882         test -d alt || mkdir -p alt
883         $(CXXLINK) -shared weak_undef_file2_nonpic.o -Wl,-z,notext
884 endif FN_PTRS_IN_SO_WITHOUT_PIC
887 check_PROGRAMS += weak_alias_test
888 weak_alias_test_SOURCES = weak_alias_test_main.cc
889 weak_alias_test_DEPENDENCIES = \
890         gcctestdir/ld weak_alias_test_1.so weak_alias_test_2.so \
891         weak_alias_test_3.o weak_alias_test_4.so weak_alias_test_5.so
892 weak_alias_test_LDFLAGS = -Wl,-R,.
893 weak_alias_test_LDADD = \
894         weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o \
895         weak_alias_test_4.so weak_alias_test_5.so
896 weak_alias_test_1_pic.o: weak_alias_test_1.cc
897         $(CXXCOMPILE) -c -fpic -o $@ $<
898 weak_alias_test_1.so: weak_alias_test_1_pic.o gcctestdir/ld
899         $(CXXLINK) -shared weak_alias_test_1_pic.o
900 weak_alias_test_2_pic.o: weak_alias_test_2.cc
901         $(CXXCOMPILE) -c -fpic -o $@ $<
902 weak_alias_test_2.so: weak_alias_test_2_pic.o gcctestdir/ld
903         $(CXXLINK) -shared weak_alias_test_2_pic.o
904 weak_alias_test_3.o: weak_alias_test_3.cc
905         $(CXXCOMPILE) -c -o $@ $<
906 weak_alias_test_4_pic.o: weak_alias_test_4.cc
907         $(CXXCOMPILE) -c -fpic -o $@ $<
908 weak_alias_test_4.so: weak_alias_test_4_pic.o gcctestdir/ld
909         $(CXXLINK) -shared weak_alias_test_4_pic.o
910 weak_alias_test_5_pic.o: weak_alias_test_5.cc
911         $(CXXCOMPILE) -c -fpic -o $@ $<
912 weak_alias_test_5.so: weak_alias_test_5_pic.o $(srcdir)/weak_alias_test.script gcctestdir/ld
913         $(CXXLINK) -shared weak_alias_test_5_pic.o \
914                 -Wl,--version-script,$(srcdir)/weak_alias_test.script
916 check_SCRIPTS += weak_plt.sh
917 check_PROGRAMS += weak_plt
918 check_DATA += weak_plt_shared.so
919 weak_plt_main_pic.o: weak_plt_main.cc
920         $(CXXCOMPILE) -c -fpic -o $@ $<
921 weak_plt: weak_plt_main_pic.o gcctestdir/ld
922         $(CXXLINK) weak_plt_main_pic.o
923 weak_plt_shared_pic.o: weak_plt_shared.cc
924         $(CXXCOMPILE) -c -fpic -o $@ $<
925 weak_plt_shared.so: weak_plt_shared_pic.o gcctestdir/ld
926         $(CXXLINK) -shared weak_plt_shared_pic.o
928 check_PROGRAMS += copy_test
929 copy_test_SOURCES = copy_test.cc
930 copy_test_DEPENDENCIES = gcctestdir/ld copy_test_1.so copy_test_2.so
931 copy_test_LDFLAGS = -Wl,-R,.
932 copy_test_LDADD = copy_test_1.so copy_test_2.so
933 copy_test_1_pic.o: copy_test_1.cc
934         $(CXXCOMPILE) -c -fpic -o $@ $<
935 copy_test_1.so: gcctestdir/ld copy_test_1_pic.o
936         $(CXXLINK) -shared copy_test_1_pic.o
937 copy_test_2_pic.o: copy_test_2.cc
938         $(CXXCOMPILE) -c -fpic -o $@ $<
939 copy_test_2.so: gcctestdir/ld copy_test_2_pic.o
940         $(CXXLINK) -shared copy_test_2_pic.o
942 check_PROGRAMS += copy_test_relro
943 copy_test_relro_SOURCES = copy_test_relro.cc
944 copy_test_relro_DEPENDENCIES = gcctestdir/ld copy_test_relro_1.so
945 copy_test_relro_LDFLAGS = -Wl,-R,. -Wl,-z,relro
946 copy_test_relro_LDADD = copy_test_relro_1.so
947 copy_test_relro_1_pic.o: copy_test_relro_1.cc
948         $(CXXCOMPILE) -c -fpic -o $@ $<
949 copy_test_relro_1.so: gcctestdir/ld copy_test_relro_1_pic.o
950         $(CXXLINK) -shared -Wl,-z,relro copy_test_relro_1_pic.o
952 if !DEFAULT_TARGET_POWERPC
953 check_SCRIPTS += copy_test_protected.sh
954 check_DATA += copy_test_protected.err
955 MOSTLYCLEANFILES += copy_test_protected.err
956 copy_test_protected.err: copy_test_protected.o copy_test_2.so gcctestdir/ld
957         @echo $(CXXLINK) -o copy_test_protected copy_test_protected.o copy_test_2.so -Wl,-R,. "2>$@"
958         @if $(CXXLINK) -o copy_test_protected copy_test_protected.o copy_test_2.so -Wl,-R,. 2>$@; \
959         then \
960           echo 1>&2 "Link of copy_test_protected should have failed"; \
961           rm -f $@; \
962           exit 1; \
963         fi
964 endif
966 if TLS
968 check_PROGRAMS += tls_test
969 check_PROGRAMS += tls_pic_test
970 check_PROGRAMS += tls_pie_test
971 check_PROGRAMS += tls_pie_pic_test
972 check_PROGRAMS += tls_shared_test
973 check_PROGRAMS += tls_shared_ie_test
974 check_PROGRAMS += tls_shared_gd_to_ie_test
975 tls_test_pic.o: tls_test.cc
976         $(CXXCOMPILE) -c -fpic -o $@ $<
977 tls_test_file2_pic.o: tls_test_file2.cc
978         $(CXXCOMPILE) -c -fpic -o $@ $<
979 tls_test_c_pic.o: tls_test_c.c
980         $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
981 tls_test_shared.so: tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o gcctestdir/ld
982         $(CXXLINK) -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
983 tls_test_shared2.so: tls_test_file2_pic.o gcctestdir/ld
984         $(CXXLINK) -shared tls_test_file2_pic.o
986 tls_test_pic_ie.o: tls_test.cc
987         $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
988 tls_test_file2_pic_ie.o: tls_test_file2.cc
989         $(CXXCOMPILE) -c -fpic -ftls-model=initial-exec -o $@ $<
990 tls_test_c_pic_ie.o: tls_test_c.c
991         $(COMPILE) -c -fpic -ftls-model=initial-exec $(TLS_TEST_C_CFLAGS) -o $@ $<
992 tls_test_ie_shared.so: tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o gcctestdir/ld
993         $(CXXLINK) -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
995 tls_test_SOURCES = tls_test.cc tls_test_file2.cc tls_test_main.cc tls_test.h
996 tls_test_DEPENDENCIES = gcctestdir/ld tls_test_c.o
997 tls_test_LDFLAGS = $(THREADFLAGS)
998 tls_test_LDADD = tls_test_c.o $(THREADLIBS)
999 tls_test_c.o: tls_test_c.c
1000         $(COMPILE) -c $(TLS_TEST_C_CFLAGS) -o $@ $<
1002 tls_pic_test_SOURCES = tls_test_main.cc
1003 tls_pic_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o tls_test_file2_pic.o \
1004         tls_test_c_pic.o
1005 tls_pic_test_LDFLAGS = $(THREADFLAGS)
1006 tls_pic_test_LDADD = tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o \
1007         $(THREADLIBS)
1009 tls_test_main_pie.o: tls_test_main.cc tls_test.h
1010         $(CXXCOMPILE) -c -fpie -o $@ $<
1011 tls_test_pie.o: tls_test.cc tls_test.h
1012         $(CXXCOMPILE) -c -fpie -o $@ $<
1013 tls_test_file2_pie.o: tls_test_file2.cc tls_test.h
1014         $(CXXCOMPILE) -c -fpie -o $@ $<
1015 tls_test_c_pie.o: tls_test_c.c
1016         $(COMPILE) -c -fpic $(TLS_TEST_C_CFLAGS) -o $@ $<
1017 tls_pie_test: tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o \
1018                 tls_test_c_pie.o gcctestdir/ld
1019         $(CXXLINK) $(THREADFLAGS) -pie tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o tls_test_c_pie.o $(THREADLIBS)
1021 check_SCRIPTS += tls_pie_test.sh
1022 check_DATA += tls_pie_test.stdout
1023 tls_pie_test.stdout: tls_pie_test
1024         $(TEST_READELF) -rW $< > $@ 2>/dev/null
1026 tls_pie_pic_test: tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o \
1027                 tls_test_c_pic.o gcctestdir/ld
1028         $(CXXLINK) $(THREADFLAGS) -pie tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o $(THREADLIBS)
1030 tls_shared_test_SOURCES = tls_test_main.cc
1031 tls_shared_test_DEPENDENCIES = gcctestdir/ld tls_test_shared.so
1032 tls_shared_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1033 tls_shared_test_LDADD = tls_test_shared.so $(THREADLIBS)
1035 tls_shared_ie_test_SOURCES = tls_test_main.cc
1036 tls_shared_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_ie_shared.so
1037 tls_shared_ie_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1038 tls_shared_ie_test_LDADD = tls_test_ie_shared.so $(THREADLIBS)
1040 tls_shared_gd_to_ie_test_SOURCES = tls_test_main.cc
1041 tls_shared_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_pic.o \
1042         tls_test_c_pic.o tls_test_shared2.so
1043 tls_shared_gd_to_ie_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1044 tls_shared_gd_to_ie_test_LDADD = tls_test_pic.o tls_test_c_pic.o \
1045         tls_test_shared2.so $(THREADLIBS)
1047 if TLS_GNU2_DIALECT
1049 check_PROGRAMS += tls_shared_gnu2_gd_to_ie_test
1051 tls_test_gnu2.o: tls_test.cc gcctestdir/as
1052         $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
1053 tls_test_file2_gnu2.o: tls_test_file2.cc gcctestdir/as
1054         $(CXXCOMPILE) -c -fpic -mtls-dialect=gnu2 -o $@ $<
1055 tls_test_c_gnu2.o: tls_test_c.c gcctestdir/as
1056         $(COMPILE) -c -fpic -mtls-dialect=gnu2 $(TLS_TEST_C_CFLAGS) -o $@ $<
1057 tls_test_gnu2_shared2.so: tls_test_file2_gnu2.o gcctestdir/ld
1058         $(CXXLINK) -shared tls_test_file2_gnu2.o
1060 tls_shared_gnu2_gd_to_ie_test_SOURCES = tls_test_main.cc
1061 tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2.o \
1062         tls_test_c_gnu2.o tls_test_gnu2_shared2.so
1063 tls_shared_gnu2_gd_to_ie_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1064 tls_shared_gnu2_gd_to_ie_test_LDADD = tls_test_gnu2.o tls_test_c_gnu2.o \
1065         tls_test_gnu2_shared2.so $(THREADLIBS)
1067 if TLS_DESCRIPTORS
1069 check_PROGRAMS += tls_shared_gnu2_test
1071 tls_test_gnu2_shared.so: tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o gcctestdir/ld
1072         $(CXXLINK) -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
1074 tls_shared_gnu2_test_SOURCES = tls_test_main.cc
1075 tls_shared_gnu2_test_DEPENDENCIES = gcctestdir/ld tls_test_gnu2_shared.so
1076 tls_shared_gnu2_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1077 tls_shared_gnu2_test_LDADD = tls_test_gnu2_shared.so $(THREADLIBS)
1079 endif TLS_DESCRIPTORS
1081 endif TLS_GNU2_DIALECT
1083 if HAVE_STATIC
1084 if STATIC_TLS
1085 check_PROGRAMS += tls_static_test
1086 check_PROGRAMS += tls_static_pic_test
1088 tls_static_test_SOURCES = $(tls_test_SOURCES)
1089 tls_static_test_DEPENDENCIES = $(tls_test_DEPENDENCIES)
1090 tls_static_test_LDFLAGS = $(tls_test_LDFLAGS) -static
1091 tls_static_test_LDADD = $(tls_test_LDADD)
1093 tls_static_pic_test_SOURCES = $(tls_pic_test_SOURCES)
1094 tls_static_pic_test_DEPENDENCIES = $(tls_pic_test_DEPENDENCIES)
1095 tls_static_pic_test_LDFLAGS = $(tls_pic_test_LDFLAGS) -static
1096 tls_static_pic_test_LDADD = $(tls_pic_test_LDADD)
1097 endif
1098 endif
1100 if FN_PTRS_IN_SO_WITHOUT_PIC
1101 check_PROGRAMS += tls_shared_nonpic_test
1102 tls_test_shared_nonpic.so: tls_test.o tls_test_file2.o tls_test_c.o gcctestdir/ld
1103         $(CXXLINK) -shared tls_test.o tls_test_file2.o tls_test_c.o -Wl,-z,notext
1105 tls_shared_nonpic_test_SOURCES = tls_test_main.cc
1106 tls_shared_nonpic_test_DEPENDENCIES = gcctestdir/ld tls_test_shared_nonpic.so
1107 tls_shared_nonpic_test_LDFLAGS = -Wl,-R,. $(THREADFLAGS)
1108 tls_shared_nonpic_test_LDADD = tls_test_shared_nonpic.so $(THREADLIBS)
1109 endif FN_PTRS_IN_SO_WITHOUT_PIC
1111 endif TLS
1113 if DEFAULT_TARGET_X86_64
1115 check_SCRIPTS += x86_64_mov_to_lea.sh
1116 check_DATA += x86_64_mov_to_lea1.stdout x86_64_mov_to_lea2.stdout \
1117         x86_64_mov_to_lea3.stdout x86_64_mov_to_lea4.stdout \
1118         x86_64_mov_to_lea5.stdout x86_64_mov_to_lea6.stdout \
1119         x86_64_mov_to_lea7.stdout x86_64_mov_to_lea8.stdout \
1120         x86_64_mov_to_lea9.stdout x86_64_mov_to_lea10.stdout \
1121         x86_64_mov_to_lea11.stdout x86_64_mov_to_lea12.stdout \
1122         x86_64_mov_to_lea13.stdout x86_64_mov_to_lea14.stdout \
1123         x86_64_mov_to_lea15.stdout x86_64_mov_to_lea16.stdout
1125 MOSTLYCLEANFILES += x86_64_mov_to_lea1 x86_64_mov_to_lea2 \
1126         x86_64_mov_to_lea3 x86_64_mov_to_lea4 x86_64_mov_to_lea5 \
1127         x86_64_mov_to_lea6 x86_64_mov_to_lea7 x86_64_mov_to_lea8 \
1128         x86_64_mov_to_lea9 x86_64_mov_to_lea10 x86_64_mov_to_lea11 \
1129         x86_64_mov_to_lea12 x86_64_mov_to_lea13 x86_64_mov_to_lea14 \
1130         x86_64_mov_to_lea15 x86_64_mov_to_lea16
1132 x86_64_mov_to_lea1.o: x86_64_mov_to_lea1.s
1133         $(TEST_AS) --64 -o $@ $<
1134 x86_64_mov_to_lea2.o: x86_64_mov_to_lea1.s
1135         $(TEST_AS) --x32 -o $@ $<
1136 x86_64_mov_to_lea3.o: x86_64_mov_to_lea2.s
1137         $(TEST_AS) --x32 -o $@ $<
1138 x86_64_mov_to_lea4.o: x86_64_mov_to_lea2.s
1139         $(TEST_AS) --64 -o $@ $<
1140 x86_64_mov_to_lea5.o: x86_64_mov_to_lea3.s
1141         $(TEST_AS) --x32 -mrelax-relocations=yes -o $@ $<
1142 x86_64_mov_to_lea6.o: x86_64_mov_to_lea3.s
1143         $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1144 x86_64_mov_to_lea7.o: x86_64_mov_to_lea4.s
1145         $(TEST_AS) --x32 -o $@ $<
1146 x86_64_mov_to_lea8.o: x86_64_mov_to_lea4.s
1147         $(TEST_AS) --64 -o $@ $<
1148 x86_64_mov_to_lea9.o: x86_64_mov_to_lea5.s
1149         $(TEST_AS) --x32 -mrelax-relocations=yes -o $@ $<
1150 x86_64_mov_to_lea10.o: x86_64_mov_to_lea5.s
1151         $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1152 x86_64_mov_to_lea1: x86_64_mov_to_lea1.o ../ld-new
1153         ../ld-new -Bsymbolic -shared -melf_x86_64 -o $@ $<
1154 x86_64_mov_to_lea2: x86_64_mov_to_lea1.o ../ld-new
1155         ../ld-new -pie -melf_x86_64 -o $@ $<
1156 x86_64_mov_to_lea3: x86_64_mov_to_lea1.o ../ld-new
1157         ../ld-new -melf_x86_64 -o $@ $<
1158 x86_64_mov_to_lea4: x86_64_mov_to_lea2.o ../ld-new
1159         ../ld-new -Bsymbolic -shared -melf32_x86_64 -o $@ $<
1160 x86_64_mov_to_lea5: x86_64_mov_to_lea2.o ../ld-new
1161         ../ld-new -pie -melf32_x86_64 -o $@ $<
1162 x86_64_mov_to_lea6: x86_64_mov_to_lea2.o ../ld-new
1163         ../ld-new -melf32_x86_64 -o $@ $<
1164 x86_64_mov_to_lea7: x86_64_mov_to_lea3.o ../ld-new
1165         ../ld-new -melf32_x86_64 -pie -o $@ $<
1166 x86_64_mov_to_lea8: x86_64_mov_to_lea4.o ../ld-new
1167         ../ld-new -melf_x86_64 -pie -o $@ $<
1168 x86_64_mov_to_lea9: x86_64_mov_to_lea5.o ../ld-new
1169         ../ld-new -melf32_x86_64 -o $@ $<
1170 x86_64_mov_to_lea10: x86_64_mov_to_lea6.o ../ld-new
1171         ../ld-new -melf_x86_64 -o $@ $<
1172 x86_64_mov_to_lea11: x86_64_mov_to_lea2.o ../ld-new
1173         ../ld-new -melf32_x86_64 -shared -o $@ $<
1174 x86_64_mov_to_lea12: x86_64_mov_to_lea1.o ../ld-new
1175         ../ld-new -melf_x86_64 -shared -o $@ $<
1176 x86_64_mov_to_lea13: x86_64_mov_to_lea7.o ../ld-new
1177         ../ld-new -melf32_x86_64 -shared -o $@ $<
1178 x86_64_mov_to_lea14: x86_64_mov_to_lea8.o ../ld-new
1179         ../ld-new -melf_x86_64 -shared -o $@ $<
1180 x86_64_mov_to_lea15: x86_64_mov_to_lea9.o ../ld-new
1181         ../ld-new -melf32_x86_64 -shared -o $@ $<
1182 x86_64_mov_to_lea16: x86_64_mov_to_lea10.o ../ld-new
1183         ../ld-new -melf_x86_64 -shared -o $@ $<
1184 x86_64_mov_to_lea1.stdout: x86_64_mov_to_lea1
1185         $(TEST_OBJDUMP) -dw $< > $@
1186 x86_64_mov_to_lea2.stdout: x86_64_mov_to_lea2
1187         $(TEST_OBJDUMP) -dw $< > $@
1188 x86_64_mov_to_lea3.stdout: x86_64_mov_to_lea3
1189         $(TEST_OBJDUMP) -dw $< > $@
1190 x86_64_mov_to_lea4.stdout: x86_64_mov_to_lea4
1191         $(TEST_OBJDUMP) -dw $< > $@
1192 x86_64_mov_to_lea5.stdout: x86_64_mov_to_lea5
1193         $(TEST_OBJDUMP) -dw $< > $@
1194 x86_64_mov_to_lea6.stdout: x86_64_mov_to_lea6
1195         $(TEST_OBJDUMP) -dw $< > $@
1196 x86_64_mov_to_lea7.stdout: x86_64_mov_to_lea7
1197         $(TEST_OBJDUMP) -dw $< > $@
1198 x86_64_mov_to_lea8.stdout: x86_64_mov_to_lea8
1199         $(TEST_OBJDUMP) -dw $< > $@
1200 x86_64_mov_to_lea9.stdout: x86_64_mov_to_lea9
1201         $(TEST_OBJDUMP) -dw $< > $@
1202 x86_64_mov_to_lea10.stdout: x86_64_mov_to_lea10
1203         $(TEST_OBJDUMP) -dw $< > $@
1204 x86_64_mov_to_lea11.stdout: x86_64_mov_to_lea11
1205         $(TEST_OBJDUMP) -dw $< > $@
1206 x86_64_mov_to_lea12.stdout: x86_64_mov_to_lea12
1207         $(TEST_OBJDUMP) -dw $< > $@
1208 x86_64_mov_to_lea13.stdout: x86_64_mov_to_lea13
1209         $(TEST_OBJDUMP) -dw $< > $@
1210 x86_64_mov_to_lea14.stdout: x86_64_mov_to_lea14
1211         $(TEST_OBJDUMP) -dw $< > $@
1212 x86_64_mov_to_lea15.stdout: x86_64_mov_to_lea15
1213         $(TEST_OBJDUMP) -dw $< > $@
1214 x86_64_mov_to_lea16.stdout: x86_64_mov_to_lea16
1215         $(TEST_OBJDUMP) -dw $< > $@
1217 check_SCRIPTS += x86_64_indirect_call_to_direct.sh
1218 check_DATA += x86_64_indirect_call_to_direct1.stdout \
1219         x86_64_indirect_jump_to_direct1.stdout
1220 MOSTLYCLEANFILES += x86_64_indirect_call_to_direct1 \
1221         x86_64_indirect_jump_to_direct1
1223 x86_64_indirect_call_to_direct1.o: x86_64_indirect_call_to_direct1.s
1224         $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1225 x86_64_indirect_call_to_direct1: x86_64_indirect_call_to_direct1.o gcctestdir/ld
1226         gcctestdir/ld -o $@ $<
1227 x86_64_indirect_call_to_direct1.stdout: x86_64_indirect_call_to_direct1
1228         $(TEST_OBJDUMP) -dw $< > $@
1229 x86_64_indirect_jump_to_direct1.o: x86_64_indirect_jump_to_direct1.s
1230         $(TEST_AS) --64 -mrelax-relocations=yes -o $@ $<
1231 x86_64_indirect_jump_to_direct1: x86_64_indirect_jump_to_direct1.o gcctestdir/ld
1232         gcctestdir/ld -o $@ $<
1233 x86_64_indirect_jump_to_direct1.stdout: x86_64_indirect_jump_to_direct1
1234         $(TEST_OBJDUMP) -dw $< > $@
1236 check_SCRIPTS += x86_64_gd_to_le.sh
1237 check_DATA += x86_64_gd_to_le.stdout
1238 MOSTLYCLEANFILES += x86_64_gd_to_le
1240 x86_64_gd_to_le.o: x86_64_gd_to_le.s
1241         $(TEST_AS) --64 -o $@ $<
1242 x86_64_gd_to_le: x86_64_gd_to_le.o gcctestdir/ld
1243         gcctestdir/ld -o $@ $<
1244 x86_64_gd_to_le.stdout: x86_64_gd_to_le
1245         $(TEST_OBJDUMP) -dw $< > $@
1247 check_SCRIPTS += x86_64_overflow_pc32.sh
1248 check_DATA += x86_64_overflow_pc32.err
1249 MOSTLYCLEANFILES += x86_64_overflow_pc32.err
1250 x86_64_overflow_pc32.o: x86_64_overflow_pc32.s
1251         $(TEST_AS) -o $@ $<
1252 x86_64_overflow_pc32.err: x86_64_overflow_pc32.o gcctestdir/ld
1253         @echo gcctestdir/ld -e bar -Tdata=0x81000000 -o x86_64_overflow_pc32 x86_64_overflow_pc32.o "2>$@"
1254         @if gcctestdir/ld -e bar -Tdata=0x81000000 -o x86_64_overflow_pc32 x86_64_overflow_pc32.o 2>$@; \
1255         then \
1256           echo 1>&2 "Link of x86_64_overflow_pc32 should have failed"; \
1257           rm -f $@; \
1258           exit 1; \
1259         fi
1261 check_PROGRAMS += pr17704a_test
1262 pr17704a_test.o: pr17704a_test.s
1263         $(TEST_AS) --64 -o $@ $<
1264 pr17704a_test: pr17704a_test.o gcctestdir/ld
1265         gcctestdir/ld --icf=all -o $@ $<
1267 check_SCRIPTS += x32_overflow_pc32.sh
1268 check_DATA += x32_overflow_pc32.err
1269 MOSTLYCLEANFILES += x32_overflow_pc32.err
1270 x32_overflow_pc32.o: x86_64_overflow_pc32.s
1271         $(TEST_AS) --x32 -o $@ $<
1272 x32_overflow_pc32.err: x32_overflow_pc32.o gcctestdir/ld
1273         @echo gcctestdir/ld -e bar -Tdata=0x81000000 -o x32_overflow_pc32 x32_overflow_pc32.o "2>$@"
1274         @if gcctestdir/ld -e bar -Tdata=0x81000000 -o x32_overflow_pc32 x32_overflow_pc32.o 2>$@; \
1275         then \
1276           echo 1>&2 "Link of x32_overflow_pc32 should have failed"; \
1277           rm -f $@; \
1278           exit 1; \
1279         fi
1281 check_SCRIPTS += pr23016_1.sh
1282 check_DATA += pr23016_1.stdout pr23016_1r.stdout
1283 pr23016_1.stdout: pr23016_1.o
1284         $(TEST_READELF) -rSW $< >$@ 2>/dev/null
1285 pr23016_1.o: pr23016_1a.o pr23016_1b.o gcctestdir/ld
1286         gcctestdir/ld -r -o $@ pr23016_1a.o pr23016_1b.o
1287 pr23016_1r.stdout: pr23016_1r.o
1288         $(TEST_READELF) -rSW $< >$@ 2>/dev/null
1289 pr23016_1r.o: pr23016_1a.o pr23016_1b.o gcctestdir/ld
1290         gcctestdir/ld -r -o $@ pr23016_1b.o pr23016_1a.o
1291 pr23016_1a.o: pr23016_1a.s
1292         $(TEST_AS) -o $@ $<
1293 pr23016_1b.o: pr23016_1b.s
1294         $(TEST_AS) -o $@ $<
1296 check_SCRIPTS += pr23016_2.sh
1297 check_DATA += pr23016_2.stdout
1298 pr23016_2.stdout: pr23016_2.o
1299         $(TEST_READELF) -rW $< >$@ 2>/dev/null
1300 pr23016_2.o: pr23016_2a.o pr23016_2b.o gcctestdir/ld
1301         gcctestdir/ld -r -o $@ pr23016_2a.o pr23016_2b.o
1302 pr23016_2a.o: pr23016_2a.s
1303         $(TEST_AS) -o $@ $<
1304 pr23016_2b.o: pr23016_2b.s
1305         $(TEST_AS) -o $@ $<
1307 endif DEFAULT_TARGET_X86_64
1309 if DEFAULT_TARGET_X86_64_OR_X32
1311 check_PROGRAMS += pr20216a_test
1312 pr20216a_test_SOURCES = pr20216_main.c pr20216_def.c
1313 pr20216a_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1314 pr20216a_test_CFLAGS = -fPIE
1315 pr20216a_test_LDFLAGS = -Wl,-R,.
1316 pr20216a_test_LDADD = pr20216_gd.o pr20216_ld.o
1318 check_PROGRAMS += pr20216b_test
1319 pr20216b_test_SOURCES = pr20216_main.c pr20216_def.c
1320 pr20216b_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1321 pr20216b_test_CFLAGS = -fPIE
1322 pr20216b_test_LDFLAGS = -pie -Wl,-R,.
1323 pr20216b_test_LDADD = pr20216_gd.o pr20216_ld.o
1325 check_PROGRAMS += pr20216c_test
1326 pr20216c_test_SOURCES = pr20216_main.c pr20216_def.c
1327 pr20216c_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o gcctestdir/ld gcctestdir/as
1328 pr20216c_test_CFLAGS = -fPIE
1329 pr20216c_test_LDFLAGS = -static -Wl,-R,.
1330 pr20216c_test_LDADD = pr20216_gd.o pr20216_ld.o
1332 check_PROGRAMS += pr20216d_test
1333 pr20216d_test_SOURCES = pr20216_main.c pr20216_def.c
1334 pr20216d_test_DEPENDENCIES = pr20216a.so gcctestdir/ld gcctestdir/as
1335 pr20216d_test_CFLAGS = -fPIE
1336 pr20216d_test_LDFLAGS = -Wl,-R,.
1337 pr20216d_test_LDADD = pr20216a.so
1339 check_PROGRAMS += pr20216e_test
1340 pr20216e_test_SOURCES = pr20216_main.c
1341 pr20216e_test_DEPENDENCIES = pr20216_gd.o pr20216_ld.o pr20216b.so gcctestdir/ld gcctestdir/as
1342 pr20216e_test_CFLAGS = -fPIE
1343 pr20216e_test_LDFLAGS = -Wl,-R,.
1344 pr20216e_test_LDADD = pr20216_gd.o pr20216_ld.o pr20216b.so
1346 MOSTLYCLEANFILES += pr20216a.so pr20216b.so
1348 pr20216a.so: pr20216_gd.o pr20216_ld.o gcctestdir/ld
1349         $(LINK) -shared pr20216_gd.o pr20216_ld.o
1351 pr20216b.so: pr20216_def.o gcctestdir/ld
1352         $(LINK) -shared pr20216_def.o
1354 pr20216_gd.o: pr20216_gd.S gcctestdir/as
1355         $(COMPILE) -c -o $@ $<
1357 pr20216_ld.o: pr20216_ld.S gcctestdir/as
1358         $(COMPILE) -c -o $@ $<
1360 endif DEFAULT_TARGET_X86_64_OR_X32
1362 if DEFAULT_TARGET_I386
1364 check_SCRIPTS += i386_mov_to_lea.sh
1365 check_DATA += i386_mov_to_lea1.stdout i386_mov_to_lea2.stdout \
1366         i386_mov_to_lea3.stdout i386_mov_to_lea4.stdout \
1367         i386_mov_to_lea5.stdout i386_mov_to_lea6.stdout \
1368         i386_mov_to_lea7.stdout i386_mov_to_lea8.stdout
1369 MOSTLYCLEANFILES += i386_mov_to_lea1 i386_mov_to_lea2 i386_mov_to_lea3 \
1370         i386_mov_to_lea4 i386_mov_to_lea5 i386_mov_to_lea6 \
1371         i386_mov_to_lea7 i386_mov_to_lea8
1373 i386_mov_to_lea1.o: i386_mov_to_lea1.s
1374         $(TEST_AS) --32 -o $@ $<
1375 i386_mov_to_lea2.o: i386_mov_to_lea2.s
1376         $(TEST_AS) --32 -o $@ $<
1377 i386_mov_to_lea3.o: i386_mov_to_lea3.s
1378         $(TEST_AS) --32 -o $@ $<
1379 i386_mov_to_lea4.o: i386_mov_to_lea4.s
1380         $(TEST_AS) --32 -o $@ $<
1381 i386_mov_to_lea5.o: i386_mov_to_lea5.s
1382         $(TEST_AS) --32 -o $@ $<
1383 i386_mov_to_lea1: i386_mov_to_lea1.o ../ld-new
1384         ../ld-new -Bsymbolic -shared -melf_i386 -o $@ $<
1385 i386_mov_to_lea2: i386_mov_to_lea1.o ../ld-new
1386         ../ld-new -pie -melf_i386 -o $@ $<
1387 i386_mov_to_lea3: i386_mov_to_lea1.o ../ld-new
1388         ../ld-new -melf_i386 -o $@ $<
1389 i386_mov_to_lea4: i386_mov_to_lea1.o ../ld-new
1390         ../ld-new -melf_i386 -shared -o $@ $<
1391 i386_mov_to_lea5: i386_mov_to_lea2.o ../ld-new
1392         ../ld-new -melf_i386 -shared -o $@ $<
1393 i386_mov_to_lea6: i386_mov_to_lea3.o ../ld-new
1394         ../ld-new -melf_i386 -shared -o $@ $<
1395 i386_mov_to_lea7: i386_mov_to_lea4.o ../ld-new
1396         ../ld-new -melf_i386 -shared -o $@ $<
1397 i386_mov_to_lea8: i386_mov_to_lea5.o ../ld-new
1398         ../ld-new -melf_i386 -shared -o $@ $<
1399 i386_mov_to_lea1.stdout: i386_mov_to_lea1
1400         $(TEST_OBJDUMP) -dw $< > $@
1401 i386_mov_to_lea2.stdout: i386_mov_to_lea2
1402         $(TEST_OBJDUMP) -dw $< > $@
1403 i386_mov_to_lea3.stdout: i386_mov_to_lea3
1404         $(TEST_OBJDUMP) -dw $< > $@
1405 i386_mov_to_lea4.stdout: i386_mov_to_lea4
1406         $(TEST_OBJDUMP) -dw $< > $@
1407 i386_mov_to_lea5.stdout: i386_mov_to_lea5
1408         $(TEST_OBJDUMP) -dw $< > $@
1409 i386_mov_to_lea6.stdout: i386_mov_to_lea6
1410         $(TEST_OBJDUMP) -dw $< > $@
1411 i386_mov_to_lea7.stdout: i386_mov_to_lea7
1412         $(TEST_OBJDUMP) -dw $< > $@
1413 i386_mov_to_lea8.stdout: i386_mov_to_lea8
1414         $(TEST_OBJDUMP) -dw $< > $@
1416 check_PROGRAMS += pr20308a_test
1417 pr20308a_test_SOURCES = pr20308_main.c pr20308_def.c
1418 pr20308a_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1419 pr20308a_test_CFLAGS = -fPIE
1420 pr20308a_test_LDFLAGS = -Wl,-R,.
1421 pr20308a_test_LDADD = pr20308_gd.o pr20308_ld.o
1423 check_PROGRAMS += pr20308b_test
1424 pr20308b_test_SOURCES = pr20308_main.c pr20308_def.c
1425 pr20308b_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1426 pr20308b_test_CFLAGS = -fPIE
1427 pr20308b_test_LDFLAGS = -pie -Wl,-R,.
1428 pr20308b_test_LDADD = pr20308_gd.o pr20308_ld.o
1430 check_PROGRAMS += pr20308c_test
1431 pr20308c_test_SOURCES = pr20308_main.c pr20308_def.c
1432 pr20308c_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o gcctestdir/ld gcctestdir/as
1433 pr20308c_test_CFLAGS = -fPIE
1434 pr20308c_test_LDFLAGS = -static -Wl,-R,.
1435 pr20308c_test_LDADD = pr20308_gd.o pr20308_ld.o
1437 check_PROGRAMS += pr20308d_test
1438 pr20308d_test_SOURCES = pr20308_main.c pr20308_def.c
1439 pr20308d_test_DEPENDENCIES = pr20308a.so gcctestdir/ld gcctestdir/as
1440 pr20308d_test_CFLAGS = -fPIE
1441 pr20308d_test_LDFLAGS = -Wl,-R,.
1442 pr20308d_test_LDADD = pr20308a.so
1444 check_PROGRAMS += pr20308e_test
1445 pr20308e_test_SOURCES = pr20308_main.c
1446 pr20308e_test_DEPENDENCIES = pr20308_gd.o pr20308_ld.o pr20308b.so gcctestdir/ld gcctestdir/as
1447 pr20308e_test_CFLAGS = -fPIE
1448 pr20308e_test_LDFLAGS = -Wl,-R,.
1449 pr20308e_test_LDADD = pr20308_gd.o pr20308_ld.o pr20308b.so
1451 MOSTLYCLEANFILES += pr20308a.so pr20308b.so
1453 pr20308a.so: pr20308_gd.o pr20308_ld.o gcctestdir/ld
1454         $(LINK) -shared pr20308_gd.o pr20308_ld.o
1456 pr20308b.so: pr20308_def.o gcctestdir/ld
1457         $(LINK) -shared pr20308_def.o
1459 pr20308_gd.o: pr20308_gd.S gcctestdir/as
1460         $(COMPILE) -c -o $@ $<
1462 pr20308_ld.o: pr20308_ld.S gcctestdir/as
1463         $(COMPILE) -c -o $@ $<
1465 endif DEFAULT_TARGET_I386
1467 check_PROGRAMS += many_sections_test
1468 many_sections_test_SOURCES = many_sections_test.cc
1469 many_sections_test_DEPENDENCIES = gcctestdir/ld
1470 many_sections_test_LDFLAGS = -rdynamic
1471 many_sections_test_LDADD =
1473 BUILT_SOURCES += many_sections_define.h
1474 MOSTLYCLEANFILES += many_sections_define.h
1475 many_sections_define.h:
1476         (for i in `seq 1 70000`; do \
1477            echo "int var_$$i __attribute__((section(\"section_$$i\"))) = $$i;"; \
1478          done) > $@.tmp
1479         mv -f $@.tmp $@
1481 BUILT_SOURCES += many_sections_check.h
1482 MOSTLYCLEANFILES += many_sections_check.h
1483 many_sections_check.h:
1484         (for i in `seq 1 1000 70000`; do \
1485            echo "assert(var_$$i == $$i);"; \
1486          done) > $@.tmp
1487         mv -f $@.tmp $@
1489 check_PROGRAMS += many_sections_r_test
1490 many_sections_r_test.o: many_sections_test.o gcctestdir/ld
1491         gcctestdir/ld -r -o $@ many_sections_test.o
1492 many_sections_r_test: many_sections_r_test.o gcctestdir/ld
1493         $(CXXLINK) many_sections_r_test.o $(LIBS)
1495 check_SCRIPTS += file_in_many_sections_test.sh
1496 check_DATA += file_in_many_sections.stdout
1497 MOSTLYCLEANFILES += file_in_many_sections
1498 file_in_many_sections.o: file_in_many_sections.c many_sections_define.h
1499         $(COMPILE) -c -fdata-sections -o $@ $(srcdir)/file_in_many_sections.c
1500 file_in_many_sections: file_in_many_sections.o gcctestdir/ld
1501         $(LINK) file_in_many_sections.o -Wl,--gc-sections
1502 file_in_many_sections.stdout: file_in_many_sections
1503         $(TEST_READELF) -sW $< > $@
1505 check_PROGRAMS += initpri1
1506 initpri1_SOURCES = initpri1.c
1507 initpri1_DEPENDENCIES = gcctestdir/ld
1508 initpri1_LDADD =
1510 check_PROGRAMS += initpri2
1511 initpri2_SOURCES = initpri2.c
1512 initpri2_DEPENDENCIES = gcctestdir/ld
1513 initpri2_LDFLAGS = -Wl,--ctors-in-init-array
1514 initpri2_LDADD =
1516 check_PROGRAMS += initpri3a
1517 initpri3a_SOURCES = initpri3.c
1518 initpri3a_DEPENDENCIES = gcctestdir/ld
1519 initpri3a_LDADD =
1521 # This test fails on targets not using .ctors and .dtors sections (e.g. ARM
1522 # EABI). Given that gcc is moving towards using .init_array in all cases,
1523 # this test is commented out.  A better fix would be checking whether gcc
1524 # uses .ctors or .init_array sections in configure.
1526 # check_PROGRAMS += initpri3b
1527 # initpri3b_SOURCES = initpri3.c
1528 # initpri3b_DEPENDENCIES = gcctestdir/ld
1529 # initpri3b_LDFLAGS = -Wl,--no-ctors-in-init-array
1530 # initpri3b_LDADD =
1532 # Test --detect-odr-violations
1533 check_SCRIPTS += debug_msg.sh
1535 # Create the data files that debug_msg.sh analyzes.
1536 check_DATA += debug_msg.err
1537 MOSTLYCLEANFILES += debug_msg.err
1538 debug_msg.o: debug_msg.cc
1539         $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/debug_msg.cc
1540 odr_violation1.o: odr_violation1.cc
1541         $(CXXCOMPILE) -O0 -g -c -w -o $@ $(srcdir)/odr_violation1.cc
1542 # Compile with different optimization flags to check that rearranged
1543 # instructions don't cause a false positive.
1544 odr_violation2.o: odr_violation2.cc
1545         $(CXXCOMPILE) -O2 -g -c -w -o $@ $(srcdir)/odr_violation2.cc
1546 debug_msg.err: debug_msg.o odr_violation1.o odr_violation2.o gcctestdir/ld
1547         @echo $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o "2>$@"
1548         @if $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>$@; \
1549         then \
1550           echo 1>&2 "Link of debug_msg should have failed"; \
1551           rm -f $@; \
1552           exit 1; \
1553         fi
1555 # Test error message when a vtable is undefined.
1556 check_SCRIPTS += missing_key_func.sh
1557 check_DATA += missing_key_func.err
1558 MOSTLYCLEANFILES += missing_key_func.err
1559 missing_key_func.o: missing_key_func.cc
1560         $(CXXCOMPILE) -O0 -g -c -o $@ $(srcdir)/missing_key_func.cc
1561 missing_key_func.err: missing_key_func.o gcctestdir/ld
1562         @echo $(CXXLINK) -o missing_key_func missing_key_func.o "2>$@"
1563         @if $(CXXLINK) -o missing_key_func missing_key_func.o 2>$@; \
1564         then \
1565           echo 1>&2 "Link of missing_key_func should have failed"; \
1566           rm -f $@; \
1567           exit 1; \
1568         fi
1570 # Check that --detect-odr-violations works with compressed debug sections.
1571 check_DATA += debug_msg_cdebug.err
1572 MOSTLYCLEANFILES += debug_msg_cdebug.err
1573 debug_msg_cdebug.o: debug_msg.cc gcctestdir/as
1574         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/debug_msg.cc
1575 odr_violation1_cdebug.o: odr_violation1.cc gcctestdir/as
1576         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/odr_violation1.cc
1577 odr_violation2_cdebug.o: odr_violation2.cc gcctestdir/as
1578         $(CXXCOMPILE) -O2 -g -Wa,--compress-debug-sections -c -w -o $@ $(srcdir)/odr_violation2.cc
1579 debug_msg_cdebug.err: debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o gcctestdir/ld
1580         @echo $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o "2>$@"
1581         @if $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o 2>$@; \
1582         then \
1583           echo 1>&2 "Link of debug_msg_cdebug should have failed"; \
1584           rm -f $@; \
1585           exit 1; \
1586         fi
1587 check_DATA += debug_msg_cdebug_gabi.err
1588 MOSTLYCLEANFILES += debug_msg_cdebug_gabi.err
1589 debug_msg_cdebug_gabi.o: debug_msg.cc gcctestdir/as
1590         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/debug_msg.cc
1591 odr_violation1_cdebug_gabi.o: odr_violation1.cc gcctestdir/as
1592         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/odr_violation1.cc
1593 odr_violation2_cdebug_gabi.o: odr_violation2.cc gcctestdir/as
1594         $(CXXCOMPILE) -O2 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/odr_violation2.cc
1595 debug_msg_cdebug_gabi.err: debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o gcctestdir/ld
1596         @echo $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o "2>$@"
1597         @if $(CXXLINK) -Wl,--detect-odr-violations -o debug_msg_cdebug_gabi debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o 2>$@; \
1598         then \
1599           echo 1>&2 "Link of debug_msg_cdebug_gabi should have failed"; \
1600           rm -f $@; \
1601           exit 1; \
1602         fi
1604 # See if we can also detect problems when we're linking .so's, not .o's.
1605 check_DATA += debug_msg_so.err
1606 MOSTLYCLEANFILES += debug_msg_so.err
1607 debug_msg.so: debug_msg.cc gcctestdir/ld
1608         $(CXXCOMPILE) -O0 -g -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
1609 odr_violation1.so: odr_violation1.cc gcctestdir/ld
1610         $(CXXCOMPILE) -O0 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
1611 odr_violation2.so: odr_violation2.cc gcctestdir/ld
1612         $(CXXCOMPILE) -O2 -g -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
1613 debug_msg_so.err: debug_msg.so odr_violation1.so odr_violation2.so gcctestdir/ld
1614         @echo $(CXXLINK_S) -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so "2>$@"
1615         @if $(CXXLINK_S) -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>$@; \
1616         then \
1617           echo 1>&2 "Link of debug_msg_so should have failed"; \
1618           rm -f $@; \
1619           exit 1; \
1620         fi
1622 # We also want to make sure we do something reasonable when there's no
1623 # debug info available.  For the best test, we use .so's.
1624 check_DATA += debug_msg_ndebug.err
1625 MOSTLYCLEANFILES += debug_msg_ndebug.err
1626 debug_msg_ndebug.so: debug_msg.cc gcctestdir/ld
1627         $(CXXCOMPILE) -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/debug_msg.cc
1628 odr_violation1_ndebug.so: odr_violation1.cc gcctestdir/ld
1629         $(CXXCOMPILE) -O0 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation1.cc
1630 odr_violation2_ndebug.so: odr_violation2.cc gcctestdir/ld
1631         $(CXXCOMPILE) -O2 -g0 -shared -fPIC -w -o $@ $(srcdir)/odr_violation2.cc
1632 debug_msg_ndebug.err: debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so gcctestdir/ld
1633         @echo $(CXXLINK_S) -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>$@"
1634         @if $(CXXLINK_S) -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>$@; \
1635         then \
1636           echo 1>&2 "Link of debug_msg_ndebug should have failed"; \
1637           rm -f $@; \
1638           exit 1; \
1639         fi
1642 # Similar to --detect-odr-violations: check for undefined symbols in .so's
1643 check_SCRIPTS += undef_symbol.sh
1644 check_DATA += undef_symbol.err
1645 MOSTLYCLEANFILES += undef_symbol.err
1646 undef_symbol.o: undef_symbol.cc
1647         $(CXXCOMPILE) -O0 -g -c -fPIC $<
1648 undef_symbol.so: undef_symbol.o gcctestdir/ld
1649         $(CXXLINK) -shared undef_symbol.o
1650 undef_symbol.err: undef_symbol_main.o undef_symbol.so gcctestdir/ld
1651         @echo $(CXXLINK) -o undef_symbol_test undef_symbol_main.o undef_symbol.so "2>$@"
1652         @if $(CXXLINK) -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>$@; \
1653         then \
1654           echo 1>&2 "Link of undef_symbol_test should have failed"; \
1655           rm -f $@; \
1656           exit 1; \
1657         fi
1660 # Test -o when emitting to a special file (such as something in /dev).
1661 check_PROGRAMS += flagstest_o_specialfile
1662 flagstest_o_specialfile: flagstest_debug.o gcctestdir/ld
1663         $(CXXLINK) -o /dev/stdout $< 2>&1 | cat > $@
1664         chmod a+x $@
1665         test -s $@
1667 # Test --compress-debug-sections.
1668 check_PROGRAMS += flagstest_compress_debug_sections_none
1669 check_DATA += flagstest_compress_debug_sections_none.stdout
1670 flagstest_compress_debug_sections_none: flagstest_debug.o gcctestdir/ld
1671         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=none
1672         test -s $@
1674 # Dump DWARF debug sections.
1675 flagstest_compress_debug_sections_none.stdout: flagstest_compress_debug_sections_none
1676         $(TEST_READELF) -w $< > $@.tmp
1677         mv -f $@.tmp $@
1679 check_PROGRAMS += flagstest_compress_debug_sections
1680 check_DATA += flagstest_compress_debug_sections.stdout \
1681               flagstest_compress_debug_sections.cmp \
1682               flagstest_compress_debug_sections.check
1683 MOSTLYCLEANFILES += flagstest_compress_debug_sections.check \
1684                     flagstest_compress_debug_sections.cmp
1685 flagstest_compress_debug_sections: flagstest_debug.o gcctestdir/ld
1686         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=zlib
1687         test -s $@
1689 # Test --compress-debug-sections with --build-id=tree.
1690 check_PROGRAMS += flagstest_compress_debug_sections_and_build_id_tree
1691 flagstest_compress_debug_sections_and_build_id_tree: flagstest_debug.o gcctestdir/ld
1692         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=zlib \
1693                 -Wl,--build-id=tree \
1694                 -Wl,--build-id-chunk-size-for-treehash=4096 \
1695                 -Wl,--build-id-min-file-size-for-treehash=0
1696         test -s $@
1698 # Dump compressed DWARF debug sections.
1699 flagstest_compress_debug_sections.stdout: flagstest_compress_debug_sections
1700         $(TEST_READELF) -w $< | sed -e "s/.zdebug_/.debug_/" > $@.tmp
1701         mv -f $@.tmp $@
1703 # Check there are compressed DWARF .debug_* sections.
1704 flagstest_compress_debug_sections.check: flagstest_compress_debug_sections
1705         $(TEST_READELF) -SW $< | grep "\.debug_.* C" > $@.tmp
1706         mv -f $@.tmp $@
1708 # Compare DWARF debug info.
1709 flagstest_compress_debug_sections.cmp: flagstest_compress_debug_sections.stdout \
1710         flagstest_compress_debug_sections_none.stdout
1711         cmp flagstest_compress_debug_sections.stdout \
1712                 flagstest_compress_debug_sections_none.stdout > $@.tmp
1713         mv -f $@.tmp $@
1715 check_PROGRAMS += flagstest_compress_debug_sections_gnu
1716 check_DATA += flagstest_compress_debug_sections_gnu.stdout \
1717               flagstest_compress_debug_sections_gnu.cmp \
1718               flagstest_compress_debug_sections_gnu.check
1719 MOSTLYCLEANFILES += flagstest_compress_debug_sections_gnu.check \
1720                     flagstest_compress_debug_sections_gnu.cmp
1721 flagstest_compress_debug_sections_gnu: flagstest_debug.o gcctestdir/ld
1722         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=zlib-gnu
1723         test -s $@
1725 # Dump compressed DWARF debug sections.
1726 flagstest_compress_debug_sections_gnu.stdout: flagstest_compress_debug_sections_gnu
1727         $(TEST_READELF) -w $< | sed -e "s/.zdebug_/.debug_/" > $@.tmp
1728         mv -f $@.tmp $@
1730 # Check there are compressed DWARF .zdebug_* sections.
1731 flagstest_compress_debug_sections_gnu.check: flagstest_compress_debug_sections_gnu
1732         $(TEST_READELF) -SW $< | grep ".zdebug_" > $@.tmp
1733         mv -f $@.tmp $@
1735 # Compare DWARF debug info.
1736 flagstest_compress_debug_sections_gnu.cmp: flagstest_compress_debug_sections_gnu.stdout \
1737         flagstest_compress_debug_sections_none.stdout
1738         cmp flagstest_compress_debug_sections_gnu.stdout \
1739                 flagstest_compress_debug_sections_none.stdout > $@.tmp
1740         mv -f $@.tmp $@
1742 check_PROGRAMS += flagstest_compress_debug_sections_gabi
1743 check_DATA += flagstest_compress_debug_sections_gabi.stdout \
1744               flagstest_compress_debug_sections_gabi.cmp \
1745               flagstest_compress_debug_sections_gabi.check
1746 MOSTLYCLEANFILES += flagstest_compress_debug_sections_gabi.cmp \
1747                     flagstest_compress_debug_sections_gabi.check
1748 flagstest_compress_debug_sections_gabi: flagstest_debug.o gcctestdir/ld
1749         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=zlib-gabi
1750         test -s $@
1752 # Dump compressed DWARF debug sections.
1753 flagstest_compress_debug_sections_gabi.stdout: flagstest_compress_debug_sections_gabi
1754         $(TEST_READELF) -w $< > $@.tmp
1755         mv -f $@.tmp $@
1757 # Check there are compressed DWARF .debug_* sections.
1758 flagstest_compress_debug_sections_gabi.check: flagstest_compress_debug_sections_gabi
1759         $(TEST_READELF) -tW $< | grep "COMPRESSED" > $@.tmp
1760         mv -f $@.tmp $@
1762 # Compare DWARF debug info.
1763 flagstest_compress_debug_sections_gabi.cmp: flagstest_compress_debug_sections_gabi.stdout \
1764         flagstest_compress_debug_sections_none.stdout
1765         cmp flagstest_compress_debug_sections_gabi.stdout \
1766                 flagstest_compress_debug_sections_none.stdout > $@.tmp
1767         mv -f $@.tmp $@
1769 if HAVE_ZSTD
1770 check_PROGRAMS += flagstest_compress_debug_sections_zstd
1771 flagstest_compress_debug_sections_zstd: flagstest_debug.o gcctestdir/ld
1772         $(CXXLINK) -o $@ $< -Wl,--compress-debug-sections=zstd
1773         test -s $@
1774 endif
1776 # The specialfile output has a tricky case when we also compress debug
1777 # sections, because it requires output-file resizing.
1778 check_PROGRAMS += flagstest_o_specialfile_and_compress_debug_sections
1779 flagstest_o_specialfile_and_compress_debug_sections: flagstest_debug.o \
1780                 gcctestdir/ld
1781         $(CXXLINK) -o /dev/stdout $< -Wl,--compress-debug-sections=zlib 2>&1 | cat > $@
1782         chmod a+x $@
1783         test -s $@
1785 check_SCRIPTS += pr18689.sh
1786 check_DATA += pr18689.stdout
1787 MOSTLYCLEANFILES += pr18689a.o pr18689b.o
1789 pr18689.stdout: pr18689b.o
1790         $(TEST_READELF) -SW $< > $@
1792 pr18689a.o: pr18689.o ../ld-new
1793         ../ld-new -r -o $@ $<
1795 pr18689b.o: pr18689a.o ../ld-new
1796         ../ld-new -r -o $@ $<
1798 pr18689.o: pr18689.c gcctestdir/as
1799         $(COMPILE) -ggdb3 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o $@ $(srcdir)/pr18689.c
1801 # Test -TText and -Tdata.
1802 check_PROGRAMS += flagstest_o_ttext_1
1803 flagstest_o_ttext_1: flagstest_debug.o gcctestdir/ld
1804         $(CXXLINK) -o $@ $< -Wl,-Ttext,0x400000 -Wl,-Tdata,0x800000
1806 # This version won't be runnable, because there is no way to put the
1807 # PT_PHDR segment at file offset 0.  We just make sure that we can
1808 # build it without error.
1809 check_DATA += flagstest_o_ttext_2
1810 MOSTLYCLEANFILES += flagstest_o_ttext_2
1811 flagstest_o_ttext_2: flagstest_debug.o gcctestdir/ld
1812         $(CXXLINK) -o $@ $< -Wl,-Ttext,0x400010 -Wl,-Tdata,0x800010
1814 # Test symbol versioning.
1815 check_PROGRAMS += ver_test
1816 ver_test_SOURCES = ver_test_main.cc
1817 ver_test_DEPENDENCIES = gcctestdir/ld ver_test_1.so ver_test_2.so ver_test_4.so
1818 ver_test_LDFLAGS = -Wl,-R,.
1819 ver_test_LDADD = ver_test_1.so ver_test_2.so ver_test_4.so
1820 ver_test_1.so: ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so gcctestdir/ld
1821         $(CXXLINK) -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
1822 ver_test_2.so: ver_test_2.o $(srcdir)/ver_test_2.script ver_test_4.so gcctestdir/ld
1823         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_2.script -Wl,-R,. ver_test_2.o ver_test_4.so
1824 ver_test_4.so: ver_test_4.o $(srcdir)/ver_test_4.script gcctestdir/ld
1825         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o
1826 ver_test_1.o: ver_test_1.cc
1827         $(CXXCOMPILE) -c -fpic -o $@ $<
1828 ver_test_2.o: ver_test_2.cc
1829         $(CXXCOMPILE) -c -fpic -o $@ $<
1830 ver_test_3.o: ver_test_3.cc
1831         $(CXXCOMPILE) -c -fpic -o $@ $<
1832 ver_test_4.o: ver_test_4.cc
1833         $(CXXCOMPILE) -c -fpic -o $@ $<
1835 check_SCRIPTS += ver_test_1.sh
1836 check_DATA += ver_test_1.syms
1837 ver_test_1.syms: ver_test_1.so
1838         $(TEST_READELF) -s $< >$@ 2>/dev/null
1840 check_PROGRAMS += ver_test_2
1841 ver_test_2_SOURCES = ver_test_main_2.cc
1842 ver_test_2_DEPENDENCIES = gcctestdir/ld ver_test_4.so ver_test_2.so
1843 ver_test_2_LDFLAGS = -Wl,-R,.
1844 ver_test_2_LDADD = ver_test_4.so ver_test_2.so
1846 check_SCRIPTS += ver_test_2.sh
1847 check_DATA += ver_test_2.syms
1848 ver_test_2.syms: ver_test_2
1849         $(TEST_READELF) -s $< >$@ 2>/dev/null
1851 check_SCRIPTS += ver_test_4.sh
1852 check_DATA += ver_test_4.syms
1853 ver_test_4.syms: ver_test_4.so
1854         $(TEST_READELF) -s $< >$@ 2>/dev/null
1856 ver_test_5.so: ver_test_5.o $(srcdir)/ver_test_5.script ver_test_4.so gcctestdir/ld
1857         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_5.script ver_test_5.o ver_test_4.so
1858 ver_test_5.o: ver_test_5.cc
1859         $(CXXCOMPILE) -c -fpic -o $@ $<
1860 check_SCRIPTS += ver_test_5.sh
1861 check_DATA += ver_test_5.syms
1862 ver_test_5.syms: ver_test_5.so
1863         $(TEST_READELF) -s $< >$@ 2>/dev/null
1865 check_PROGRAMS += ver_test_6
1866 ver_test_6_SOURCES = ver_test_6.c
1867 ver_test_6_DEPENDENCIES = gcctestdir/ld ver_test_2.so
1868 ver_test_6_LDFLAGS = -Wl,-R,.
1869 ver_test_6_LDADD = ver_test_2.so
1871 ver_test_7.so: ver_test_4.o $(srcdir)/ver_test_4.script ver_test_7.o gcctestdir/ld
1872         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_4.script ver_test_4.o ver_test_7.o
1873 ver_test_7.o: ver_test_7.cc
1874         $(CXXCOMPILE) -c -fpic -o $@ $<
1875 check_SCRIPTS += ver_test_7.sh
1876 check_DATA += ver_test_7.syms
1877 ver_test_7.syms: ver_test_7.so
1878         $(TEST_READELF) -s $< >$@ 2>/dev/null
1880 check_PROGRAMS += ver_test_8
1881 ver_test_8_SOURCES = two_file_test_main.cc
1882 ver_test_8_DEPENDENCIES = gcctestdir/ld ver_test_8_1.so ver_test_8_2.so
1883 ver_test_8_LDFLAGS = -Wl,-R,.
1884 ver_test_8_LDADD = ver_test_8_1.so ver_test_8_2.so
1885 ver_test_8_1.so: two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so gcctestdir/ld
1886         $(CXXLINK) -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
1887 ver_test_8_2.so: two_file_test_2_pic.o $(srcdir)/ver_test_8.script gcctestdir/ld
1888         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_8.script two_file_test_2_pic.o
1890 check_SCRIPTS += ver_test_8.sh
1891 check_DATA += ver_test_8_2.so.syms
1892 ver_test_8_2.so.syms: ver_test_8_2.so
1893         $(TEST_READELF) -s $< >$@ 2>/dev/null
1895 check_PROGRAMS += ver_test_9
1896 ver_test_9_SOURCES = ver_test_main.cc
1897 ver_test_9_DEPENDENCIES = gcctestdir/ld ver_test_9.so
1898 ver_test_9_LDFLAGS = -Wl,-R,.
1899 ver_test_9_LDADD = ver_test_9.so
1900 ver_test_9.so: ver_test_9.o ver_test_4.so ver_test_5.so gcctestdir/ld
1901         $(CXXLINK) -shared -Wl,-R,. ver_test_9.o ver_test_5.so ver_test_4.so
1902 ver_test_9.o: ver_test_9.cc
1903         $(CXXCOMPILE) -c -fpic -o $@ $<
1905 check_SCRIPTS += ver_test_10.sh
1906 check_DATA += ver_test_10.syms
1907 ver_test_10.syms: ver_test_10.so
1908         $(TEST_READELF) -s $< >$@ 2>/dev/null
1909 ver_test_10.so: gcctestdir/ld ver_test_2.o ver_test_10.script
1910         $(CXXLINK) -shared -Wl,--version-script,$(srcdir)/ver_test_10.script ver_test_2.o
1912 check_PROGRAMS += ver_test_11
1913 MOSTLYCLEANFILES += ver_test_11.a
1914 ver_test_11_SOURCES = ver_test_main_2.cc
1915 ver_test_11_DEPENDENCIES = gcctestdir/ld ver_test_11.a
1916 ver_test_11_LDFLAGS = -Wl,-R,.
1917 ver_test_11_LDADD = ver_test_11.a
1918 ver_test_11.a: ver_test_1.o ver_test_2.o ver_test_4.o
1919         $(TEST_AR) rc $@ $^
1921 check_PROGRAMS += ver_test_12
1922 ver_test_12_SOURCES = ver_test_main_2.cc
1923 ver_test_12_DEPENDENCIES = gcctestdir/ld ver_test_12.o
1924 ver_test_12_LDFLAGS = -Wl,-R,.
1925 ver_test_12_LDADD = ver_test_12.o
1926 ver_test_12.o: gcctestdir/ld ver_test_1.o ver_test_2.o ver_test_4.o
1927         gcctestdir/ld -r -o $@ ver_test_1.o ver_test_2.o ver_test_4.o
1929 check_SCRIPTS += ver_test_13.sh
1930 check_DATA += ver_test_13.syms
1931 ver_test_13.syms: ver_test_13.so
1932         $(TEST_READELF) -s $< >$@ 2>/dev/null
1933 ver_test_13.so: gcctestdir/ld ver_test_13.o ver_test_13.script
1934         $(LINK) -shared -Wl,--version-script,$(srcdir)/ver_test_13.script ver_test_13.o
1935 ver_test_13.o: ver_test_13.c
1936         $(COMPILE) -c -fpic -o $@ $<
1938 check_SCRIPTS += ver_test_14.sh
1939 check_DATA += ver_test_14.syms
1940 MOSTLYCLEANFILES += ver_test_14
1941 ver_test_14.syms: ver_test_14
1942         $(TEST_OBJDUMP) -T $< | $(TEST_CXXFILT) >$@
1943 ver_test_14: gcctestdir/ld ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so ver_test_14.script
1944         $(CXXLINK) -Wl,--version-script,$(srcdir)/ver_test_14.script -Wl,-E -Wl,-R,. ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so
1946 check_SCRIPTS += ver_test_pr23409.sh
1947 check_DATA += ver_test_pr23409.syms
1948 ver_test_pr23409.syms: ver_test_pr23409_1.so
1949         $(TEST_READELF) --dyn-syms -W $< >$@
1950 ver_test_pr23409_1.so: gcctestdir/ld ver_test_1.o $(srcdir)/ver_test_pr23409_1.script ver_test_pr23409_2.so
1951         gcctestdir/ld -shared -o $@ ver_test_1.o ver_test_pr23409_2.so --version-script $(srcdir)/ver_test_pr23409_1.script
1952 ver_test_pr23409_2.so: gcctestdir/ld ver_test_1.o $(srcdir)/ver_test_pr23409_2.script
1953         gcctestdir/ld -shared -o $@ ver_test_1.o --version-script $(srcdir)/ver_test_pr23409_2.script
1955 check_SCRIPTS += weak_as_needed.sh
1956 check_DATA += weak_as_needed.stdout
1957 weak_as_needed.stdout: weak_as_needed_a.so
1958         $(TEST_READELF) -dW --dyn-syms $< >$@
1959 weak_as_needed_a.so: gcctestdir/ld weak_as_needed_a.o weak_as_needed_b.so weak_as_needed_c.so
1960         gcctestdir/ld -shared -rpath . -o $@ weak_as_needed_a.o --as-needed weak_as_needed_b.so weak_as_needed_c.so
1961 weak_as_needed_b.so: gcctestdir/ld weak_as_needed_b.o weak_as_needed_b.script
1962         gcctestdir/ld -shared -rpath . -o $@ --version-script $(srcdir)/weak_as_needed_b.script weak_as_needed_b.o
1963 weak_as_needed_c.so: gcctestdir/ld weak_as_needed_c.o weak_as_needed_c.script
1964         gcctestdir/ld -shared -rpath . -o $@ --version-script $(srcdir)/weak_as_needed_c.script weak_as_needed_c.o
1965 weak_as_needed_a.o: weak_as_needed_a.c
1966         $(COMPILE) -c -fpic -o $@ $<
1967 weak_as_needed_b.o: weak_as_needed_b.c
1968         $(COMPILE) -c -fpic -o $@ $<
1969 weak_as_needed_c.o: weak_as_needed_c.c
1970         $(COMPILE) -c -fpic -o $@ $<
1972 check_PROGRAMS += protected_1
1973 protected_1_SOURCES = \
1974         protected_main_1.cc protected_main_2.cc protected_main_3.cc
1975 protected_1_DEPENDENCIES = gcctestdir/ld protected_1.so
1976 protected_1_LDFLAGS = -Wl,-R,.
1977 protected_1_LDADD = protected_1.so
1979 protected_1.so: gcctestdir/ld protected_1_pic.o protected_2_pic.o protected_3_pic.o
1980         $(CXXLINK) -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
1981 protected_1_pic.o: protected_1.cc
1982         $(CXXCOMPILE) -c -fpic -o $@ $<
1983 protected_2_pic.o: protected_2.cc
1984         $(CXXCOMPILE) -c -fpic -o $@ $<
1985 protected_3_pic.o: protected_3.cc
1986         $(CXXCOMPILE) -c -fpic -o $@ $<
1988 check_PROGRAMS += protected_2
1989 protected_2_SOURCES = protected_main_1.cc protected_3.cc
1990 protected_2_DEPENDENCIES = gcctestdir/ld protected_1.so
1991 protected_2_LDFLAGS = -Wl,-R,.
1992 protected_2_LDADD = protected_1.so
1994 check_DATA += protected_3.err
1995 MOSTLYCLEANFILES += protected_3.err
1996 protected_4_pic.o: protected_4.cc
1997         $(CXXCOMPILE) -c -fpic -o $@ $<
1998 protected_3.err: protected_4_pic.o gcctestdir/ld
1999         @echo $(CXXLINK) -shared -o protected_4.so protected_4_pic.o "2>$@"
2000         @if $(CXXLINK) -shared -o protected_4.so protected_4_pic.o 2>$@; then \
2001           echo 1>&2 "Link of protected_4.so should have failed"; \
2002           rm -f $@; \
2003           exit 1; \
2004         fi
2006 check_PROGRAMS += relro_test
2007 check_SCRIPTS += relro_test.sh
2008 check_DATA += relro_test.stdout
2009 relro_test_SOURCES = relro_test_main.cc
2010 relro_test_DEPENDENCIES = gcctestdir/ld relro_test.so
2011 relro_test_LDFLAGS = -Wl,-R,.
2012 relro_test_LDADD = relro_test.so
2013 relro_test.so: gcctestdir/ld relro_test_pic.o
2014         $(CXXLINK) -shared -Wl,-z,relro relro_test_pic.o
2015 relro_test_pic.o: relro_test.cc
2016         $(CXXCOMPILE) -c -fpic -o $@ $<
2017 relro_test.stdout: relro_test.so
2018         $(TEST_READELF) -SlW relro_test.so > relro_test.stdout
2020 check_PROGRAMS += relro_now_test
2021 relro_now_test_SOURCES = relro_test_main.cc
2022 relro_now_test_DEPENDENCIES = gcctestdir/ld relro_now_test.so
2023 relro_now_test_LDFLAGS = -Wl,-R,. -Wl,-z,relro -Wl,-z,now
2024 relro_now_test_LDADD = relro_now_test.so
2025 relro_now_test.so: gcctestdir/ld relro_test_pic.o
2026         $(CXXLINK) -shared -Wl,-z,relro -Wl,-z,now relro_test_pic.o
2028 check_PROGRAMS += relro_strip_test
2029 relro_strip_test_SOURCES = relro_test_main.cc
2030 relro_strip_test_DEPENDENCIES = gcctestdir/ld relro_strip_test.so
2031 relro_strip_test_LDFLAGS = -Wl,-R,.
2032 relro_strip_test_LDADD = relro_strip_test.so
2033 relro_strip_test.so: relro_test.so
2034         $(TEST_STRIP) -o $@ $<
2036 check_PROGRAMS += relro_script_test
2037 relro_script_test_SOURCES = relro_test_main.cc
2038 relro_script_test_DEPENDENCIES = gcctestdir/ld relro_script_test.so
2039 relro_script_test_LDFLAGS = -Wl,-R,.
2040 relro_script_test_LDADD = relro_script_test.so
2041 relro_script_test.so: gcctestdir/ld relro_script_test.t relro_test_pic.o
2042         $(CXXLINK) -shared -Wl,-z,relro -Wl,-T,$(srcdir)/relro_script_test.t relro_test_pic.o
2044 check_PROGRAMS += script_test_1
2045 script_test_1_SOURCES = script_test_1a.cc script_test_1b.cc
2046 script_test_1_DEPENDENCIES = gcctestdir/ld script_test_1.t
2047 script_test_1_LDFLAGS = -Wl,-R,. -Wl,-T,$(srcdir)/script_test_1.t
2048 script_test_1_LDADD =
2050 check_PROGRAMS += script_test_2
2051 script_test_2_SOURCES = script_test_2.cc script_test_2a.cc script_test_2b.cc
2052 script_test_2_DEPENDENCIES = gcctestdir/ld script_test_2.t
2053 script_test_2_LDFLAGS = -Wl,-R,. -Wl,-T,$(srcdir)/script_test_2.t
2054 script_test_2_LDADD =
2056 check_PROGRAMS += justsyms
2057 justsyms_SOURCES = justsyms_1.cc
2058 justsyms_DEPENDENCIES = gcctestdir/ld justsyms_2r.o
2059 justsyms_LDFLAGS = -Wl,-R,justsyms_2r.o
2060 justsyms_LDADD =
2061 justsyms_2.o: justsyms_2.cc
2062         $(CXXCOMPILE) -c -o $@ $<
2063 justsyms_2r.o: justsyms_2.o gcctestdir/ld $(srcdir)/justsyms.t
2064         gcctestdir/ld -o $@ -r -T $(srcdir)/justsyms.t justsyms_2.o
2066 check_PROGRAMS += justsyms_exec
2067 justsyms_exec_SOURCES = justsyms_exec.c
2068 justsyms_exec_DEPENDENCIES = gcctestdir/ld justsyms_lib
2069 justsyms_exec_LDFLAGS = -Wl,-R,justsyms_lib
2070 justsyms_exec_LDADD =
2071 MOSTLYCLEANFILES += justsyms_lib
2072 justsyms_lib.o: justsyms_lib.c
2073         $(COMPILE) -c -o $@ $<
2074 justsyms_lib: justsyms_lib.o gcctestdir/ld
2075         gcctestdir/ld -o $@ -z norelro -T $(srcdir)/justsyms_lib.t -Ttext=0x1000200 -Tdata=0x2000000 -e exported_func justsyms_lib.o
2077 check_PROGRAMS += binary_test
2078 MOSTLYCLEANFILES += binary.txt
2079 binary_test_SOURCES = binary_test.cc
2080 binary_test_DEPENDENCIES = gcctestdir/ld binary.txt
2081 binary_test_LDFLAGS = -Wl,--format,binary,binary.txt,--format,elf
2082 binary_test_LDADD =
2083 # Copy the file to the build directory to avoid worrying about the
2084 # full pathname in the generated symbols.
2085 binary.txt: $(srcdir)/binary.in
2086         rm -f $@
2087         $(LN_S) $< $@
2089 check_SCRIPTS += ver_matching_test.sh
2090 check_DATA += ver_matching_test.stdout
2091 MOSTLYCLEANFILES += ver_matching_test.stdout
2092 ver_matching_def.so: ver_matching_def_pic.o $(srcdir)/version_script.map gcctestdir/ld
2093         $(CXXLINK) -O0 -shared ver_matching_def_pic.o -Wl,--version-script=$(srcdir)/version_script.map
2094 ver_matching_def_pic.o: ver_matching_def.cc
2095         $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
2096 ver_matching_test.stdout: ver_matching_def.so
2097         $(TEST_OBJDUMP) -T ver_matching_def.so | $(TEST_CXXFILT) > ver_matching_test.stdout
2099 check_PROGRAMS += script_test_3
2100 check_SCRIPTS += script_test_3.sh
2101 check_DATA += script_test_3.stdout
2102 MOSTLYCLEANFILES += script_test_3.stdout
2103 script_test_3: basic_test.o gcctestdir/ld script_test_3.t
2104         $(CXXLINK) basic_test.o -Wl,-T,$(srcdir)/script_test_3.t
2105 script_test_3.stdout: script_test_3
2106         $(TEST_READELF) -SlW script_test_3 > script_test_3.stdout
2108 check_PROGRAMS += tls_phdrs_script_test
2109 tls_phdrs_script_test_SOURCES = $(tls_test_SOURCES)
2110 tls_phdrs_script_test_DEPENDENCIES = $(tls_test_DEPENDENCIES) $(srcdir)/script_test_3.t
2111 tls_phdrs_script_test_LDFLAGS = $(tls_test_LDFLAGS) -Wl,-T,$(srcdir)/script_test_3.t
2112 tls_phdrs_script_test_LDADD = $(tls_test_LDADD)
2114 check_SCRIPTS += script_test_4.sh
2115 check_DATA += script_test_4.stdout
2116 MOSTLYCLEANFILES += script_test_4
2117 script_test_4: basic_test.o gcctestdir/ld $(srcdir)/script_test_4.t
2118         $(CXXLINK) basic_test.o -Wl,-T,$(srcdir)/script_test_4.t
2119 script_test_4.stdout: script_test_4
2120         $(TEST_READELF) -SlW script_test_4 > script_test_4.stdout
2122 check_PROGRAMS += tls_script_test
2123 tls_script_test_SOURCES = $(tls_test_SOURCES)
2124 tls_script_test_DEPENDENCIES = $(tls_test_DEPENDENCIES) $(srcdir)/script_test_4.t
2125 tls_script_test_LDFLAGS = $(tls_test_LDFLAGS) -Wl,-T,$(srcdir)/script_test_4.t
2126 tls_script_test_LDADD = $(tls_test_LDADD)
2128 check_SCRIPTS += script_test_5.sh
2129 check_DATA += script_test_5.stdout
2130 MOSTLYCLEANFILES += script_test_5
2131 script_test_5: script_test_5.o gcctestdir/ld $(srcdir)/script_test_5.t
2132         $(CXXLINK) script_test_5.o -Wl,-T,$(srcdir)/script_test_5.t
2133 script_test_5.stdout: script_test_5
2134         $(TEST_READELF) -SW script_test_5 > script_test_5.stdout
2136 check_SCRIPTS += script_test_6.sh
2137 check_DATA += script_test_6.stdout
2138 MOSTLYCLEANFILES += script_test_6
2139 script_test_6: basic_test.o gcctestdir/ld $(srcdir)/script_test_6.t
2140         $(CXXLINK) basic_test.o -Wl,-T,$(srcdir)/script_test_6.t \
2141         -Wl,-Ttext=0x10001000 -Wl,-Tdata=0x10200000 -Wl,-Tbss=0x10400000
2142 script_test_6.stdout: script_test_6
2143         $(TEST_READELF) -SlW script_test_6 > script_test_6.stdout
2145 check_SCRIPTS += script_test_7.sh
2146 check_DATA += script_test_7.stdout
2147 MOSTLYCLEANFILES += script_test_7
2148 script_test_7: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
2149         $(CXXLINK) basic_test.o -Wl,-T,$(srcdir)/script_test_7.t
2150 script_test_7.stdout: script_test_7
2151         $(TEST_READELF) -SlW script_test_7 > script_test_7.stdout
2153 check_SCRIPTS += script_test_8.sh
2154 check_DATA += script_test_8.stdout
2155 MOSTLYCLEANFILES += script_test_8
2156 script_test_8: basic_test.o gcctestdir/ld $(srcdir)/script_test_7.t
2157         $(CXXLINK) basic_test.o -Wl,-T,$(srcdir)/script_test_7.t \
2158         -Wl,-Ttext=0x20001000 -Wl,-Tdata=0x20200000 -Wl,-Tbss=0x20400000
2159 script_test_8.stdout: script_test_8
2160         $(TEST_READELF) -SlW script_test_8 > script_test_8.stdout
2162 check_SCRIPTS += script_test_9.sh
2163 check_DATA += script_test_9.stdout
2164 MOSTLYCLEANFILES += script_test_9
2165 script_test_9.o: script_test_9.cc
2166         $(CXXCOMPILE) -O0 -c -o $@ $<
2167 script_test_9: gcctestdir/ld $(srcdir)/script_test_9.t script_test_9.o
2168         $(CXXLINK) script_test_9.o -Wl,-T,$(srcdir)/script_test_9.t
2169 script_test_9.stdout: script_test_9
2170         $(TEST_READELF) -lW script_test_9 > script_test_9.stdout
2172 # Test scripts with a relocatable link.
2173 # The -g option is necessary to trigger a bug where a section
2174 # declared in a script file is assigned a non-zero starting address.
2175 check_PROGRAMS += script_test_11
2176 script_test_11: gcctestdir/ld script_test_11_r.o
2177         $(LINK) script_test_11_r.o
2178 script_test_11_r.o: gcctestdir/ld $(srcdir)/script_test_11.t script_test_11a.o script_test_11b.o
2179         gcctestdir/ld -r -o $@ -T $(srcdir)/script_test_11.t script_test_11a.o script_test_11b.o
2180 script_test_11a.o: script_test_11a.c
2181         $(COMPILE) -c -g -o $@ $<
2182 script_test_11b.o: script_test_11b.c
2183         $(COMPILE) -c -g -o $@ $<
2185 # Test difference between "*(a b)" and "*(a) *(b)" in input section spec.
2186 check_PROGRAMS += script_test_12
2187 script_test_12: gcctestdir/ld $(srcdir)/script_test_12.t script_test_12a.o script_test_12b.o
2188         $(LINK) -Wl,-T,$(srcdir)/script_test_12.t script_test_12a.o script_test_12b.o
2190 check_PROGRAMS += script_test_12i
2191 script_test_12i: gcctestdir/ld $(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o
2192         $(LINK) -Wl,-T,$(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o
2193 script_test_12a.o: script_test_12a.c
2194         $(COMPILE) -O0 -c -o $@ $<
2195 script_test_12b.o: script_test_12b.c
2196         $(COMPILE) -O0 -c -o $@ $<
2198 # Test for ordering internally created sections with a linker script.
2199 check_SCRIPTS += script_test_13.sh
2200 check_DATA += script_test_13.stdout
2201 MOSTLYCLEANFILES += script_test_13
2202 script_test_13.o: script_test_13.c
2203         $(COMPILE) -O0 -c -fPIC -o $@ $<
2204 script_test_13: $(srcdir)/script_test_13.t script_test_13.o gcctestdir/ld
2205         gcctestdir/ld -shared -o $@ script_test_13.o -T $(srcdir)/script_test_13.t
2206 script_test_13.stdout: script_test_13
2207         $(TEST_READELF) -SW script_test_13 > $@
2209 # Test for SORT_BY_INIT_PRIORITY.
2210 check_SCRIPTS += script_test_14.sh
2211 check_DATA += script_test_14.stdout
2212 MOSTLYCLEANFILES += script_test_14
2213 script_test_14.o: script_test_14.s
2214         $(TEST_AS) -o $@ $<
2215 script_test_14: $(srcdir)/script_test_14.t script_test_14.o gcctestdir/ld
2216         gcctestdir/ld -o $@ script_test_14.o -T $(srcdir)/script_test_14.t
2217 script_test_14.stdout: script_test_14
2218         $(TEST_OBJDUMP) -s script_test_14 > $@
2220 # Test BSS section placement at end of segment.
2221 check_SCRIPTS += script_test_15a.sh
2222 check_DATA += script_test_15a.stdout
2223 MOSTLYCLEANFILES += script_test_15a
2224 script_test_15a: $(srcdir)/script_test_15a.t script_test_15.o gcctestdir/ld
2225         gcctestdir/ld -o $@ script_test_15.o -T $(srcdir)/script_test_15a.t
2226 script_test_15a.stdout: script_test_15a
2227         $(TEST_READELF) -lSW script_test_15a > $@
2229 # Test BSS section placement in middle of segment.
2230 check_SCRIPTS += script_test_15b.sh
2231 check_DATA += script_test_15b.stdout
2232 MOSTLYCLEANFILES += script_test_15b
2233 script_test_15b: $(srcdir)/script_test_15b.t script_test_15.o gcctestdir/ld
2234         gcctestdir/ld -o $@ script_test_15.o -T $(srcdir)/script_test_15b.t
2235 script_test_15b.stdout: script_test_15b
2236         $(TEST_READELF) -lSW script_test_15b > $@
2238 # Test orphan BSS section placement.
2239 check_SCRIPTS += script_test_15c.sh
2240 check_DATA += script_test_15c.stdout
2241 MOSTLYCLEANFILES += script_test_15c
2242 script_test_15c: $(srcdir)/script_test_15c.t script_test_15.o gcctestdir/ld
2243         gcctestdir/ld -o $@ script_test_15.o -T $(srcdir)/script_test_15c.t
2244 script_test_15c.stdout: script_test_15c
2245         $(TEST_READELF) -lSW script_test_15c > $@
2247 # Test --dynamic-list, --dynamic-list-data, --dynamic-list-cpp-new,
2248 # and --dynamic-list-cpp-typeinfo
2250 check_SCRIPTS += dynamic_list.sh
2251 check_DATA += dynamic_list.stdout
2252 MOSTLYCLEANFILES += dynamic_list dynamic_list.stdout
2253 dynamic_list: basic_test.o gcctestdir/ld $(srcdir)/dynamic_list.t
2254         $(CXXLINK) basic_test.o \
2255           -Wl,--dynamic-list $(srcdir)/dynamic_list.t \
2256           -Wl,--dynamic-list-data \
2257           -Wl,--dynamic-list-cpp-new \
2258           -Wl,--dynamic-list-cpp-typeinfo
2259 dynamic_list.stdout: dynamic_list
2260         $(TEST_READELF) -W --dyn-syms dynamic_list > dynamic_list.stdout
2262 check_PROGRAMS += dynamic_list_2
2263 dynamic_list_2_SOURCES = dynamic_list_2.cc
2264 dynamic_list_2_DEPENDENCIES = gcctestdir/ld dynamic_list_lib1.so dynamic_list_lib2.so
2265 dynamic_list_2_LDFLAGS = -L. -Wl,-R,. -Wl,--no-as-needed
2266 dynamic_list_2_LDADD = dynamic_list_lib1.so dynamic_list_lib2.so
2268 dynamic_list_lib1.so: gcctestdir/ld dynamic_list_lib1.o
2269         $(CXXLINK) -shared dynamic_list_lib1.o
2270 dynamic_list_lib1.o: dynamic_list_lib1.cc
2271         $(CXXCOMPILE) -c -fpic -o $@ $<
2273 dynamic_list_lib2.so: gcctestdir/ld dynamic_list_lib2.o $(srcdir)/dynamic_list_2.t
2274         $(CXXLINK) -shared -Wl,-Bsymbolic-functions -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o
2275 dynamic_list_lib2.o: dynamic_list_lib2.cc
2276         $(CXXCOMPILE) -c -fpic -o $@ $<
2278 check_PROGRAMS += thin_archive_test_1
2279 MOSTLYCLEANFILES += libthin1.a libthin3.a libthinall.a \
2280         alt/thin_archive_test_2.o alt/thin_archive_test_4.o \
2281         alt/libthin2.a alt/libthin4.a
2282 thin_archive_test_1_SOURCES = thin_archive_main.cc
2283 thin_archive_test_1_DEPENDENCIES = gcctestdir/ld libthin1.a alt/libthin2.a
2284 thin_archive_test_1_LDFLAGS = -Lalt
2285 thin_archive_test_1_LDADD = libthin1.a -lthin2
2287 check_PROGRAMS += thin_archive_test_2
2288 thin_archive_test_2_SOURCES = thin_archive_main.cc
2289 thin_archive_test_2_DEPENDENCIES = gcctestdir/ld libthinall.a
2290 thin_archive_test_2_LDFLAGS = -L.
2291 thin_archive_test_2_LDADD = -lthinall
2293 libthin1.a: thin_archive_test_1.o alt/thin_archive_test_2.o
2294         rm -f $@
2295         $(TEST_AR) crT $@ $^
2296 alt/libthin2.a: thin_archive_test_3.o alt/thin_archive_test_4.o
2297         rm -f $@
2298         $(TEST_AR) crT $@ $^
2299 libthin3.a: thin_archive_test_1.o alt/thin_archive_test_4.o
2300         rm -f $@
2301         $(TEST_AR) crT $@ $^
2302 alt/libthin4.a: alt/thin_archive_test_2.o thin_archive_test_3.o
2303         rm -f $@
2304         $(TEST_AR) crT $@ $^
2305 libthinall.a: libthin3.a alt/libthin4.a
2306         rm -f $@
2307         $(TEST_AR) crT $@ $^
2308 alt/thin_archive_test_2.o: thin_archive_test_2.cc
2309         test -d alt || mkdir -p alt
2310         $(CXXCOMPILE) -c -o $@ $<
2311 alt/thin_archive_test_4.o: thin_archive_test_4.cc
2312         test -d alt || mkdir -p alt
2313         $(CXXCOMPILE) -c -o $@ $<
2315 if PLUGINS
2317 check_PROGRAMS += plugin_test_1
2318 check_SCRIPTS += plugin_test_1.sh
2319 check_DATA += plugin_test_1.err
2320 MOSTLYCLEANFILES += plugin_test_1.err
2321 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
2322         $(CXXLINK) -Wl,--no-demangle,--emit-relocs,--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
2323 plugin_test_1.err: plugin_test_1
2324         @touch plugin_test_1.err
2326 check_PROGRAMS += plugin_test_2
2327 check_SCRIPTS += plugin_test_2.sh
2328 check_DATA += plugin_test_2.err
2329 MOSTLYCLEANFILES += plugin_test_2.err
2330 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
2331         $(CXXLINK) -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
2332 plugin_test_2.err: plugin_test_2
2333         @touch plugin_test_2.err
2335 check_PROGRAMS += plugin_test_3
2336 check_SCRIPTS += plugin_test_3.sh
2337 check_DATA += plugin_test_3.err
2338 MOSTLYCLEANFILES += plugin_test_3.err
2339 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
2340         $(CXXLINK) -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
2341 plugin_test_3.err: plugin_test_3
2342         @touch plugin_test_3.err
2344 check_PROGRAMS += plugin_test_4
2345 check_SCRIPTS += plugin_test_4.sh
2346 check_DATA += plugin_test_4.err
2347 MOSTLYCLEANFILES += plugin_test_4.a plugin_test_4.err
2348 plugin_test_4: two_file_test_main.o plugin_test_4.a gcctestdir/ld plugin_test.so
2349         $(CXXLINK) -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
2350 plugin_test_4.err: plugin_test_4
2351         @touch plugin_test_4.err
2353 plugin_test_4.a: two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms
2354         $(TEST_AR) cr $@ $^
2356 check_PROGRAMS += plugin_test_5
2357 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
2358         $(CXXLINK) -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
2360 check_PROGRAMS += plugin_test_6
2361 check_SCRIPTS += plugin_test_6.sh
2362 check_DATA += plugin_test_6.err
2363 MOSTLYCLEANFILES += plugin_test_6.err
2364 plugin_test_6: plugin_common_test_1.o.syms plugin_common_test_2.o.syms gcctestdir/ld plugin_test.so
2365         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o.syms 2>plugin_test_6.err
2366 plugin_test_6.err: plugin_test_6
2367         @touch plugin_test_6.err
2369 check_PROGRAMS += plugin_test_7
2370 check_SCRIPTS += plugin_test_7.sh
2371 check_DATA += plugin_test_7.err plugin_test_7.o.syms
2372 MOSTLYCLEANFILES += plugin_test_7.err
2373 plugin_test_7: plugin_test_7_1.o plugin_test_7_1.o.syms plugin_test_7_2.o gcctestdir/ld plugin_test.so
2374         $(LINK) -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
2375 plugin_test_7.o.syms: plugin_test_7
2376         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2377 plugin_test_7_1.o: plugin_test_7_1.c
2378         $(COMPILE) -DLTO -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2379 plugin_test_7_1_orig.o: plugin_test_7_1.c
2380         $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2381 plugin_test_7_1.o.syms: plugin_test_7_1_orig.o
2382         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2383 plugin_test_7_2.o: plugin_test_7_2.c
2384         $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -o $@ $<
2385 plugin_test_7.err: plugin_test_7
2387 # Test plugins with -r.
2388 check_PROGRAMS += plugin_test_8
2389 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
2390         ../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
2391 plugin_test_8: plugin_test_8.o gcctestdir/ld
2392         $(CXXLINK) -Wl,--no-demangle plugin_test_8.o
2394 # Test that symbols known in the IR file but not in the replacement file
2395 # produce an unresolved symbol error.
2396 check_DATA += plugin_test_9.err
2397 MOSTLYCLEANFILES += plugin_test_9.err
2398 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
2399         @echo $(CXXLINK) -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>$@"
2400         @if $(CXXLINK) -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 \
2401           echo 1>&2 "Link of plugin_test_9 should have failed"; \
2402           rm -f $@; \
2403           exit 1; \
2404         fi
2405 # Make a .syms file that claims to define the symbol _Z4t16av.
2406 two_file_test_1c.o.syms: two_file_test_1.o.syms two_file_test_1c.o
2407         cp two_file_test_1.o.syms $@.tmp
2408         grep "_Z4t16av" two_file_test_1b.o.syms >> $@.tmp
2409         mv -f $@.tmp $@
2410 # Make a copy of two_file_test_1.o, which does not define the symbol _Z4t16av.
2411 MOSTLYCLEANFILES += two_file_test_1c.o
2412 two_file_test_1c.o: two_file_test_1.o
2413         cp two_file_test_1.o $@
2415 # As above, but check COMDAT case, where a non-IR file contains a duplicate
2416 # of a COMDAT group in an IR file.
2417 check_DATA += plugin_test_9b.err
2418 MOSTLYCLEANFILES += plugin_test_9b.err
2419 plugin_test_9b.err: plugin_test_9b_ir.o.syms plugin_test_9b_ir.o plugin_test_9b_elf.o gcctestdir/ld plugin_test.so
2420         @echo $(CXXLINK) -o plugin_test_9b -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_ZN1A5printEv" plugin_test_9b_ir.o plugin_test_9b_elf.o "2>$@"
2421         @if $(CXXLINK) -o plugin_test_9b -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_ZN1A5printEv" plugin_test_9b_ir.o plugin_test_9b_elf.o 2>$@; then \
2422           echo 1>&2 "Link of plugin_test_9b should have failed"; \
2423           rm -f $@; \
2424           exit 1; \
2425         fi
2426 # Make a .syms file that claims to define a method in class A in a COMDAT group.
2427 # The real plugin_test_9b_ir.o will be compiled without the -D, and will not
2428 # define any methods in class A.
2429 plugin_test_9b_ir.o.syms: plugin_test_9b_ir_witha.o
2430         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2431 plugin_test_9b_ir_witha.o: plugin_test_9b_ir.cc
2432         $(CXXCOMPILE) -c -DUSE_CLASS_A -o $@ $<
2434 check_PROGRAMS += plugin_test_10
2435 check_SCRIPTS += plugin_test_10.sh
2436 check_DATA += plugin_test_10.sections
2437 MOSTLYCLEANFILES += plugin_test_10.sections
2438 plugin_test_10: plugin_common_test_1.o.syms plugin_common_test_2.o gcctestdir/ld plugin_test.so
2439         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o
2440 plugin_test_10.sections: plugin_test_10
2441         $(TEST_READELF) -SW $< >$@ 2>/dev/null
2443 check_PROGRAMS += plugin_test_11
2444 check_SCRIPTS += plugin_test_11.sh
2445 check_DATA += plugin_test_11.err
2446 MOSTLYCLEANFILES += plugin_test_11.err plugin_test_thin.a
2447 PLUGIN_TEST_11_SYMS = two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms
2448 plugin_test_11: two_file_test_main.o plugin_test_thin.a gcctestdir/ld plugin_test.so $(PLUGIN_TEST_11_SYMS)
2449         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o plugin_test_thin.a 2>plugin_test_11.err
2450 plugin_test_11.err: plugin_test_11
2451         @touch plugin_test_11.err
2452 plugin_test_thin.a: two_file_test_1.o two_file_test_1b.o two_file_test_2.o
2453         rm -f $@
2454         $(TEST_AR) crT $@ $^
2456 check_PROGRAMS += plugin_test_12
2457 check_SCRIPTS += plugin_test_12.sh
2458 check_DATA += plugin_test_12.err
2459 MOSTLYCLEANFILES += plugin_test_12.err
2460 export_dynamic_plugin.o.syms: export_dynamic_plugin.o
2461         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2462 export_dynamic_plugin.o: export_dynamic_plugin.cc
2463         $(CXXCOMPILE) -c -o $@ $<
2464 plugin_test_12: export_dynamic_plugin.o gcctestdir/ld plugin_test.so export_dynamic_plugin.o.syms
2465         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z3foov" -Wl,--export-dynamic-symbol,"_Z3foov" export_dynamic_plugin.o.syms 2>plugin_test_12.err
2466 plugin_test_12.err: plugin_test_12
2467         @touch plugin_test_12.err
2469 check_PROGRAMS += plugin_test_wrap_symbols
2470 check_SCRIPTS += plugin_test_wrap_symbols.sh
2471 check_DATA += plugin_test_wrap_symbols.err
2472 MOSTLYCLEANFILES += plugin_test_wrap_symbols.err
2473 plugin_test_wrap_symbols_1.o: plugin_test_wrap_symbols_1.cc
2474         $(CXXCOMPILE) -c -o $@ $<
2475 plugin_test_wrap_symbols_2.o: plugin_test_wrap_symbols_2.cc
2476         $(CXXCOMPILE) -c -o $@ $<
2477 plugin_test_wrap_symbols: plugin_test_wrap_symbols_1.o plugin_test_wrap_symbols_2.o gcctestdir/ld plugin_test.so
2478         $(CXXLINK) -Wl,--plugin,"./plugin_test.so" -Wl,--wrap=hello,--wrap=jello plugin_test_wrap_symbols_1.o plugin_test_wrap_symbols_2.o 2>plugin_test_wrap_symbols.err
2479 plugin_test_wrap_symbols.err: plugin_test_wrap_symbols
2480         @touch plugin_test_wrap_symbols.err
2482 check_PROGRAMS += plugin_test_start_lib
2483 check_SCRIPTS += plugin_test_start_lib.sh
2484 check_DATA += plugin_test_start_lib.err
2485 MOSTLYCLEANFILES += plugin_test_start_lib.err
2486 plugin_test_start_lib: unused.o plugin_start_lib_test.o plugin_start_lib_test_2.syms gcctestdir/ld plugin_test.so
2487         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_start_lib_test.o \
2488                 -Wl,--start-lib plugin_start_lib_test_2.syms -Wl,--end-lib 2>plugin_test_start_lib.err
2489 plugin_test_start_lib.err: plugin_test_start_lib
2490         @touch plugin_test_start_lib.err
2492 check_PROGRAMS += plugin_test_defsym
2493 check_SCRIPTS += plugin_test_defsym.sh
2494 check_DATA += plugin_test_defsym.err
2495 MOSTLYCLEANFILES += plugin_test_defsym.err
2496 plugin_test_defsym.syms: plugin_test_defsym.o
2497         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2498 plugin_test_defsym.o: plugin_test_defsym.c
2499         $(COMPILE) -c -o $@ $<
2500 plugin_test_defsym: plugin_test_defsym.o plugin_test_defsym.syms gcctestdir/ld plugin_test.so
2501         $(CXXLINK) -Wl,--no-demangle,--plugin,"./plugin_test.so" -Wl,--defsym,bar=foo plugin_test_defsym.syms 2>plugin_test_defsym.err
2502 plugin_test_defsym.err: plugin_test_defsym
2503         @touch plugin_test_defsym.err
2505 plugin_start_lib_test_2.syms: plugin_start_lib_test_2.o
2506         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2508 plugin_test.so: plugin_test.o gcctestdir/ld
2509         $(LINK) -shared plugin_test.o
2510 plugin_test.o: plugin_test.c
2511         $(COMPILE) -O0 -c -fpic -o $@ $<
2513 plugin_common_test_1.o: plugin_common_test_1.c
2514         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
2515 plugin_common_test_2.o: plugin_common_test_2.c
2516         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
2518 two_file_test_main.o.syms: two_file_test_main.o
2519         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2520 two_file_test_1.o.syms: two_file_test_1.o
2521         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2522 two_file_test_1b.o.syms: two_file_test_1b.o
2523         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2524 two_file_test_2.o.syms: two_file_test_2.o
2525         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2526 plugin_common_test_1.o.syms: plugin_common_test_1.o
2527         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2528 plugin_common_test_2.o.syms: plugin_common_test_2.o
2529         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2531 empty.o.syms:
2532         @echo "" >$@
2533         @echo "Symbol table" >>$@
2535 if TLS
2537 check_PROGRAMS += plugin_test_tls
2538 check_SCRIPTS += plugin_test_tls.sh
2539 check_DATA += plugin_test_tls.err
2540 MOSTLYCLEANFILES += plugin_test_tls.err
2541 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
2542         $(CXXLINK) -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
2543 plugin_test_tls.err: plugin_test_tls
2544         @touch plugin_test_tls.err
2546 two_file_test_2_tls.o.syms: two_file_test_2_tls.o
2547         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2549 endif TLS
2551 MOSTLYCLEANFILES += unused.c
2552 unused.o.syms: unused.o
2553         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2554         @echo "     1: 00000000     4 FUNC    GLOBAL DEFAULT    1 UNUSED" >>$@
2555 unused.o: unused.c
2556         $(COMPILE) -c -o $@ $<
2557 unused.c:
2558         @cp /dev/null $@
2560 check_SCRIPTS += plugin_final_layout.sh
2561 check_DATA += plugin_final_layout.stdout plugin_final_layout_readelf.stdout
2562 MOSTLYCLEANFILES += plugin_final_layout
2563 plugin_final_layout.o: plugin_final_layout.cc
2564         $(CXXCOMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
2565 plugin_final_layout: plugin_final_layout.o plugin_section_order.so gcctestdir/ld
2566         $(CXXLINK) -Wl,--plugin,"./plugin_section_order.so" plugin_final_layout.o
2567 plugin_final_layout.stdout: plugin_final_layout
2568         $(TEST_NM) -n --synthetic plugin_final_layout > plugin_final_layout.stdout
2569 plugin_final_layout_readelf.stdout: plugin_final_layout
2570         $(TEST_READELF) -Wl plugin_final_layout > plugin_final_layout_readelf.stdout
2572 plugin_section_order.so: plugin_section_order.o gcctestdir/ld
2573         $(LINK) -shared plugin_section_order.o
2574 plugin_section_order.o: plugin_section_order.c
2575         $(COMPILE) -O0 -c -fpic -o $@ $<
2577 # Uses the plugin_final_layout.sh script above to avoid duplication
2578 check_DATA += plugin_layout_new_file.stdout plugin_layout_new_file_readelf.stdout
2579 MOSTLYCLEANFILES += plugin_layout_new_file
2580 plugin_final_layout.o.syms: plugin_final_layout.o
2581         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2582 plugin_layout_new_file: plugin_final_layout.o.syms plugin_test.so plugin_new_section_layout.so gcctestdir/ld
2583         $(CXXLINK) -Wl,--plugin,"./plugin_test.so"  -Wl,--plugin,"./plugin_new_section_layout.so" plugin_final_layout.o.syms
2584 plugin_layout_new_file.stdout: plugin_layout_new_file
2585         $(TEST_NM) -n --synthetic plugin_layout_new_file > plugin_layout_new_file.stdout
2586 plugin_layout_new_file_readelf.stdout: plugin_layout_new_file
2587         $(TEST_READELF) -Wl plugin_layout_new_file > plugin_layout_new_file_readelf.stdout
2589 plugin_new_section_layout.so: plugin_new_section_layout.o gcctestdir/ld
2590         $(LINK) -shared plugin_new_section_layout.o
2591 plugin_new_section_layout.o: plugin_new_section_layout.c
2592         $(COMPILE) -O0 -c -fpic -o $@ $<
2594 check_SCRIPTS += plugin_layout_with_alignment.sh
2595 check_DATA += plugin_layout_with_alignment.stdout
2596 MOSTLYCLEANFILES += plugin_layout_with_alignment
2597 plugin_layout_with_alignment.o: plugin_layout_with_alignment.c
2598         $(COMPILE) -O0 -c -ffunction-sections -fdata-sections -g -o $@ $<
2599 plugin_layout_with_alignment: plugin_layout_with_alignment.o plugin_section_alignment.so gcctestdir/ld
2600         $(LINK) -Wl,--plugin,"./plugin_section_alignment.so" plugin_layout_with_alignment.o
2601 plugin_layout_with_alignment.stdout: plugin_layout_with_alignment
2602         $(TEST_NM) -n --synthetic plugin_layout_with_alignment > plugin_layout_with_alignment.stdout
2604 plugin_section_alignment.so: plugin_section_alignment.o gcctestdir/ld
2605         $(CXXLINK) -shared plugin_section_alignment.o
2606 plugin_section_alignment.o: plugin_section_alignment.cc
2607         $(CXXCOMPILE) -O0 -c -fpic -o $@ $<
2609 check_SCRIPTS += plugin_pr22868.sh
2610 check_DATA += plugin_pr22868.stdout
2611 MOSTLYCLEANFILES += plugin_pr22868.stdout
2612 plugin_pr22868.stdout: plugin_pr22868.so
2613         $(TEST_READELF) -W --dyn-syms $< >$@ 2>/dev/null
2614 plugin_pr22868.so: plugin_pr22868_a.o.syms plugin_pr22868_b.o.syms plugin_pr22868_b.o plugin_test.so gcctestdir/ld
2615         $(LINK) -shared -Wl,--plugin,"./plugin_test.so" plugin_pr22868_a.o.syms plugin_pr22868_b.o.syms
2616 plugin_pr22868_a.o.syms: plugin_pr22868_a.o
2617         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2618 # Generate the .syms file from an alternate version of the original source
2619 # file, with a "protected" visibility attribute. We'll link with a
2620 # "replacement" object that does not have that attribute.
2621 plugin_pr22868_b.o.syms: plugin_pr22868_b_ir.o
2622         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2623 plugin_pr22868_a.o: plugin_pr22868_a.c
2624         $(COMPILE) -c -fpic -o $@ $<
2625 plugin_pr22868_b_ir.o: plugin_pr22868_b.c
2626         $(COMPILE) -c -DIR -fpic -o $@ $<
2627 plugin_pr22868_b.o: plugin_pr22868_b.c
2628         $(COMPILE) -c -fpic -o $@ $<
2630 check_SCRIPTS += ver_test_pr16504.sh
2631 check_DATA += ver_test_pr16504.stdout
2632 ver_test_pr16504.stdout: ver_test_pr16504.so
2633         $(TEST_READELF) -W --dyn-syms $< >$@ 2>/dev/null
2634 ver_test_pr16504.so: ver_test_pr16504_a.so ver_test_pr16504_b.o.syms ver_test_pr16504_b.script gcctestdir/ld
2635         gcctestdir/ld -shared -o $@ --plugin ./plugin_test.so --version-script $(srcdir)/ver_test_pr16504_b.script ver_test_pr16504_b.o.syms ver_test_pr16504_a.so
2636 ver_test_pr16504_a.so: ver_test_pr16504_a.o ver_test_pr16504_a.script gcctestdir/ld
2637         gcctestdir/ld -shared -o $@ --version-script $(srcdir)/ver_test_pr16504_a.script ver_test_pr16504_a.o
2638 ver_test_pr16504_a.o: ver_test_pr16504_a.c
2639         $(COMPILE) -c -fpic -o $@ $<
2640 # Filter out the UNDEFs from the symbols file to simulate GCC behavior,
2641 # which does not pass the UNDEF from a .symver directive.
2642 ver_test_pr16504_b.o.syms: ver_test_pr16504_b.o
2643         $(TEST_READELF) -sW $< 2>/dev/null | grep -v "UND" >$@
2644 ver_test_pr16504_b.o: ver_test_pr16504_b.c
2645         $(COMPILE) -c -fpic -o $@ $<
2647 endif PLUGINS
2649 check_PROGRAMS += exclude_libs_test
2650 check_SCRIPTS += exclude_libs_test.sh
2651 check_DATA += exclude_libs_test.syms
2652 MOSTLYCLEANFILES += exclude_libs_test.syms libexclude_libs_test_1.a \
2653         libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
2654 exclude_libs_test_SOURCES = exclude_libs_test.c
2655 exclude_libs_test_DEPENDENCIES = gcctestdir/ld libexclude_libs_test_1.a \
2656         libexclude_libs_test_2.a alt/libexclude_libs_test_3.a
2657 exclude_libs_test_LDFLAGS = -L. -Lalt \
2658         -Wl,--exclude-libs,dummy:libexclude_libs_test_1 \
2659         -Wl,--exclude-libs,libexclude_libs_test_3
2660 exclude_libs_test_LDADD = -lexclude_libs_test_1 -lexclude_libs_test_2 \
2661         alt/libexclude_libs_test_3.a
2662 exclude_libs_test.syms: exclude_libs_test
2663         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2664 libexclude_libs_test_1.a: exclude_libs_test_1.o
2665         $(TEST_AR) rc $@ $^
2666 libexclude_libs_test_2.a: exclude_libs_test_2.o
2667         $(TEST_AR) rc $@ $^
2668 alt/libexclude_libs_test_3.a: exclude_libs_test_3.o
2669         test -d alt || mkdir -p alt
2670         $(TEST_AR) rc $@ $^
2672 check_PROGRAMS += local_labels_test
2673 local_labels_test.o: ver_test_6.c
2674         $(COMPILE) -g -c -Wa,-L -o $@ $<
2675 local_labels_test: local_labels_test.o gcctestdir/ld
2676         $(LINK) local_labels_test.o
2678 check_PROGRAMS += discard_locals_test
2679 check_SCRIPTS += discard_locals_test.sh
2680 check_DATA += discard_locals_test.syms \
2681         discard_locals_relocatable_test1.syms \
2682         discard_locals_relocatable_test2.syms
2683 MOSTLYCLEANFILES += discard_locals_test.syms \
2684         discard_locals_relocatable_test1.syms \
2685         discard_locals_relocatable_test2.syms \
2686         discard_locals_relocatable_test1.out \
2687         discard_locals_relocatable_test2.out
2688 discard_locals_test_SOURCES = discard_locals_test.c
2689 discard_locals_test_LDFLAGS = -Wl,--discard-locals
2690 discard_locals_test.syms: discard_locals_test
2691         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2692 # '-Wa,-L' is required to preserve the local label used for testing.
2693 discard_locals_test.o: discard_locals_test.c
2694         $(COMPILE) -c -Wa,-L -o $@ $<
2696 discard_locals_relocatable_test1.syms: discard_locals_relocatable_test1.out
2697         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2698 discard_locals_relocatable_test.o: discard_locals_relocatable_test.c
2699         $(COMPILE) -c -Wa,-L -fPIC -o $@ $<
2700 discard_locals_relocatable_test1.out: discard_locals_relocatable_test.o ../ld-new
2701         ../ld-new --discard-locals -relocatable -o $@ $<
2703 discard_locals_relocatable_test2.syms: discard_locals_relocatable_test2.out
2704         $(TEST_READELF) -sW $< >$@ 2>/dev/null
2705 discard_locals_relocatable_test2.out: discard_locals_relocatable_test.o ../ld-new
2706         ../ld-new --discard-all -relocatable -o $@ $<
2708 if MCMODEL_MEDIUM
2709 check_PROGRAMS += large
2710 large_SOURCES = large.c
2711 large_CFLAGS = -mcmodel=medium
2712 large_DEPENDENCIES = gcctestdir/ld
2713 large_LDADD =
2714 endif MCMODEL_MEDIUM
2716 # Test that hidden and internal symbols in the main program cannot be
2717 # referenced by a shared library.
2718 check_SCRIPTS += hidden_test.sh
2719 check_DATA += hidden_test.err
2720 MOSTLYCLEANFILES += hidden_test hidden_test.err hidden_test.syms
2721 libhidden.so: hidden_test_1.c gcctestdir/ld
2722         $(COMPILE) -g -shared -fPIC -w -o $@ $(srcdir)/hidden_test_1.c
2723 hidden_test: hidden_test_main.o libhidden.so gcctestdir/ld
2724         $(LINK) -Wl,-R,. hidden_test_main.o libhidden.so 2>hidden_test.err
2725 hidden_test.syms: hidden_test
2726         $(TEST_NM) -D hidden_test > $@
2727 hidden_test.err: hidden_test
2728         @touch hidden_test.err
2730 # Test -retain-symbols-file.
2731 check_SCRIPTS += retain_symbols_file_test.sh
2732 check_DATA += retain_symbols_file_test.stdout
2733 MOSTLYCLEANFILES += retain_symbols_file_test retain_symbols_file_test.in \
2734                     retain_symbols_file_test.stdout
2735 retain_symbols_file_test.so: basic_pic_test.o gcctestdir/ld
2736         echo 'main' > retain_symbols_file_test.in
2737         echo 't1' >> retain_symbols_file_test.in
2738         echo '_ZNK4t20a3getEv' >> retain_symbols_file_test.in
2739         echo '_Z3t18v' >> retain_symbols_file_test.in
2740         echo '__tcf_0' >> retain_symbols_file_test.in
2741         $(CXXLINK) -shared -Wl,-retain-symbols-file,retain_symbols_file_test.in basic_pic_test.o
2742 retain_symbols_file_test.stdout: retain_symbols_file_test.so
2743         $(TEST_NM) -C retain_symbols_file_test.so > $@
2746 # Test that if the output file already exists and is empty,
2747 # it will get execute permission.
2748 check_PROGRAMS += permission_test
2749 permission_test: basic_test.o gcctestdir/ld
2750         umask 022; \
2751         rm -f $@; \
2752         touch $@; \
2753         chmod 600 $@; \
2754         $(CXXLINK) basic_test.o
2756 # Check -l:foo.a
2757 check_PROGRAMS += searched_file_test
2758 MOSTLYCLEANFILES += searched_file_test searched_file_test_lib.o \
2759                     alt/searched_file_test_lib.a
2760 searched_file_test_SOURCES = searched_file_test.cc
2761 searched_file_test_DEPENDENCIES = gcctestdir/ld alt/searched_file_test_lib.a
2762 searched_file_test_LDFLAGS = -Lalt
2763 searched_file_test_LDADD = -l:searched_file_test_lib.a
2764 searched_file_test_lib.o: searched_file_test_lib.cc
2765         $(CXXCOMPILE) -c -o $@ $<
2766 alt/searched_file_test_lib.a: searched_file_test_lib.o
2767         test -d alt || mkdir -p alt
2768         $(TEST_AR) rc $@ $^
2770 # Test that no .gnu.version sections are created when
2771 # symbol versioning is not used.
2772 check_SCRIPTS += no_version_test.sh
2773 check_DATA += no_version_test.stdout
2774 MOSTLYCLEANFILES += libno_version_test.so no_version_test.stdout
2775 # We invoke the linker directly since gcc may include additional objects that
2776 # uses symbol versioning.
2777 libno_version_test.so: no_version_test.o gcctestdir/ld
2778         gcctestdir/ld -shared -o $@ no_version_test.o
2779 no_version_test.o: no_version_test.c
2780         $(COMPILE) -o $@ -c -fPIC $<
2781 no_version_test.stdout: libno_version_test.so
2782         $(TEST_OBJDUMP) -h $< > $@
2784 # Test STT_GNU_IFUNC symbols.
2785 if IFUNC
2787 ifuncmod1.o: ifuncmod1.c
2788         $(COMPILE) -c -fPIC -o $@ $<
2789 ifuncmod1.so: ifuncmod1.o gcctestdir/ld
2790         $(LINK) -shared ifuncmod1.o
2792 ifuncdep1.o: ifuncmod1.c
2793         $(COMPILE) -c -o $@ $<
2795 ifuncmain1pic.o: ifuncmain1.c
2796         $(COMPILE) -c -fPIC -o $@ $<
2797 ifuncmain1pie.o: ifuncmain1.c
2798         $(COMPILE) -c -fPIE -o $@ $<
2800 if HAVE_STATIC
2801 if IFUNC_STATIC
2802 check_PROGRAMS += ifuncmain1static
2803 ifuncmain1static_SOURCES = ifuncmain1.c
2804 ifuncmain1static_DEPENDENCIES = gcctestdir/ld ifuncdep1.o
2805 ifuncmain1static_LDFLAGS = -static
2806 ifuncmain1static_LDADD = ifuncdep1.o
2808 check_PROGRAMS += ifuncmain1picstatic
2809 ifuncmain1picstatic: ifuncmain1pic.o ifuncmod1.o gcctestdir/ld
2810         $(LINK) -static ifuncmain1pic.o ifuncmod1.o
2812 check_SCRIPTS += ifuncmod1.sh
2813 check_DATA += ifuncmod1.so.stderr
2814 ifuncmod1.so.stderr: ifuncmod1.so
2815         $(TEST_READELF) -s $< > /dev/null 2> $@
2816 endif
2817 endif
2819 check_PROGRAMS += ifuncmain1
2820 ifuncmain1_SOURCES = ifuncmain1.c
2821 ifuncmain1_DEPENDENCIES = gcctestdir/ld ifuncmod1.so
2822 ifuncmain1_LDFLAGS = -Wl,-R,.
2823 ifuncmain1_LDADD = ifuncmod1.so
2825 check_PROGRAMS += ifuncmain1pic
2826 ifuncmain1pic: ifuncmain1pic.o ifuncmod1.so gcctestdir/ld
2827         $(LINK) ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
2829 check_PROGRAMS += ifuncmain1vis
2830 ifuncmain1vis_SOURCES = ifuncmain1vis.c
2831 ifuncmain1vis_DEPENDENCIES = gcctestdir/ld ifuncmod1.so
2832 ifuncmain1vis_LDFLAGS = -Wl,-R,.
2833 ifuncmain1vis_LDADD = ifuncmod1.so
2835 check_PROGRAMS += ifuncmain1vispic
2836 ifuncmain1vispic.o: ifuncmain1vis.c
2837         $(COMPILE) -c -fPIC -o $@ $<
2838 ifuncmain1vispic: ifuncmain1vispic.o ifuncmod1.so gcctestdir/ld
2839         $(LINK) ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
2841 check_PROGRAMS += ifuncmain1staticpic
2842 ifuncmain1staticpic: ifuncmain1pic.o ifuncmod1.o gcctestdir/ld
2843         $(LINK) ifuncmain1pic.o ifuncmod1.o
2845 check_PROGRAMS += ifuncmain1pie
2846 ifuncmain1pie: ifuncmain1pie.o ifuncmod1.so gcctestdir/ld
2847         $(LINK) -pie ifuncmain1pie.o ifuncmod1.so -Wl,-R,.
2849 check_PROGRAMS += ifuncmain1vispie
2850 ifuncmain1vispie.o: ifuncmain1vis.c
2851         $(COMPILE) -c -fPIE -o $@ $<
2852 ifuncmain1vispie: ifuncmain1vispie.o ifuncmod1.so gcctestdir/ld
2853         $(LINK) -pie ifuncmain1vispie.o ifuncmod1.so -Wl,-R,.
2855 check_PROGRAMS += ifuncmain1staticpie
2856 ifuncmain1staticpie: ifuncmain1pie.o ifuncmod1.o gcctestdir/ld
2857         $(LINK) -pie ifuncmain1pie.o ifuncmod1.o
2859 ifuncmain2pic.o: ifuncmain2.c
2860         $(COMPILE) -c -fPIC -o $@ $<
2862 ifuncdep2pic.o: ifuncdep2.c
2863         $(COMPILE) -c -fPIC -o $@ $<
2865 if HAVE_STATIC
2866 if IFUNC_STATIC
2867 check_PROGRAMS += ifuncmain2static
2868 ifuncmain2static_SOURCES = ifuncmain2.c ifuncdep2.c
2869 ifuncmain2static_DEPENDENCIES = gcctestdir/ld
2870 ifuncmain2static_LDFLAGS = -static
2871 ifuncmain2static_LDADD =
2873 check_PROGRAMS += ifuncmain2picstatic
2874 ifuncmain2picstatic: ifuncmain2pic.o ifuncdep2pic.o gcctestdir/ld
2875         $(LINK) -static ifuncmain2pic.o ifuncdep2pic.o
2876 endif
2877 endif
2879 check_PROGRAMS += ifuncmain2
2880 ifuncmain2_SOURCES = ifuncmain2.c ifuncdep2.c
2881 ifuncmain2_DEPENDENCIES = gcctestdir/ld
2882 ifuncmain2_LDADD =
2884 check_PROGRAMS += ifuncmain2pic
2885 ifuncmain2pic: ifuncmain2pic.o ifuncdep2pic.o gcctestdir/ld
2886         $(LINK) ifuncmain2pic.o ifuncdep2pic.o
2888 ifuncmod3.o: ifuncmod3.c
2889         $(COMPILE) -c -fPIC -o $@ $<
2890 ifuncmod3.so: ifuncmod3.o gcctestdir/ld
2891         $(LINK) -shared ifuncmod3.o
2893 check_PROGRAMS += ifuncmain3
2894 ifuncmain3_SOURCES = ifuncmain3.c
2895 ifuncmain3_DEPENDENCIES = gcctestdir/ld ifuncmod3.so
2896 ifuncmain3_LDFLAGS = -Wl,--export-dynamic -Wl,-R,.
2897 ifuncmain3_LDADD = -ldl
2899 ifuncmain4pic.o: ifuncmain4.c
2900         $(COMPILE) -c -fPIC -o $@ $<
2902 if HAVE_STATIC
2903 if IFUNC_STATIC
2904 check_PROGRAMS += ifuncmain4static
2905 ifuncmain4static_SOURCES = ifuncmain4.c
2906 ifuncmain4static_DEPENDENCIES = gcctestdir/ld
2907 ifuncmain4static_LDFLAGS = -static
2908 ifuncmain4static_LDADD =
2910 check_PROGRAMS += ifuncmain4picstatic
2911 ifuncmain4picstatic: ifuncmain4pic.o gcctestdir/ld
2912         $(LINK) -static ifuncmain4pic.o
2913 endif
2914 endif
2916 check_PROGRAMS += ifuncmain4
2917 ifuncmain4_SOURCES = ifuncmain4.c
2918 ifuncmain4_DEPENDENCIES = gcctestdir/ld
2919 ifuncmain4_LDADD =
2921 ifuncmain5pic.o: ifuncmain5.c
2922         $(COMPILE) -c -fPIC -o $@ $<
2924 ifuncmain5pie.o: ifuncmain5.c
2925         $(COMPILE) -c -fPIE -o $@ $<
2927 ifuncmod5.o: ifuncmod5.c
2928         $(COMPILE) -c -fPIC -o $@ $<
2929 ifuncmod5.so: ifuncmod5.o gcctestdir/ld
2930         $(LINK) -shared ifuncmod5.o
2932 ifuncdep5.o: ifuncmod5.c
2933         $(COMPILE) -c -o $@ $<
2935 if HAVE_STATIC
2936 if IFUNC_STATIC
2937 check_PROGRAMS += ifuncmain5static
2938 ifuncmain5static_SOURCES = ifuncmain5.c
2939 ifuncmain5static_DEPENDENCIES = gcctestdir/ld ifuncdep5.o
2940 ifuncmain5static_LDFLAGS = -static
2941 ifuncmain5static_LDADD = ifuncdep5.o
2943 check_PROGRAMS += ifuncmain5picstatic
2944 ifuncmain5picstatic: ifuncmain5pic.o ifuncmod5.o gcctestdir/ld
2945         $(LINK) -static ifuncmain5pic.o ifuncmod5.o
2946 endif
2947 endif
2949 check_PROGRAMS += ifuncmain5
2950 ifuncmain5_SOURCES = ifuncmain5.c
2951 ifuncmain5_DEPENDENCIES = gcctestdir/ld ifuncmod5.so
2952 ifuncmain5_LDFLAGS = -Wl,-R,.
2953 ifuncmain5_LDADD = ifuncmod5.so
2955 check_PROGRAMS += ifuncmain5pic
2956 ifuncmain5pic: ifuncmain5pic.o ifuncmod5.so gcctestdir/ld
2957         $(LINK) ifuncmain5pic.o ifuncmod5.so -Wl,-R,.
2959 check_PROGRAMS += ifuncmain5staticpic
2960 ifuncmain5staticpic: ifuncmain5pic.o ifuncmod5.o gcctestdir/ld
2961         $(LINK) ifuncmain5pic.o ifuncmod5.o
2963 check_PROGRAMS += ifuncmain5pie
2964 ifuncmain5pie: ifuncmain5pie.o ifuncmod5.so gcctestdir/ld
2965         $(LINK) -pie ifuncmain5pie.o ifuncmod5.so -Wl,-R,.
2967 ifuncmain6pie.o: ifuncmain6pie.c
2968         $(COMPILE) -c -fPIE -o $@ $<
2970 ifuncmod6.o: ifuncmod6.c
2971         $(COMPILE) -c -fPIC -o $@ $<
2972 ifuncmod6.so: ifuncmod6.o gcctestdir/ld
2973         $(LINK) -shared ifuncmod6.o
2975 check_PROGRAMS += ifuncmain6pie
2976 ifuncmain6pie: ifuncmain6pie.o ifuncmod6.so gcctestdir/ld
2977         $(LINK) -pie ifuncmain6pie.o ifuncmod6.so -Wl,-R,.
2979 ifuncmain7pic.o: ifuncmain7.c
2980         $(COMPILE) -c -fPIC -o $@ $<
2982 ifuncmain7pie.o: ifuncmain7.c
2983         $(COMPILE) -c -fPIE -o $@ $<
2985 if HAVE_STATIC
2986 if IFUNC_STATIC
2987 check_PROGRAMS += ifuncmain7static
2988 ifuncmain7static_SOURCES = ifuncmain7.c
2989 ifuncmain7static_DEPENDENCIES = gcctestdir/ld
2990 ifuncmain7static_LDFLAGS = -static
2991 ifuncmain7static_LDADD =
2993 check_PROGRAMS += ifuncmain7picstatic
2994 ifuncmain7picstatic: ifuncmain7pic.o gcctestdir/ld
2995         $(LINK) -static ifuncmain7pic.o
2996 endif
2997 endif
2999 check_PROGRAMS += ifuncmain7
3000 ifuncmain7_SOURCES = ifuncmain7.c
3001 ifuncmain7_DEPENDENCIES = gcctestdir/ld
3002 ifuncmain7_LDADD =
3004 check_PROGRAMS += ifuncmain7pic
3005 ifuncmain7pic: ifuncmain7pic.o gcctestdir/ld
3006         $(LINK) ifuncmain7pic.o
3008 check_PROGRAMS += ifuncmain7pie
3009 ifuncmain7pie: ifuncmain7pie.o gcctestdir/ld
3010         $(LINK) -pie ifuncmain7pie.o
3012 check_PROGRAMS += ifuncvar
3013 ifuncvar1_pic.o: ifuncvar1.c
3014         $(COMPILE) -c -fPIC -o $@ $<
3015 ifuncvar2_pic.o: ifuncvar2.c
3016         $(COMPILE) -c -fPIC -o $@ $<
3017 ifuncvar.so: ifuncvar1_pic.o ifuncvar2_pic.o gcctestdir/ld
3018         $(LINK) -shared ifuncvar1_pic.o ifuncvar2_pic.o
3019 ifuncvar_SOURCES = ifuncvar3.c
3020 ifuncvar_DEPENDENCIES = gcctestdir/ld ifuncvar.so
3021 ifuncvar_LDFLAGS = -Wl,-R,.
3022 ifuncvar_LDADD = ifuncvar.so
3024 endif IFUNC
3026 # Test that strong reference to a weak symbol in a DSO remains strong.
3027 check_SCRIPTS += strong_ref_weak_def.sh
3028 check_DATA += strong_ref_weak_def.stdout
3029 MOSTLYCLEANFILES += strong_ref_weak_def_1.so strong_ref_weak_def_2.so \
3030         strong_ref_weak_def.stdout
3031 strong_ref_weak_def_2.o: strong_ref_weak_def_2.c
3032         $(COMPILE) -o $@ -c -fPIC $<
3033 strong_ref_weak_def_2.so: strong_ref_weak_def_2.o gcctestdir/ld
3034         gcctestdir/ld -shared -o $@ strong_ref_weak_def_2.o
3035 strong_ref_weak_def_1.o: strong_ref_weak_def_1.c
3036         $(COMPILE) -o $@ -c -fPIC $<
3037 strong_ref_weak_def_1.so: strong_ref_weak_def_1.o strong_ref_weak_def_2.so \
3038         gcctestdir/ld
3039         gcctestdir/ld -shared -o $@ strong_ref_weak_def_1.o \
3040                 strong_ref_weak_def_2.so
3041 strong_ref_weak_def.stdout: strong_ref_weak_def_1.so
3042         $(TEST_READELF) -sWD $< > $@
3044 # Test that a strong weak reference remains strong if there is another
3045 # weak reference in a DSO.
3046 check_SCRIPTS += dyn_weak_ref.sh
3047 check_DATA += dyn_weak_ref.stdout
3048 MOSTLYCLEANFILES += dyn_weak_ref_1.so dyn_weak_ref_2.so \
3049         dyn_weak_ref.stdout
3050 dyn_weak_ref_2.o: dyn_weak_ref_2.c
3051         $(COMPILE) -o $@ -c -fPIC $<
3052 dyn_weak_ref_2.so: dyn_weak_ref_2.o gcctestdir/ld
3053         gcctestdir/ld -shared -o $@ dyn_weak_ref_2.o
3054 dyn_weak_ref_1.o: dyn_weak_ref_1.c
3055         $(COMPILE) -o $@ -c -fPIC $<
3056 # We intentionally put dyn_weak_ref_2.so in front of dyn_weak_ref_1.o
3057 # so that the weak ref there goes to gold's symbol table first.
3058 dyn_weak_ref_1.so: dyn_weak_ref_1.o dyn_weak_ref_2.so gcctestdir/ld
3059         gcctestdir/ld -shared -o $@ dyn_weak_ref_2.so dyn_weak_ref_1.o
3060 dyn_weak_ref.stdout: dyn_weak_ref_1.so
3061         $(TEST_READELF) -sWD $< > $@
3064 # Test that --start-lib and --end-lib function correctly.
3065 check_PROGRAMS += start_lib_test
3066 MOSTLYCLEANFILES += libstart_lib_test.a
3067 start_lib_test: start_lib_test_main.o libstart_lib_test.a start_lib_test_2.o start_lib_test_3.o \
3068         gcctestdir/ld
3069         $(LINK) -o $@ start_lib_test_main.o -L. -lstart_lib_test \
3070                 -Wl,--start-lib start_lib_test_2.o start_lib_test_3.o -Wl,--end-lib
3071 libstart_lib_test.a: start_lib_test_1.o
3072         $(TEST_AR) rc $@ $^
3074 # Test that MEMORY region support works.
3075 check_SCRIPTS += memory_test.sh
3076 check_DATA += memory_test.stdout
3077 MOSTLYCLEANFILES += memory_test.stdout memory_test memory_test.o
3078 memory_test.o: memory_test.s
3079         $(COMPILE) -o $@ -c $<
3080 memory_test: memory_test.o gcctestdir/ld $(srcdir)/memory_test.t
3081         $(LINK) -nostartfiles -nostdlib -Wl,-z,max-page-size=0x1000 -Wl,-z,common-page-size=0x1000 -Wl,-T,$(srcdir)/memory_test.t -o $@ memory_test.o
3082 memory_test.stdout: memory_test
3083         $(TEST_READELF) -lWS $< > $@
3085 # Test INCLUDE directives in linker scripts.
3086 # The binary isn't runnable, so we just check that we can build it without errors.
3087 check_DATA += memory_test_2
3088 MOSTLYCLEANFILES += memory_test_inc_1.t memory_test_inc_2.t memory_test_inc_3.t memory_test_2
3089 memory_test_inc_1.t: $(srcdir)/memory_test_inc_1.t.src
3090         cp $< $@
3091 memory_test_inc_2.t: $(srcdir)/memory_test_inc_2.t.src
3092         cp $< $@
3093 memory_test_inc_3.t: $(srcdir)/memory_test_inc_3.t.src
3094         cp $< $@
3095 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
3096         $(LINK) -nostartfiles -nostdlib -Wl,-z,max-page-size=0x1000 -Wl,-z,common-page-size=0x1000 -Wl,-T,$(srcdir)/memory_test.t -o $@ memory_test.o
3098 if HAVE_PUBNAMES
3100 # Test that --gdb-index functions correctly without gcc-generated pubnames.
3101 check_SCRIPTS += gdb_index_test_1.sh
3102 check_DATA += gdb_index_test_1.stdout
3103 MOSTLYCLEANFILES += gdb_index_test_1.stdout gdb_index_test_1
3104 gdb_index_test.o: gdb_index_test.cc
3105         $(CXXCOMPILE) -O0 -g -gno-pubnames -c -o $@ $<
3106 gdb_index_test_1: gdb_index_test.o gcctestdir/ld
3107         $(CXXLINK) -Wl,--gdb-index $<
3108 gdb_index_test_1.stdout: gdb_index_test_1
3109         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3111 # Test that --gdb-index functions correctly with compressed debug sections.
3112 check_SCRIPTS += gdb_index_test_2.sh
3113 check_DATA += gdb_index_test_2.stdout
3114 MOSTLYCLEANFILES += gdb_index_test_2.stdout gdb_index_test_2 gdb_index_test_2_gabi
3115 gdb_index_test_cdebug.o: gdb_index_test.cc
3116         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections -c -o $@ $<
3117 gdb_index_test_2: gdb_index_test_cdebug.o gcctestdir/ld
3118         $(CXXLINK) -Wl,--gdb-index $<
3119 gdb_index_test_2.stdout: gdb_index_test_2
3120         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3121 check_SCRIPTS += gdb_index_test_2_gabi.sh
3122 check_DATA += gdb_index_test_2_gabi.stdout
3123 MOSTLYCLEANFILES += gdb_index_test_2.stdout gdb_index_test_2
3124 gdb_index_test_cdebug_gabi.o: gdb_index_test.cc
3125         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -o $@ $<
3126 gdb_index_test_2_gabi: gdb_index_test_cdebug_gabi.o gcctestdir/ld
3127         $(CXXLINK) -Wl,--gdb-index $<
3128 gdb_index_test_2_gabi.stdout: gdb_index_test_2_gabi
3129         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3130 if HAVE_ZSTD
3131 check_SCRIPTS += gdb_index_test_2_zstd.sh
3132 check_DATA += gdb_index_test_2_zstd.stdout
3133 MOSTLYCLEANFILES += gdb_index_test_2_zstd.stdout gdb_index_test_2_zstd
3134 gdb_index_test_cdebug_zstd.o: gdb_index_test.cc
3135         $(CXXCOMPILE) -O0 -g -Wa,--compress-debug-sections=zstd -c -o $@ $<
3136 gdb_index_test_2_zstd: gdb_index_test_cdebug_zstd.o gcctestdir/ld
3137         $(CXXLINK) -Wl,--gdb-index $<
3138 gdb_index_test_2_zstd.stdout: gdb_index_test_2_zstd
3139         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3140 endif
3142 # Another simple C test (DW_AT_high_pc encoding) for --gdb-index.
3143 check_SCRIPTS += gdb_index_test_3.sh
3144 check_DATA += gdb_index_test_3.stdout
3145 MOSTLYCLEANFILES += gdb_index_test_3.stdout gdb_index_test_3
3146 gdb_index_test_3.o: gdb_index_test_3.c
3147         $(COMPILE) -O0 -g -c -o $@ $<
3148 gdb_index_test_3: gdb_index_test_3.o gcctestdir/ld
3149         $(LINK) -Wl,--gdb-index,--fatal-warnings $<
3150 gdb_index_test_3.stdout: gdb_index_test_3
3151         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3153 # Test that --gdb-index functions correctly with gcc-generated pubnames.
3154 check_SCRIPTS += gdb_index_test_4.sh
3155 check_DATA += gdb_index_test_4.stdout
3156 MOSTLYCLEANFILES += gdb_index_test_4.stdout gdb_index_test_4
3157 gdb_index_test_pub.o: gdb_index_test.cc
3158         $(CXXCOMPILE) -O0 -g -gpubnames -c -o $@ $<
3159 gdb_index_test_4: gdb_index_test_pub.o gcctestdir/ld
3160         $(CXXLINK) -Wl,--gdb-index $<
3161 gdb_index_test_4.stdout: gdb_index_test_4
3162         $(TEST_READELF) --debug-dump=gdb_index $< > $@
3164 endif HAVE_PUBNAMES
3166 # Test that __ehdr_start is defined correctly.
3167 check_PROGRAMS += ehdr_start_test_1
3168 ehdr_start_test_1_SOURCES = ehdr_start_test.cc
3169 ehdr_start_test_1_DEPENDENCIES = gcctestdir/ld
3170 ehdr_start_test_1_CXXFLAGS =
3171 ehdr_start_test_1_LDADD =
3173 # Test that __ehdr_start is defined correctly with a weak reference.
3174 check_PROGRAMS += ehdr_start_test_2
3175 ehdr_start_test_2_SOURCES = ehdr_start_test.cc
3176 ehdr_start_test_2_DEPENDENCIES = gcctestdir/ld
3177 ehdr_start_test_2_CXXFLAGS = -DEHDR_START_WEAK
3178 ehdr_start_test_2_LDADD =
3180 # Test that __ehdr_start is defined correctly when used with a linker script.
3181 check_PROGRAMS += ehdr_start_test_3
3182 ehdr_start_test_3_SOURCES = ehdr_start_test.cc
3183 ehdr_start_test_3_DEPENDENCIES = gcctestdir/ld $(srcdir)/ehdr_start_test.t
3184 ehdr_start_test_3_CXXFLAGS = -DEHDR_START_WEAK
3185 ehdr_start_test_3_LDFLAGS = -Wl,-T,$(srcdir)/ehdr_start_test.t
3186 ehdr_start_test_3_LDADD =
3188 # Test that __ehdr_start is left undefined when the text segment is not
3189 # appropriately aligned.
3190 check_SCRIPTS += ehdr_start_test_4.sh
3191 check_DATA += ehdr_start_test_4.syms
3192 MOSTLYCLEANFILES += ehdr_start_test_4
3193 ehdr_start_test_4.syms: ehdr_start_test_4
3194         $(TEST_NM) ehdr_start_test_4 > $@
3195 ehdr_start_test_4: ehdr_start_test_4.o gcctestdir/ld
3196         $(CXXLINK) -Wl,-Ttext=0x100100 $<
3197 ehdr_start_test_4.o: ehdr_start_test.cc
3198         $(CXXCOMPILE) -c -DEHDR_START_WEAK -o $@ $<
3200 # Test that __ehdr_start is not overridden when supplied by the user.
3201 check_PROGRAMS += ehdr_start_test_5
3202 ehdr_start_test_5_SOURCES = ehdr_start_test.cc ehdr_start_def.cc
3203 ehdr_start_test_5_DEPENDENCIES = gcctestdir/ld
3204 ehdr_start_test_5_CXXFLAGS = -DEHDR_START_USER_DEF
3205 ehdr_start_test_5_LDADD =
3207 # Test that the --defsym option copies the symbol type and visibility.
3208 check_SCRIPTS += defsym_test.sh
3209 check_DATA += defsym_test.syms
3210 MOSTLYCLEANFILES += defsym_test defsym_test.syms
3211 defsym_test.syms: defsym_test
3212         $(TEST_READELF) -sW $< > $@
3213 defsym_test: defsym_test.o gcctestdir/ld
3214         $(LINK) -Wl,--defsym=bar=foo defsym_test.o
3215 defsym_test.o: defsym_test.c
3216         $(COMPILE) -c -o $@ $<
3218 # Test that the -d option (force common allocation) works correctly.
3219 check_PROGRAMS += pr20976
3220 pr20976: pr20976-d.o gcctestdir/ld
3221         $(LINK) pr20976-d.o
3222 pr20976-d.o: pr20976.o gcctestdir/ld
3223         gcctestdir/ld -r -d -o $@ pr20976.o
3225 # End-to-end incremental linking tests.
3226 # Incremental linking is currently supported only on the x86_64 target.
3228 if DEFAULT_TARGET_X86_64
3230 two_file_test_1_v1_ndebug.o: two_file_test_1_v1.cc
3231         $(CXXCOMPILE) -O0 -g0 -fno-exceptions -fno-asynchronous-unwind-tables -c -o $@ $<
3232 two_file_test_1_ndebug.o: two_file_test_1.cc
3233         $(CXXCOMPILE) -O0 -g0 -fno-exceptions -fno-asynchronous-unwind-tables -c -o $@ $<
3234 two_file_test_1b_ndebug.o: two_file_test_1b.cc
3235         $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
3236 two_file_test_2_ndebug.o: two_file_test_2.cc
3237         $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
3238 two_file_test_main_ndebug.o: two_file_test_main.cc
3239         $(CXXCOMPILE) -O0 -g0 -c -o $@ $<
3241 if !CFLAGS_CF_PROTECTION
3242 check_PROGRAMS += incremental_test_2
3243 endif
3244 MOSTLYCLEANFILES += two_file_test_tmp_2.o
3245 incremental_test_2: two_file_test_1_v1_ndebug.o two_file_test_1_ndebug.o two_file_test_1b_ndebug.o \
3246                     two_file_test_2_ndebug.o two_file_test_main_ndebug.o gcctestdir/ld
3247         cp -f two_file_test_1_v1_ndebug.o two_file_test_tmp_2.o
3248         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie two_file_test_tmp_2.o two_file_test_1b_ndebug.o two_file_test_2_ndebug.o two_file_test_main_ndebug.o
3249         @sleep 1
3250         cp -f two_file_test_1_ndebug.o two_file_test_tmp_2.o
3251         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie two_file_test_tmp_2.o two_file_test_1b_ndebug.o two_file_test_2_ndebug.o two_file_test_main_ndebug.o
3253 if !CFLAGS_CF_PROTECTION
3254 check_PROGRAMS += incremental_test_3
3255 endif
3256 MOSTLYCLEANFILES += two_file_test_tmp_3.o
3257 incremental_test_3: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
3258                     two_file_test_2.o two_file_test_main.o gcctestdir/ld
3259         cp -f two_file_test_1b_v1.o two_file_test_tmp_3.o
3260         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie two_file_test_1.o two_file_test_tmp_3.o two_file_test_2.o two_file_test_main.o
3261         @sleep 1
3262         cp -f two_file_test_1b.o two_file_test_tmp_3.o
3263         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie two_file_test_1.o two_file_test_tmp_3.o two_file_test_2.o two_file_test_main.o
3265 if !CFLAGS_CF_PROTECTION
3266 check_PROGRAMS += incremental_test_4
3267 endif
3268 MOSTLYCLEANFILES += incremental_test_4.base two_file_test_tmp_4.o
3269 incremental_test_4: two_file_test_1.o two_file_test_1b.o two_file_test_2_v1.o \
3270                     two_file_test_2.o two_file_test_main.o gcctestdir/ld
3271         cp -f two_file_test_2_v1.o two_file_test_tmp_4.o
3272         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie two_file_test_1.o two_file_test_1b.o two_file_test_tmp_4.o two_file_test_main.o
3273         mv -f incremental_test_4 incremental_test_4.base
3274         @sleep 1
3275         cp -f two_file_test_2.o two_file_test_tmp_4.o
3276         $(CXXLINK) -Wl,--incremental-update,--incremental-base=incremental_test_4.base -Wl,-z,norelro,-no-pie two_file_test_1.o two_file_test_1b.o two_file_test_tmp_4.o two_file_test_main.o
3278 if !CFLAGS_CF_PROTECTION
3279 check_PROGRAMS += incremental_test_5
3280 endif
3281 MOSTLYCLEANFILES += two_file_test_5.a
3282 incremental_test_5: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
3283                     two_file_test_2.o two_file_test_main.o gcctestdir/ld
3284         cp -f two_file_test_1b_v1.o two_file_test_tmp_5.o
3285         $(TEST_AR) rc two_file_test_5.a two_file_test_1.o two_file_test_tmp_5.o two_file_test_2.o
3286         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie two_file_test_main.o two_file_test_5.a
3287         @sleep 1
3288         cp -f two_file_test_1b.o two_file_test_tmp_5.o
3289         $(TEST_AR) rc two_file_test_5.a two_file_test_1.o two_file_test_tmp_5.o two_file_test_2.o
3290         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie two_file_test_main.o two_file_test_5.a
3292 # Test the --incremental-unchanged flag with an archive library.
3293 # The second link should not update the library.
3294 check_PROGRAMS += incremental_test_6
3295 MOSTLYCLEANFILES += two_file_test_6.a
3296 incremental_test_6: two_file_test_1.o two_file_test_1b_v1.o two_file_test_1b.o \
3297                     two_file_test_2.o two_file_test_main.o gcctestdir/ld
3298         cp -f two_file_test_1b.o two_file_test_tmp_6.o
3299         $(TEST_AR) rc two_file_test_6.a two_file_test_1.o two_file_test_tmp_6.o two_file_test_2.o
3300         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie two_file_test_main.o two_file_test_6.a
3301         @sleep 1
3302         cp -f two_file_test_1b_v1.o two_file_test_tmp_6.o
3303         $(TEST_AR) rc two_file_test_6.a two_file_test_1.o two_file_test_tmp_6.o two_file_test_2.o
3304         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie two_file_test_main.o -Wl,--incremental-unchanged two_file_test_6.a -Wl,--incremental-unknown
3306 if !CFLAGS_CF_PROTECTION
3307 check_PROGRAMS += incremental_copy_test
3308 endif
3309 incremental_copy_test: copy_test_v1.o copy_test.o copy_test_1.so copy_test_2.so
3310         cp -f copy_test_v1.o copy_test_tmp.o
3311         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie -Wl,-R,. -Wl,--no-as-needed copy_test_tmp.o copy_test_1.so copy_test_2.so
3312         @sleep 1
3313         cp -f copy_test.o copy_test_tmp.o
3314         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie -Wl,-R,. -Wl,--no-as-needed copy_test_tmp.o copy_test_1.so copy_test_2.so
3316 if !CFLAGS_CF_PROTECTION
3317 check_PROGRAMS += incremental_common_test_1
3318 endif
3319 incremental_common_test_1: common_test_1_v1.o common_test_1_v2.o gcctestdir/ld
3320         cp -f common_test_1_v1.o common_test_1_tmp.o
3321         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie common_test_1_tmp.o
3322         @sleep 1
3323         cp -f common_test_1_v2.o common_test_1_tmp.o
3324         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie common_test_1_tmp.o
3325 common_test_1_v1.o: common_test_1_v1.c
3326         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
3327 common_test_1_v2.o: common_test_1_v2.c
3328         $(COMPILE) -c $(COMMON_TEST_C_CFLAGS) -o $@ $<
3330 if !CFLAGS_CF_PROTECTION
3331 check_PROGRAMS += incremental_comdat_test_1
3332 endif
3333 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
3334         cp -f incr_comdat_test_2_v1.o incr_comdat_test_1_tmp.o
3335         $(CXXLINK) -Wl,--incremental-full,--incremental-patch=100 -Wl,-z,norelro,-no-pie incr_comdat_test_1.o incr_comdat_test_1_tmp.o
3336         @sleep 1
3337         cp -f incr_comdat_test_2_v2.o incr_comdat_test_1_tmp.o
3338         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie incr_comdat_test_1.o incr_comdat_test_1_tmp.o
3339         @sleep 1
3340         cp -f incr_comdat_test_2_v3.o incr_comdat_test_1_tmp.o
3341         $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie incr_comdat_test_1.o incr_comdat_test_1_tmp.o
3343 endif DEFAULT_TARGET_X86_64
3345 if DEFAULT_TARGET_X86_64
3346 check_SCRIPTS += gnu_property_test.sh
3347 check_DATA += gnu_property_test.stdout
3348 MOSTLYCLEANFILES += gnu_property_test
3349 gnu_property_test.stdout: gnu_property_test
3350         $(TEST_READELF) -lhSWn $< >$@
3351 gnu_property_test: gcctestdir/ld gnu_property_a.o gnu_property_b.o gnu_property_c.o
3352         gcctestdir/ld --build-id -o $@ gnu_property_a.o gnu_property_b.o gnu_property_c.o
3353 gnu_property_main.o: gnu_property_main.c
3354         $(COMPILE) -c -o $@ $<
3355 gnu_property_a.o: gnu_property_a.S
3356         $(COMPILE) -c -o $@ $<
3357 gnu_property_b.o: gnu_property_b.S
3358         $(COMPILE) -c -o $@ $<
3359 gnu_property_c.o: gnu_property_c.S
3360         $(COMPILE) -c -o $@ $<
3361 endif DEFAULT_TARGET_X86_64
3363 check_PROGRAMS += pr22266
3364 pr22266: pr22266_main.o pr22266_ar.o gcctestdir/ld
3365         $(LINK) pr22266_main.o pr22266_ar.o
3366 pr22266_ar.o: pr22266_a.o gcctestdir/ld
3367         gcctestdir/ld -r -T $(srcdir)/pr22266_script.t -o $@ pr22266_a.o
3369 if DEFAULT_TARGET_AARCH64
3371 check_PROGRAMS += aarch64_pr23870
3372 aarch64_pr23870_SOURCES = aarch64_pr23870_foo.c
3373 aarch64_pr23870_DEPENDENCIES = \
3374         gcctestdir/ld gcctestdir/as aarch64_pr23870_main.o \
3375         aarch64_pr23870_foo.o aarch64_pr23870_bar.so
3376 aarch64_pr23870_LDFLAGS = -Wl,-R,. -L. -Wl,-l:aarch64_pr23870_bar.so
3377 aarch64_pr23870_LDADD = aarch64_pr23870_main.o
3378 aarch64_pr23870_main.o: aarch64_pr23870_main.S
3379         $(COMPILE) -c -o $@ $<
3380 aarch64_pr23870_foo.o: aarch64_pr23870_foo.c
3381         $(COMPILE) -c -o $@ $<
3382 aarch64_pr23870_bar.o: aarch64_pr23870_bar.c
3383         $(COMPILE) -c -fPIC -o $@ $<
3384 aarch64_pr23870_bar.so: aarch64_pr23870_bar.o
3385         $(COMPILE) -shared -o $@ $<
3387 endif DEFAULT_TARGET_AARCH64
3389 endif GCC
3390 endif NATIVE_LINKER
3392 # These tests work with native and cross linkers.
3394 if NATIVE_OR_CROSS_LINKER
3396 # Test script section order.
3397 check_SCRIPTS += script_test_10.sh
3398 check_DATA += script_test_10.stdout
3399 MOSTLYCLEANFILES += script_test_10
3400 script_test_10.o: script_test_10.s
3401         $(TEST_AS) -o $@ $<
3402 script_test_10: $(srcdir)/script_test_10.t script_test_10.o gcctestdir/ld
3403         gcctestdir/ld -o $@ script_test_10.o -T $(srcdir)/script_test_10.t
3404 script_test_10.stdout: script_test_10
3405         $(TEST_READELF) -SW script_test_10 > $@
3407 # These tests work with cross linkers only.
3409 if DEFAULT_TARGET_I386
3411 check_SCRIPTS += split_i386.sh
3412 check_DATA += split_i386_1.stdout split_i386_2.stdout \
3413         split_i386_3.stdout split_i386_4.stdout split_i386_r.stdout
3414 SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3415 split_i386_1.o: split_i386_1.s
3416         $(TEST_AS) -o $@ $<
3417 split_i386_2.o: split_i386_2.s
3418         $(TEST_AS) -o $@ $<
3419 split_i386_3.o: split_i386_3.s
3420         $(TEST_AS) -o $@ $<
3421 split_i386_4.o: split_i386_4.s
3422         $(TEST_AS) -o $@ $<
3423 split_i386_n.o: split_i386_n.s
3424         $(TEST_AS) -o $@ $<
3425 split_i386_1: split_i386_1.o split_i386_n.o ../ld-new
3426         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_1.o split_i386_n.o
3427 split_i386_1.stdout: split_i386_1
3428         $(TEST_OBJDUMP) -d $< > $@
3429 split_i386_2: split_i386_2.o split_i386_n.o ../ld-new
3430         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_2.o split_i386_n.o
3431 split_i386_2.stdout: split_i386_2
3432         $(TEST_OBJDUMP) -d $< > $@
3433 split_i386_3.stdout: split_i386_3.o split_i386_n.o ../ld-new
3434         ../ld-new $(SPLIT_DEFSYMS) -o split_i386_3 split_i386_3.o split_i386_n.o > $@ 2>&1 || exit 0
3435 split_i386_4: split_i386_4.o split_i386_n.o ../ld-new
3436         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_i386_4.o split_i386_n.o
3437 split_i386_4.stdout: split_i386_4
3438         $(TEST_OBJDUMP) -d $< > $@
3439 split_i386_r.stdout: split_i386_1.o split_i386_n.o ../ld-new
3440         ../ld-new -r split_i386_1.o split_i386_n.o -o split_i386_r > $@ 2>&1 || exit 0
3441 MOSTLYCLEANFILES += split_i386_1 split_i386_2 split_i386_3 \
3442         split_i386_4 split_i386_r
3444 endif DEFAULT_TARGET_I386
3446 if DEFAULT_TARGET_X86_64
3448 check_SCRIPTS += split_x86_64.sh
3449 check_DATA += split_x86_64_1.stdout split_x86_64_2.stdout \
3450         split_x86_64_3.stdout split_x86_64_4.stdout split_x86_64_r.stdout
3451 SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3452 split_x86_64_1.o: split_x86_64_1.s
3453         $(TEST_AS) -o $@ $<
3454 split_x86_64_2.o: split_x86_64_2.s
3455         $(TEST_AS) -o $@ $<
3456 split_x86_64_3.o: split_x86_64_3.s
3457         $(TEST_AS) -o $@ $<
3458 split_x86_64_4.o: split_x86_64_4.s
3459         $(TEST_AS) -o $@ $<
3460 split_x86_64_n.o: split_x86_64_n.s
3461         $(TEST_AS) -o $@ $<
3462 split_x86_64_1: split_x86_64_1.o split_x86_64_n.o ../ld-new
3463         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_1.o split_x86_64_n.o
3464 split_x86_64_1.stdout: split_x86_64_1
3465         $(TEST_OBJDUMP) -d $< > $@
3466 split_x86_64_2: split_x86_64_2.o split_x86_64_n.o ../ld-new
3467         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_2.o split_x86_64_n.o
3468 split_x86_64_2.stdout: split_x86_64_2
3469         $(TEST_OBJDUMP) -d $< > $@
3470 split_x86_64_3.stdout: split_x86_64_3.o split_x86_64_n.o ../ld-new
3471         ../ld-new $(SPLIT_DEFSYMS) -o split_x86_64_3 split_x86_64_3.o split_x86_64_n.o > $@ 2>&1 || exit 0
3472 split_x86_64_4: split_x86_64_4.o split_x86_64_n.o ../ld-new
3473         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x86_64_4.o split_x86_64_n.o
3474 split_x86_64_4.stdout: split_x86_64_4
3475         $(TEST_OBJDUMP) -d $< > $@
3476 split_x86_64_r.stdout: split_x86_64_1.o split_x86_64_n.o ../ld-new
3477         ../ld-new -r split_x86_64_1.o split_x86_64_n.o -o split_x86_64_r > $@ 2>&1 || exit 0
3478 MOSTLYCLEANFILES += split_x86_64_1 split_x86_64_2 split_x86_64_3 \
3479         split_x86_64_4 split_x86_64_r
3481 endif DEFAULT_TARGET_X86_64
3483 if DEFAULT_TARGET_X32
3485 check_SCRIPTS += split_x32.sh
3486 check_DATA += split_x32_1.stdout split_x32_2.stdout \
3487         split_x32_3.stdout split_x32_4.stdout split_x32_r.stdout
3488 SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
3489 split_x32_1.o: split_x32_1.s
3490         $(TEST_AS) -o $@ $<
3491 split_x32_2.o: split_x32_2.s
3492         $(TEST_AS) -o $@ $<
3493 split_x32_3.o: split_x32_3.s
3494         $(TEST_AS) -o $@ $<
3495 split_x32_4.o: split_x32_4.s
3496         $(TEST_AS) -o $@ $<
3497 split_x32_n.o: split_x32_n.s
3498         $(TEST_AS) -o $@ $<
3499 split_x32_1: split_x32_1.o split_x32_n.o ../ld-new
3500         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_1.o split_x32_n.o
3501 split_x32_1.stdout: split_x32_1
3502         $(TEST_OBJDUMP) -d $< > $@
3503 split_x32_2: split_x32_2.o split_x32_n.o ../ld-new
3504         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_2.o split_x32_n.o
3505 split_x32_2.stdout: split_x32_2
3506         $(TEST_OBJDUMP) -d $< > $@
3507 split_x32_3.stdout: split_x32_3.o split_x32_n.o ../ld-new
3508         ../ld-new $(SPLIT_DEFSYMS) -o split_x32_3 split_x32_3.o split_x32_n.o > $@ 2>&1 || exit 0
3509 split_x32_4: split_x32_4.o split_x32_n.o ../ld-new
3510         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_x32_4.o split_x32_n.o
3511 split_x32_4.stdout: split_x32_4
3512         $(TEST_OBJDUMP) -d $< > $@
3513 split_x32_r.stdout: split_x32_1.o split_x32_n.o ../ld-new
3514         ../ld-new -r split_x32_1.o split_x32_n.o -o split_x32_r > $@ 2>&1 || exit 0
3515 MOSTLYCLEANFILES += split_x32_1 split_x32_2 split_x32_3 \
3516         split_x32_4 split_x32_r
3518 endif DEFAULT_TARGET_X32
3520 if DEFAULT_TARGET_ARM
3522 check_SCRIPTS += arm_abs_global.sh
3523 check_DATA += arm_abs_global.stdout
3524 arm_abs_lib.o: arm_abs_lib.s
3525         $(TEST_AS) -march=armv7-a -o $@ $<
3526 libarm_abs.so: arm_abs_lib.o ../ld-new
3527         ../ld-new -shared -o $@ arm_abs_lib.o
3528 arm_abs_global.o: arm_abs_global.s
3529         $(TEST_AS) -march=armv7-a -o $@ $<
3530 arm_abs_global: arm_abs_global.o libarm_abs.so ../ld-new
3531         ../ld-new -o $@ arm_abs_global.o -L. -larm_abs
3532 arm_abs_global.stdout: arm_abs_global
3533         $(TEST_READELF) -r $< > $@
3535 MOSTLYCLEANFILES += arm_abs_global
3537 check_SCRIPTS += arm_branch_in_range.sh arm_branch_out_of_range.sh
3538 check_DATA += arm_bl_in_range.stdout arm_bl_out_of_range.stdout \
3539         thumb_bl_in_range.stdout thumb_bl_out_of_range.stdout \
3540         thumb2_bl_in_range.stdout thumb2_bl_out_of_range.stdout \
3541         thumb_blx_in_range.stdout thumb_blx_out_of_range.stdout \
3542         thumb2_blx_in_range.stdout thumb2_blx_out_of_range.stdout \
3543         thumb_bl_out_of_range_local.stdout arm_thm_jump11.stdout \
3544         arm_thm_jump8.stdout
3546 arm_bl_in_range.stdout: arm_bl_in_range
3547         $(TEST_OBJDUMP) -D $< > $@
3549 arm_bl_in_range: arm_bl_in_range.o ../ld-new
3550         ../ld-new -T $(srcdir)/arm_branch_range.t -o $@ $<
3552 arm_bl_in_range.o: arm_bl_in_range.s
3553         $(TEST_AS) -o $@ $<
3555 arm_bl_out_of_range.stdout: arm_bl_out_of_range
3556         $(TEST_OBJDUMP) -S $< > $@
3558 arm_bl_out_of_range: arm_bl_out_of_range.o ../ld-new
3559         ../ld-new -T $(srcdir)/arm_branch_range.t -o $@ $<
3561 arm_bl_out_of_range.o: arm_bl_out_of_range.s
3562         $(TEST_AS) -o $@ $<
3564 thumb_bl_in_range.stdout: thumb_bl_in_range
3565         $(TEST_OBJDUMP) -D $< > $@
3567 thumb_bl_in_range: thumb_bl_in_range.o ../ld-new
3568         ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
3570 thumb_bl_in_range.o: thumb_bl_in_range.s
3571         $(TEST_AS) -o $@ -march=armv5te $<
3573 thumb_bl_out_of_range.stdout: thumb_bl_out_of_range
3574         $(TEST_OBJDUMP) -D $< > $@
3576 thumb_bl_out_of_range: thumb_bl_out_of_range.o ../ld-new
3577         ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
3579 thumb_bl_out_of_range.o: thumb_bl_out_of_range.s
3580         $(TEST_AS) -o $@ -march=armv5te $<
3582 thumb2_bl_in_range.stdout: thumb2_bl_in_range
3583         $(TEST_OBJDUMP) -D $< > $@
3585 thumb2_bl_in_range: thumb2_bl_in_range.o ../ld-new
3586         ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
3588 thumb2_bl_in_range.o: thumb_bl_in_range.s
3589         $(TEST_AS) -o $@ -march=armv7-a $<
3591 thumb2_bl_out_of_range.stdout: thumb2_bl_out_of_range
3592         $(TEST_OBJDUMP) -D $< > $@
3594 thumb2_bl_out_of_range: thumb2_bl_out_of_range.o ../ld-new
3595         ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
3597 thumb2_bl_out_of_range.o: thumb_bl_out_of_range.s
3598         $(TEST_AS) -o $@ -march=armv7-a $<
3600 thumb_blx_in_range.stdout: thumb_blx_in_range
3601         $(TEST_OBJDUMP) -D $< > $@
3603 thumb_blx_in_range: thumb_blx_in_range.o ../ld-new
3604         ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
3606 thumb_blx_in_range.o: thumb_blx_in_range.s
3607         $(TEST_AS) -o $@ -march=armv5te $<
3609 thumb_blx_out_of_range.stdout: thumb_blx_out_of_range
3610         $(TEST_OBJDUMP) -D $< > $@
3612 thumb_blx_out_of_range: thumb_blx_out_of_range.o ../ld-new
3613         ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
3615 thumb_blx_out_of_range.o: thumb_blx_out_of_range.s
3616         $(TEST_AS) -o $@ -march=armv5te $<
3618 thumb2_blx_in_range.stdout: thumb2_blx_in_range
3619         $(TEST_OBJDUMP) -D $< > $@
3621 thumb2_blx_in_range: thumb2_blx_in_range.o ../ld-new
3622         ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
3624 thumb2_blx_in_range.o: thumb_blx_in_range.s
3625         $(TEST_AS) -o $@ -march=armv7-a $<
3627 thumb2_blx_out_of_range.stdout: thumb2_blx_out_of_range
3628         $(TEST_OBJDUMP) -D $< > $@
3630 thumb2_blx_out_of_range: thumb2_blx_out_of_range.o ../ld-new
3631         ../ld-new -T $(srcdir)/thumb2_branch_range.t -o $@ $<
3633 thumb2_blx_out_of_range.o: thumb_blx_out_of_range.s
3634         $(TEST_AS) -o $@ -march=armv7-a $<
3636 thumb_bl_out_of_range_local.stdout: thumb_bl_out_of_range_local
3637         $(TEST_OBJDUMP) -D $< > $@
3639 thumb_bl_out_of_range_local: thumb_bl_out_of_range_local.o ../ld-new
3640         ../ld-new --no-fix-arm1176 -T $(srcdir)/thumb_branch_range.t -o $@ $<
3642 thumb_bl_out_of_range_local.o: thumb_bl_out_of_range_local.s
3643         $(TEST_AS) -o $@ -march=armv5te $<
3645 arm_thm_jump11.stdout: arm_thm_jump11
3646         $(TEST_OBJDUMP) -D $< > $@
3648 arm_thm_jump11: arm_thm_jump11.o ../ld-new
3649         ../ld-new -T $(srcdir)/arm_thm_jump11.t -o $@ $<
3651 arm_thm_jump11.o: arm_thm_jump11.s
3652         $(TEST_AS) -o $@ $<
3654 arm_thm_jump8.stdout: arm_thm_jump8
3655         $(TEST_OBJDUMP) -D $< > $@
3657 arm_thm_jump8: arm_thm_jump8.o ../ld-new
3658         ../ld-new -T $(srcdir)/arm_thm_jump8.t -o $@ $<
3660 arm_thm_jump8.o: arm_thm_jump8.s
3661         $(TEST_AS) -o $@ $<
3663 MOSTLYCLEANFILES += arm_bl_in_range arm_bl_out_of_range thumb_bl_in_range \
3664         thumb_bl_out_of_range thumb2_bl_in_range thumb2_bl_out_of_range \
3665         thumb_blx_in_range thumb_blx_out_of_range thumb2_blx_in_range \
3666         thumb2_blx_out_of_range thumb_bl_out_of_range_local arm_thm_jump11 \
3667         arm_thm_jump8
3669 check_SCRIPTS += arm_fix_v4bx.sh
3670 check_DATA += arm_fix_v4bx.stdout arm_fix_v4bx_interworking.stdout \
3671         arm_no_fix_v4bx.stdout
3673 arm_fix_v4bx.stdout: arm_fix_v4bx
3674         $(TEST_OBJDUMP) -D -j.text $< > $@
3676 arm_fix_v4bx: arm_fix_v4bx.o ../ld-new
3677         ../ld-new --no-fix-arm1176 --fix-v4bx -o $@ $<
3679 arm_fix_v4bx.o: arm_fix_v4bx.s
3680         $(TEST_AS) -o $@ $<
3682 arm_fix_v4bx_interworking.stdout: arm_fix_v4bx_interworking
3683         $(TEST_OBJDUMP) -D -j.text $< > $@
3685 arm_fix_v4bx_interworking: arm_fix_v4bx.o ../ld-new
3686         ../ld-new --no-fix-arm1176 --fix-v4bx-interworking -o $@ $<
3688 arm_no_fix_v4bx.stdout: arm_no_fix_v4bx
3689         $(TEST_OBJDUMP) -D -j.text $< > $@
3691 arm_no_fix_v4bx: arm_fix_v4bx.o ../ld-new
3692         ../ld-new --no-fix-arm1176 -o $@ $<
3694 MOSTLYCLEANFILES += arm_fix_v4bx arm_fix_v4bx_interworking arm_no_fix_v4bx
3696 check_SCRIPTS += arm_attr_merge.sh
3697 check_DATA += arm_attr_merge_6.stdout arm_attr_merge_6r.stdout \
3698         arm_attr_merge_7.stdout
3700 arm_attr_merge_6.stdout: arm_attr_merge_6
3701         $(TEST_READELF) -A $< > $@
3703 arm_attr_merge_6: arm_attr_merge_6a.o arm_attr_merge_6b.o ../ld-new
3704         ../ld-new -o $@ arm_attr_merge_6a.o arm_attr_merge_6b.o
3706 arm_attr_merge_6a.o: arm_attr_merge_6a.s
3707         $(TEST_AS) -o $@ $<
3709 arm_attr_merge_6b.o: arm_attr_merge_6b.s
3710         $(TEST_AS) -o $@ $<
3712 arm_attr_merge_6r.stdout: arm_attr_merge_6r
3713         $(TEST_READELF) -A $< > $@
3715 arm_attr_merge_6r: arm_attr_merge_6b.o arm_attr_merge_6a.o ../ld-new
3716         ../ld-new -o $@ arm_attr_merge_6b.o arm_attr_merge_6a.o
3718 arm_attr_merge_7.stdout: arm_attr_merge_7
3719         $(TEST_READELF) -A $< > $@
3721 arm_attr_merge_7: arm_attr_merge_7a.o arm_attr_merge_7b.o ../ld-new
3722         ../ld-new -o $@ arm_attr_merge_7a.o arm_attr_merge_7b.o
3724 arm_attr_merge_7a.o: arm_attr_merge_7a.s
3725         $(TEST_AS) -o $@ $<
3727 arm_attr_merge_7b.o: arm_attr_merge_7b.s
3728         $(TEST_AS) -o $@ $<
3730 MOSTLYCLEANFILES += arm_attr_merge_6 arm_attr_merge_6r arm_attr_merge_7
3732 # ARM1176 workaround test.
3733 check_SCRIPTS += arm_fix_1176.sh
3734 check_DATA += arm_fix_1176_default_v6z.stdout arm_fix_1176_on_v6z.stdout \
3735         arm_fix_1176_off_v6z.stdout arm_fix_1176_default_v5te.stdout \
3736         arm_fix_1176_default_v7a.stdout arm_fix_1176_default_1156t2f_s.stdout
3738 arm_fix_1176_default_v6z.stdout: arm_fix_1176_default_v6z
3739         $(TEST_OBJDUMP) -D -j.foo $< > $@
3741 arm_fix_1176_default_v6z: arm_fix_1176_default_v6z.o ../ld-new
3742         ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3744 arm_fix_1176_default_v6z.o: arm_fix_1176.s
3745         $(TEST_AS) -march=armv6z -o $@ $<
3747 arm_fix_1176_on_v6z.stdout: arm_fix_1176_on_v6z
3748         $(TEST_OBJDUMP) -D -j.foo $< > $@
3750 arm_fix_1176_on_v6z: arm_fix_1176_on_v6z.o ../ld-new
3751         ../ld-new --section-start=.foo=0x2001014 --fix-arm1176 -o $@ $<
3753 arm_fix_1176_on_v6z.o: arm_fix_1176.s
3754         $(TEST_AS) -march=armv6z -o $@ $<
3756 arm_fix_1176_off_v6z.stdout: arm_fix_1176_off_v6z
3757         $(TEST_OBJDUMP) -D -j.foo $< > $@
3759 arm_fix_1176_off_v6z: arm_fix_1176_off_v6z.o ../ld-new
3760         ../ld-new --section-start=.foo=0x2001014 --no-fix-arm1176 -o $@ $<
3762 arm_fix_1176_off_v6z.o: arm_fix_1176.s
3763         $(TEST_AS) -march=armv6z -o $@ $<
3765 arm_fix_1176_default_v5te.stdout: arm_fix_1176_default_v5te
3766         $(TEST_OBJDUMP) -D -j.foo $< > $@
3768 arm_fix_1176_default_v5te: arm_fix_1176_default_v5te.o ../ld-new
3769         ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3771 arm_fix_1176_default_v5te.o: arm_fix_1176.s
3772         $(TEST_AS) -march=armv5te -o $@ $<
3774 arm_fix_1176_default_v7a.stdout: arm_fix_1176_default_v7a
3775         $(TEST_OBJDUMP) -D -j.foo $< > $@
3777 arm_fix_1176_default_v7a: arm_fix_1176_default_v7a.o ../ld-new
3778         ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3780 arm_fix_1176_default_v7a.o: arm_fix_1176.s
3781         $(TEST_AS) -march=armv7-a -o $@ $<
3783 arm_fix_1176_default_1156t2f_s.stdout: arm_fix_1176_default_1156t2f_s
3784         $(TEST_OBJDUMP) -D -j.foo $< > $@
3786 arm_fix_1176_default_1156t2f_s: arm_fix_1176_default_1156t2f_s.o ../ld-new
3787         ../ld-new --section-start=.foo=0x2001014 -o $@ $<
3789 arm_fix_1176_default_1156t2f_s.o: arm_fix_1176.s
3790         $(TEST_AS) -mcpu=arm1156t2f-s -o $@ $<
3792 MOSTLYCLEANFILES += arm_fix_1176_default_v6z arm_fix_1176_on_v6z arm_fix_1176_off_v6z \
3793         arm_fix_1176_default_v5te arm_fix_1176_default_v7a arm_fix_1176_default_1156t2f_s
3795 # Cortex-A8 workaround test.
3797 check_SCRIPTS += arm_cortex_a8.sh
3798 check_DATA += arm_cortex_a8_b_cond.stdout arm_cortex_a8_b.stdout \
3799         arm_cortex_a8_bl.stdout arm_cortex_a8_blx.stdout \
3800         arm_cortex_a8_local.stdout arm_cortex_a8_local_reloc.stdout
3802 arm_cortex_a8_b_cond.stdout: arm_cortex_a8_b_cond
3803         $(TEST_OBJDUMP) -D -j.text $< > $@
3805 arm_cortex_a8_b_cond: arm_cortex_a8_b_cond.o ../ld-new
3806         ../ld-new -o $@ $<
3808 arm_cortex_a8_b_cond.o: arm_cortex_a8_b_cond.s
3809         $(TEST_AS) -o $@ $<
3811 arm_cortex_a8_b.stdout: arm_cortex_a8_b
3812         $(TEST_OBJDUMP) -D -j.text $< > $@
3814 arm_cortex_a8_b: arm_cortex_a8_b.o ../ld-new
3815         ../ld-new --fix-cortex-a8 -o $@ $<
3817 arm_cortex_a8_b.o: arm_cortex_a8_b.s
3818         $(TEST_AS) -o $@ $<
3820 arm_cortex_a8_bl.stdout: arm_cortex_a8_bl
3821         $(TEST_OBJDUMP) -D -j.text $< > $@
3823 arm_cortex_a8_bl: arm_cortex_a8_bl.o ../ld-new
3824         ../ld-new -o $@ $<
3826 arm_cortex_a8_bl.o: arm_cortex_a8_bl.s
3827         $(TEST_AS) -o $@ $<
3829 arm_cortex_a8_blx.stdout: arm_cortex_a8_blx
3830         $(TEST_OBJDUMP) -D -j.text $< > $@
3832 arm_cortex_a8_blx: arm_cortex_a8_blx.o ../ld-new
3833         ../ld-new -o $@ $<
3835 arm_cortex_a8_blx.o: arm_cortex_a8_blx.s
3836         $(TEST_AS) -o $@ $<
3838 arm_cortex_a8_local.stdout: arm_cortex_a8_local
3839         $(TEST_OBJDUMP) -D -j.text $< > $@
3841 arm_cortex_a8_local: arm_cortex_a8_local.o ../ld-new
3842         ../ld-new -o $@ $<
3844 arm_cortex_a8_local.o: arm_cortex_a8_local.s
3845         $(TEST_AS) -o $@ $<
3847 arm_cortex_a8_local_reloc.stdout: arm_cortex_a8_local_reloc
3848         $(TEST_OBJDUMP) -D -j.text $< > $@
3850 arm_cortex_a8_local_reloc: arm_cortex_a8_local_reloc.o ../ld-new
3851         ../ld-new -o $@ $<
3853 arm_cortex_a8_local_reloc.o: arm_cortex_a8_local_reloc.s
3854         $(TEST_AS) -o $@ $<
3856 MOSTLYCLEANFILES += arm_cortex_a8_b_cond arm_cortex_a8_b arm_cortex_a8_bl \
3857         arm_cortex_a8_blx arm_cortex_a8_local arm_cortex_a8_local_reloc
3859 check_SCRIPTS += arm_exidx_test.sh
3860 check_DATA += arm_exidx_test.stdout
3862 arm_exidx_test.stdout: arm_exidx_test.so
3863         $(TEST_READELF) -Sr $< > $@
3865 arm_exidx_test.so: arm_exidx_test.o ../ld-new
3866         ../ld-new -shared -o $@ $<
3868 arm_exidx_test.o: arm_exidx_test.s
3869         $(TEST_AS) -o $@ $<
3871 check_SCRIPTS += pr12826.sh
3872 check_DATA += pr12826.stdout
3874 pr12826.stdout: pr12826.so
3875         $(TEST_READELF) -A $< > $@
3877 pr12826.so: pr12826_1.o pr12826_2.o ../ld-new
3878         ../ld-new -shared -o $@ $<
3880 pr12826_1.o: pr12826_1.s
3881         $(TEST_AS) -o $@ $<
3883 pr12826_2.o: pr12826_2.s
3884         $(TEST_AS) -o $@ $<
3886 check_SCRIPTS += arm_unaligned_reloc.sh
3887 check_DATA += arm_unaligned_reloc.stdout arm_unaligned_reloc_r.stdout
3889 arm_unaligned_reloc.stdout: arm_unaligned_reloc
3890         $(TEST_OBJDUMP) -D $< > $@
3892 arm_unaligned_reloc_r.stdout: arm_unaligned_reloc_r
3893         $(TEST_OBJDUMP) -Dr $< > $@
3895 arm_unaligned_reloc: arm_unaligned_reloc.o ../ld-new
3896         ../ld-new -o $@ $<
3898 arm_unaligned_reloc_r: arm_unaligned_reloc.o ../ld-new
3899         ../ld-new -r -o $@ $<
3901 arm_unaligned_reloc.o: arm_unaligned_reloc.s
3902         $(TEST_AS) -o $@ $<
3904 MOSTLYCLEANFILES += arm_unaligned_reloc arm_unaligned_reloc_r
3906 # Check ARM to ARM farcall veneers
3908 check_SCRIPTS += arm_farcall_arm_arm.sh
3909 check_DATA += arm_farcall_arm_arm.stdout
3911 arm_farcall_arm_arm.stdout: arm_farcall_arm_arm
3912         $(TEST_OBJDUMP) -d $< > $@
3914 arm_farcall_arm_arm: arm_farcall_arm_arm.o ../ld-new
3915         ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001020 -o $@ $<
3917 arm_farcall_arm_arm.o: arm_farcall_arm_arm.s
3918         $(TEST_AS) -o $@ $<
3920 MOSTLYCLEANFILES += arm_farcall_arm_arm
3922 # Check ARM to Thumb farcall veneers
3924 check_SCRIPTS += arm_farcall_arm_thumb.sh
3925 check_DATA += arm_farcall_arm_thumb.stdout arm_farcall_arm_thumb_5t.stdout
3927 arm_farcall_arm_thumb.stdout: arm_farcall_arm_thumb
3928         $(TEST_OBJDUMP) -D $< > $@
3930 arm_farcall_arm_thumb: arm_farcall_arm_thumb.o ../ld-new
3931         ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3933 arm_farcall_arm_thumb.o: arm_farcall_arm_thumb.s
3934         $(TEST_AS) -o $@ $<
3936 arm_farcall_arm_thumb_5t.stdout: arm_farcall_arm_thumb_5t
3937         $(TEST_OBJDUMP) -D $< > $@
3939 arm_farcall_arm_thumb_5t: arm_farcall_arm_thumb_5t.o ../ld-new
3940         ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3942 arm_farcall_arm_thumb_5t.o: arm_farcall_arm_thumb.s
3943         $(TEST_AS) -march=armv5t -o $@ $<
3945 MOSTLYCLEANFILES += arm_farcall_arm_thumb arm_farcall_arm_thumb_5t
3947 # Check Thumb to Thumb farcall veneers
3949 check_SCRIPTS += arm_farcall_thumb_thumb.sh
3950 check_DATA += arm_farcall_thumb_thumb.stdout \
3951               arm_farcall_thumb_thumb_5t.stdout \
3952               arm_farcall_thumb_thumb_7m.stdout \
3953               arm_farcall_thumb_thumb_6m.stdout
3955 arm_farcall_thumb_thumb.stdout: arm_farcall_thumb_thumb
3956         $(TEST_OBJDUMP) -D $< > $@
3958 arm_farcall_thumb_thumb: arm_farcall_thumb_thumb.o ../ld-new
3959         ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3961 arm_farcall_thumb_thumb.o: arm_farcall_thumb_thumb.s
3962         $(TEST_AS) -march=armv4t -o $@ $<
3964 arm_farcall_thumb_thumb_5t.stdout: arm_farcall_thumb_thumb_5t
3965         $(TEST_OBJDUMP) -D $< > $@
3967 arm_farcall_thumb_thumb_5t: arm_farcall_thumb_thumb_5t.o ../ld-new
3968         ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3970 arm_farcall_thumb_thumb_5t.o: arm_farcall_thumb_thumb.s
3971         $(TEST_AS) -march=armv5t -o $@ $<
3973 arm_farcall_thumb_thumb_7m.stdout: arm_farcall_thumb_thumb_7m
3974         $(TEST_OBJDUMP) -D $< > $@
3976 arm_farcall_thumb_thumb_7m: arm_farcall_thumb_thumb_7m.o ../ld-new
3977         ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3979 arm_farcall_thumb_thumb_7m.o: arm_farcall_thumb_thumb.s
3980         $(TEST_AS) -march=armv7-m -o $@ $<
3982 arm_farcall_thumb_thumb_6m.stdout: arm_farcall_thumb_thumb_6m
3983         $(TEST_OBJDUMP) -D $< > $@
3985 arm_farcall_thumb_thumb_6m: arm_farcall_thumb_thumb_6m.o ../ld-new
3986         ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -o $@ $<
3988 arm_farcall_thumb_thumb_6m.o: arm_farcall_thumb_thumb.s
3989         $(TEST_AS) -march=armv6-m -o $@ $<
3991 MOSTLYCLEANFILES += arm_farcall_thumb_thumb arm_farcall_thumb_thumb_5t \
3992                     arm_farcall_thumb_thumb_7m arm_farcall_thumb_thumb_6m
3994 #Check ARM to ARM farcall veneers in the be8 mode addressing
3996 check_SCRIPTS += arm_farcall_arm_arm_be8.sh
3997 check_DATA += arm_farcall_arm_arm_be8.stdout
3999 arm_farcall_arm_arm_be8.stdout: arm_farcall_arm_arm_be8
4000         $(TEST_OBJDUMP) -D $< > $@
4002 arm_farcall_arm_arm_be8: arm_farcall_arm_arm_be8.o ../ld-new
4003         ../ld-new --no-fix-arm1176 --section-start .text=0x1000 --section-start .foo=0x2001020 -EB --be8 -o $@ $<
4005 arm_farcall_arm_arm_be8.o: arm_farcall_arm_arm.s
4006         $(TEST_AS) -EB -o $@ $<
4008 MOSTLYCLEANFILES += arm_farcall_arm_arm_be8
4010 #Check THUMB  to  THUMB farcall veneers in the be8 mode addressing
4012 check_SCRIPTS += arm_farcall_thumb_thumb_be8.sh
4013 check_DATA += arm_farcall_thumb_thumb_be8.stdout
4015 arm_farcall_thumb_thumb_be8.stdout: arm_farcall_thumb_thumb_be8
4016         $(TEST_OBJDUMP) -D $< > $@
4018 arm_farcall_thumb_thumb_be8: arm_farcall_thumb_thumb_be8.o ../ld-new
4019         ../ld-new --section-start .text=0x1000 --section-start .foo=0x2001014 -EB --be8 -o $@ $<
4021 arm_farcall_thumb_thumb_be8.o: arm_farcall_thumb_thumb.s
4022         $(TEST_AS) -march=armv7-m -EB -o $@ $<
4024 MOSTLYCLEANFILES += arm_farcall_thumb_thumb_be8
4026 # Check Thumb to ARM farcall veneers
4028 check_SCRIPTS += arm_farcall_thumb_arm.sh
4029 check_DATA += arm_farcall_thumb_arm.stdout \
4030               arm_farcall_thumb_arm_5t.stdout
4032 arm_farcall_thumb_arm.stdout: arm_farcall_thumb_arm
4033         $(TEST_OBJDUMP) -D $< > $@
4035 arm_farcall_thumb_arm: arm_farcall_thumb_arm.o ../ld-new
4036         ../ld-new --section-start .text=0x1c01010 --section-start .foo=0x2001014 -o $@ $<
4038 arm_farcall_thumb_arm.o: arm_farcall_thumb_arm.s
4039         $(TEST_AS) -o $@ $<
4041 arm_farcall_thumb_arm_5t.stdout: arm_farcall_thumb_arm_5t
4042         $(TEST_OBJDUMP) -D $< > $@
4044 arm_farcall_thumb_arm_5t: arm_farcall_thumb_arm_5t.o ../ld-new
4045         ../ld-new --no-fix-arm1176 --section-start .text=0x1c01010 --section-start .foo=0x2001014 -o $@ $<
4047 arm_farcall_thumb_arm_5t.o: arm_farcall_thumb_arm.s
4048         $(TEST_AS) -march=armv5t -o $@ $<
4050 MOSTLYCLEANFILES += arm_farcall_thumb_arm arm_farcall_thumb_arm_5t
4052 # Check handling of --target1-abs, --target1-rel and --target2 options
4054 check_SCRIPTS += arm_target1_abs.sh arm_target1_rel.sh \
4055                  arm_target2_rel.sh arm_target2_abs.sh arm_target2_got_rel.sh
4056 check_DATA += arm_target1_abs.stdout arm_target1_rel.stdout \
4057               arm_target2_rel.stdout arm_target2_abs.stdout arm_target2_got_rel.stdout
4059 arm_target1_abs.stdout: arm_target1_abs
4060         $(TEST_OBJDUMP) -s $< > $@
4062 arm_target1_abs: arm_target1.o ../ld-new
4063         ../ld-new --target1-abs --section-start .text=0x8000 -o $@ $<
4065 arm_target1_rel.stdout: arm_target1_rel
4066         $(TEST_OBJDUMP) -s $< > $@
4068 arm_target1_rel: arm_target1.o ../ld-new
4069         ../ld-new --target1-rel --section-start .text=0x8000 -o $@ $<
4071 arm_target1.o: arm_target1.s
4072         $(TEST_AS) -o $@ $<
4074 arm_target2_rel.stdout: arm_target2_rel
4075         $(TEST_OBJDUMP) -s $< > $@
4077 arm_target2_rel: arm_target2.o ../ld-new
4078         ../ld-new --target2=rel --section-start .text=0x8000 -o $@ $<
4080 arm_target2_abs.stdout: arm_target2_abs
4081         $(TEST_OBJDUMP) -s $< > $@
4083 arm_target2_abs: arm_target2.o ../ld-new
4084         ../ld-new --target2=abs --section-start .text=0x8000 -o $@ $<
4086 arm_target2_got_rel.stdout: arm_target2_got_rel
4087         $(TEST_OBJDUMP) -s $< > $@
4089 arm_target2_got_rel: arm_target2.o ../ld-new
4090         ../ld-new --target2=got-rel --section-start .text=0x8000 --section-start .got=0x9000 -o $@ $<
4092 arm_target2.o: arm_target2.s
4093         $(TEST_AS) -o $@ $<
4095 MOSTLYCLEANFILES += arm_target1_abs arm_target1_rel \
4096                     arm_target2_rel arm_target2_abs arm_target2_got_rel
4098 # The test demonstrates why the constructor of a target object should not access options.
4099 check_DATA += arm_target_lazy_init
4100 MOSTLYCLEANFILES += arm_target_lazy_init
4101 arm_target_lazy_init: arm_target_lazy_init.o arm_target_lazy_init.t ../ld-new
4102         ../ld-new -T $(srcdir)/arm_target_lazy_init.t -o $@ $<
4103 arm_target_lazy_init.o: arm_target_lazy_init.s
4104         $(TEST_AS) -EL -o $@ $<
4106 endif DEFAULT_TARGET_ARM
4108 if DEFAULT_TARGET_AARCH64
4110 check_SCRIPTS += aarch64_reloc_none.sh
4111 check_DATA += aarch64_reloc_none.stdout
4112 aarch64_reloc_none.o: aarch64_reloc_none.s
4113         $(TEST_AS) -o $@ $<
4114 aarch64_reloc_none: aarch64_reloc_none.o ../ld-new
4115         ../ld-new -o $@ aarch64_reloc_none.o --gc-sections
4116 aarch64_reloc_none.stdout: aarch64_reloc_none
4117         $(TEST_NM) $< > $@
4119 MOSTLYCLEANFILES += aarch64_reloc_none
4121 check_SCRIPTS += aarch64_relocs.sh
4122 check_DATA += aarch64_relocs.stdout
4123 aarch64_globals.o: aarch64_globals.s
4124         $(TEST_AS) -o $@ $<
4125 aarch64_relocs.o: aarch64_relocs.s
4126         $(TEST_AS) -o $@ $<
4127 aarch64_relocs: aarch64_relocs.o aarch64_globals.o ../ld-new
4128         ../ld-new -o $@ aarch64_relocs.o aarch64_globals.o -e0 --emit-relocs
4129 aarch64_relocs.stdout: aarch64_relocs
4130         $(TEST_OBJDUMP) -dr $< > $@
4132 MOSTLYCLEANFILES += aarch64_relocs
4134 check_SCRIPTS += pr21430.sh
4135 check_DATA += pr21430.stdout
4136 pr21430.o: pr21430.s
4137         $(TEST_AS) -o $@ $<
4138 pr21430: pr21430.o ../ld-new
4139         ../ld-new -o $@ $<
4140 pr21430.stdout: pr21430
4141         $(TEST_NM) -S $< > $@
4143 MOSTLYCLEANFILES += pr21430
4145 check_SCRIPTS += aarch64_tlsdesc.sh
4146 check_DATA += aarch64_tlsdesc.stdout
4147 aarch64_tlsdesc.o: aarch64_tlsdesc.s
4148         $(TEST_AS) -o $@ $<
4149 aarch64_tlsdesc: aarch64_tlsdesc.o $(srcdir)/aarch64_tlsdesc.t ../ld-new
4150         ../ld-new $< -shared -T $(srcdir)/aarch64_tlsdesc.t -o $@
4151 aarch64_tlsdesc.stdout: aarch64_tlsdesc
4152         $(TEST_OBJDUMP) -dR -j.text -j.got.plt $< > $@
4154 MOSTLYCLEANFILES += aarch64_tlsdesc
4156 endif DEFAULT_TARGET_AARCH64
4158 if DEFAULT_TARGET_S390
4160 check_SCRIPTS += split_s390.sh
4161 check_DATA += split_s390_z1.stdout split_s390_z2.stdout split_s390_z3.stdout \
4162         split_s390_z4.stdout split_s390_n1.stdout split_s390_n2.stdout \
4163         split_s390_a1.stdout split_s390_a2.stdout split_s390_z1_ns.stdout \
4164         split_s390_z2_ns.stdout split_s390_z3_ns.stdout split_s390_z4_ns.stdout \
4165         split_s390_n1_ns.stdout split_s390_n2_ns.stdout split_s390_r.stdout \
4166         split_s390x_z1.stdout split_s390x_z2.stdout split_s390x_z3.stdout \
4167         split_s390x_z4.stdout split_s390x_n1.stdout split_s390x_n2.stdout \
4168         split_s390x_a1.stdout split_s390x_a2.stdout split_s390x_z1_ns.stdout \
4169         split_s390x_z2_ns.stdout split_s390x_z3_ns.stdout \
4170         split_s390x_z4_ns.stdout split_s390x_n1_ns.stdout \
4171         split_s390x_n2_ns.stdout split_s390x_r.stdout
4172 SPLIT_DEFSYMS = --defsym __morestack=0x100 --defsym __morestack_non_split=0x200
4173 split_s390_1_z1.o: split_s390_1_z1.s
4174         $(TEST_AS) -m31 -o $@ $<
4175 split_s390_1_z2.o: split_s390_1_z2.s
4176         $(TEST_AS) -m31 -o $@ $<
4177 split_s390_1_z3.o: split_s390_1_z3.s
4178         $(TEST_AS) -m31 -o $@ $<
4179 split_s390_1_z4.o: split_s390_1_z4.s
4180         $(TEST_AS) -m31 -o $@ $<
4181 split_s390_1_n1.o: split_s390_1_n1.s
4182         $(TEST_AS) -m31 -o $@ $<
4183 split_s390_1_n2.o: split_s390_1_n2.s
4184         $(TEST_AS) -m31 -o $@ $<
4185 split_s390_1_a1.o: split_s390_1_a1.s
4186         $(TEST_AS) -m31 -o $@ $<
4187 split_s390_1_a2.o: split_s390_1_a2.s
4188         $(TEST_AS) -m31 -o $@ $<
4189 split_s390_2_s.o: split_s390_2_s.s
4190         $(TEST_AS) -m31 -o $@ $<
4191 split_s390_2_ns.o: split_s390_2_ns.s
4192         $(TEST_AS) -m31 -o $@ $<
4193 split_s390_z1: split_s390_1_z1.o split_s390_2_s.o ../ld-new
4194         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z1.o split_s390_2_s.o
4195 split_s390_z1.stdout: split_s390_z1
4196         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4197 split_s390_z2: split_s390_1_z2.o split_s390_2_s.o ../ld-new
4198         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z2.o split_s390_2_s.o
4199 split_s390_z2.stdout: split_s390_z2
4200         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4201 split_s390_z3: split_s390_1_z3.o split_s390_2_s.o ../ld-new
4202         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z3.o split_s390_2_s.o
4203 split_s390_z3.stdout: split_s390_z3
4204         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4205 split_s390_z4: split_s390_1_z4.o split_s390_2_s.o ../ld-new
4206         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z4.o split_s390_2_s.o
4207 split_s390_z4.stdout: split_s390_z4
4208         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4209 split_s390_n1: split_s390_1_n1.o split_s390_2_s.o ../ld-new
4210         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n1.o split_s390_2_s.o
4211 split_s390_n1.stdout: split_s390_n1
4212         $(TEST_OBJDUMP) -d $< > $@
4213 split_s390_n2: split_s390_1_n2.o split_s390_2_s.o ../ld-new
4214         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n2.o split_s390_2_s.o
4215 split_s390_n2.stdout: split_s390_n2
4216         $(TEST_OBJDUMP) -d $< > $@
4217 split_s390_z1_ns: split_s390_1_z1.o split_s390_2_ns.o ../ld-new
4218         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z1.o split_s390_2_ns.o
4219 split_s390_z1_ns.stdout: split_s390_z1_ns
4220         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4221 split_s390_z2_ns: split_s390_1_z2.o split_s390_2_ns.o ../ld-new
4222         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z2.o split_s390_2_ns.o
4223 split_s390_z2_ns.stdout: split_s390_z2_ns
4224         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4225 split_s390_z3_ns: split_s390_1_z3.o split_s390_2_ns.o ../ld-new
4226         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z3.o split_s390_2_ns.o
4227 split_s390_z3_ns.stdout: split_s390_z3_ns
4228         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4229 split_s390_z4_ns: split_s390_1_z4.o split_s390_2_ns.o ../ld-new
4230         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_z4.o split_s390_2_ns.o
4231 split_s390_z4_ns.stdout: split_s390_z4_ns
4232         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4233 split_s390_n1_ns: split_s390_1_n1.o split_s390_2_ns.o ../ld-new
4234         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_n1.o split_s390_2_ns.o
4235 split_s390_n1_ns.stdout: split_s390_n1_ns
4236         $(TEST_OBJDUMP) -d $< > $@
4237 split_s390_n2_ns.stdout: split_s390_1_n2.o split_s390_2_ns.o ../ld-new
4238         ../ld-new $(SPLIT_DEFSYMS) -o split_s390_n2 split_s390_1_n2.o split_s390_2_ns.o > $@ 2>&1 || exit 0
4239 split_s390_a1.stdout: split_s390_1_a1.o split_s390_2_ns.o ../ld-new
4240         ../ld-new $(SPLIT_DEFSYMS) -o split_s390_a1 split_s390_1_a1.o split_s390_2_ns.o > $@ 2>&1 || exit 0
4241 split_s390_a2: split_s390_1_a2.o split_s390_2_ns.o ../ld-new
4242         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390_1_a2.o split_s390_2_ns.o
4243 split_s390_a2.stdout: split_s390_a2
4244         $(TEST_OBJDUMP) -d $< > $@
4245 split_s390_r.stdout: split_s390_1_z1.o split_s390_2_ns.o ../ld-new
4246         ../ld-new -r split_s390_1_z1.o split_s390_2_ns.o -o split_s390_r > $@ 2>&1 || exit 0
4247 split_s390x_1_z1.o: split_s390x_1_z1.s
4248         $(TEST_AS) -m64 -o $@ $<
4249 split_s390x_1_z2.o: split_s390x_1_z2.s
4250         $(TEST_AS) -m64 -o $@ $<
4251 split_s390x_1_z3.o: split_s390x_1_z3.s
4252         $(TEST_AS) -m64 -o $@ $<
4253 split_s390x_1_z4.o: split_s390x_1_z4.s
4254         $(TEST_AS) -m64 -o $@ $<
4255 split_s390x_1_n1.o: split_s390x_1_n1.s
4256         $(TEST_AS) -m64 -o $@ $<
4257 split_s390x_1_n2.o: split_s390x_1_n2.s
4258         $(TEST_AS) -m64 -o $@ $<
4259 split_s390x_1_a1.o: split_s390x_1_a1.s
4260         $(TEST_AS) -m64 -o $@ $<
4261 split_s390x_1_a2.o: split_s390x_1_a2.s
4262         $(TEST_AS) -m64 -o $@ $<
4263 split_s390x_2_s.o: split_s390x_2_s.s
4264         $(TEST_AS) -m64 -o $@ $<
4265 split_s390x_2_ns.o: split_s390x_2_ns.s
4266         $(TEST_AS) -m64 -o $@ $<
4267 split_s390x_z1: split_s390x_1_z1.o split_s390x_2_s.o ../ld-new
4268         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z1.o split_s390x_2_s.o
4269 split_s390x_z1.stdout: split_s390x_z1
4270         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4271 split_s390x_z2: split_s390x_1_z2.o split_s390x_2_s.o ../ld-new
4272         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z2.o split_s390x_2_s.o
4273 split_s390x_z2.stdout: split_s390x_z2
4274         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4275 split_s390x_z3: split_s390x_1_z3.o split_s390x_2_s.o ../ld-new
4276         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z3.o split_s390x_2_s.o
4277 split_s390x_z3.stdout: split_s390x_z3
4278         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4279 split_s390x_z4: split_s390x_1_z4.o split_s390x_2_s.o ../ld-new
4280         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z4.o split_s390x_2_s.o
4281 split_s390x_z4.stdout: split_s390x_z4
4282         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4283 split_s390x_n1: split_s390x_1_n1.o split_s390x_2_s.o ../ld-new
4284         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n1.o split_s390x_2_s.o
4285 split_s390x_n1.stdout: split_s390x_n1
4286         $(TEST_OBJDUMP) -d $< > $@
4287 split_s390x_n2: split_s390x_1_n2.o split_s390x_2_s.o ../ld-new
4288         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n2.o split_s390x_2_s.o
4289 split_s390x_n2.stdout: split_s390x_n2
4290         $(TEST_OBJDUMP) -d $< > $@
4291 split_s390x_z1_ns: split_s390x_1_z1.o split_s390x_2_ns.o ../ld-new
4292         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z1.o split_s390x_2_ns.o
4293 split_s390x_z1_ns.stdout: split_s390x_z1_ns
4294         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4295 split_s390x_z2_ns: split_s390x_1_z2.o split_s390x_2_ns.o ../ld-new
4296         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z2.o split_s390x_2_ns.o
4297 split_s390x_z2_ns.stdout: split_s390x_z2_ns
4298         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4299 split_s390x_z3_ns: split_s390x_1_z3.o split_s390x_2_ns.o ../ld-new
4300         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z3.o split_s390x_2_ns.o
4301 split_s390x_z3_ns.stdout: split_s390x_z3_ns
4302         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4303 split_s390x_z4_ns: split_s390x_1_z4.o split_s390x_2_ns.o ../ld-new
4304         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_z4.o split_s390x_2_ns.o
4305 split_s390x_z4_ns.stdout: split_s390x_z4_ns
4306         $(TEST_OBJDUMP) -j .rodata -j .text -D $< > $@
4307 split_s390x_n1_ns: split_s390x_1_n1.o split_s390x_2_ns.o ../ld-new
4308         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_n1.o split_s390x_2_ns.o
4309 split_s390x_n1_ns.stdout: split_s390x_n1_ns
4310         $(TEST_OBJDUMP) -d $< > $@
4311 split_s390x_n2_ns.stdout: split_s390x_1_n2.o split_s390x_2_ns.o ../ld-new
4312         ../ld-new $(SPLIT_DEFSYMS) -o split_s390x_n2 split_s390x_1_n2.o split_s390x_2_ns.o > $@ 2>&1 || exit 0
4313 split_s390x_a1.stdout: split_s390x_1_a1.o split_s390x_2_ns.o ../ld-new
4314         ../ld-new $(SPLIT_DEFSYMS) -o split_s390x_a1 split_s390x_1_a1.o split_s390x_2_ns.o > $@ 2>&1 || exit 0
4315 split_s390x_a2: split_s390x_1_a2.o split_s390x_2_ns.o ../ld-new
4316         ../ld-new $(SPLIT_DEFSYMS) -o $@ split_s390x_1_a2.o split_s390x_2_ns.o
4317 split_s390x_a2.stdout: split_s390x_a2
4318         $(TEST_OBJDUMP) -d $< > $@
4319 split_s390x_r.stdout: split_s390x_1_z1.o split_s390x_2_ns.o ../ld-new
4320         ../ld-new -r split_s390x_1_z1.o split_s390x_2_ns.o -o split_s390x_r > $@ 2>&1 || exit 0
4321 MOSTLYCLEANFILES += split_s390_z1 split_s390_z2 split_s390_z3 \
4322         split_s390_z4 split_s390_n1 split_s390_n2 split_s390_a1 \
4323         split_s390_a2 split_s390_z1_ns split_s390_z2_ns split_s390_z3_ns \
4324         split_s390_z4_ns split_s390_n1_ns split_s390_n2_ns split_s390_r \
4325         split_s390x_z1 split_s390x_z2 split_s390x_z3 split_s390x_z4 \
4326         split_s390x_n1 split_s390x_n2 split_s390x_a1 split_s390x_a2 \
4327         split_s390x_z1_ns split_s390x_z2_ns split_s390x_z3_ns \
4328         split_s390x_z4_ns split_s390x_n1_ns split_s390x_n2_ns split_s390x_r
4330 endif DEFAULT_TARGET_S390
4332 endif NATIVE_OR_CROSS_LINKER
4334 # Tests for the dwp tool.
4335 # We don't want to rely yet on GCC support for -gsplit-dwarf,
4336 # so we use (for now) test cases in x86 assembly language,
4337 # compiled from the dwp_test_*.cc sources.
4339 if DEFAULT_TARGET_X86_64
4341 dwp_test_main.o: dwp_test_main.s
4342         $(TEST_AS) -o $@ $<
4343 dwp_test_1.o: dwp_test_1.s
4344         $(TEST_AS) -o $@ $<
4345 dwp_test_1b.o: dwp_test_1b.s
4346         $(TEST_AS) -o $@ $<
4347 dwp_test_2.o: dwp_test_2.s
4348         $(TEST_AS) -o $@ $<
4350 dwp_test_main.dwo: dwp_test_main.o
4351         $(TEST_OBJCOPY) --extract-dwo $< $@
4352 dwp_test_1.dwo: dwp_test_1.o
4353         $(TEST_OBJCOPY) --extract-dwo $< $@
4354 dwp_test_1b.dwo: dwp_test_1b.o
4355         $(TEST_OBJCOPY) --extract-dwo $< $@
4356 dwp_test_2.dwo: dwp_test_2.o
4357         $(TEST_OBJCOPY) --extract-dwo $< $@
4359 MOSTLYCLEANFILES += *.dwo *.dwp
4360 check_SCRIPTS += dwp_test_1.sh
4361 check_DATA += dwp_test_1.stdout
4362 dwp_test_1.stdout: dwp_test_1.dwp
4363         $(TEST_READELF) -wi $< > $@
4364 dwp_test_1.dwp: ../dwp dwp_test_main.dwo dwp_test_1.dwo dwp_test_1b.dwo dwp_test_2.dwo
4365         ../dwp -o $@ dwp_test_main.dwo dwp_test_1.dwo dwp_test_1b.dwo dwp_test_2.dwo
4367 check_SCRIPTS += dwp_test_2.sh
4368 check_DATA += dwp_test_2.stdout
4369 dwp_test_2.stdout: dwp_test_2.dwp
4370         $(TEST_READELF) -wi $< > $@
4371 dwp_test_2.dwp: ../dwp dwp_test_2a.dwp dwp_test_2b.dwp
4372         ../dwp -o $@ dwp_test_2a.dwp dwp_test_2b.dwp
4373 dwp_test_2a.dwp: ../dwp dwp_test_main.dwo dwp_test_1.dwo
4374         ../dwp -o $@ dwp_test_main.dwo dwp_test_1.dwo
4375 dwp_test_2b.dwp: ../dwp dwp_test_1b.dwo dwp_test_2.dwo
4376         ../dwp -o $@ dwp_test_1b.dwo dwp_test_2.dwo
4378 check_SCRIPTS += pr26936.sh
4379 check_DATA += pr26936a.stdout pr26936b.stdout
4380 MOSTLYCLEANFILES += pr26936a pr26936b
4381 pr26936a.stdout: pr26936a
4382         $(TEST_READELF) -wL -wR -wr $< >$@ 2>/dev/null
4383 pr26936a: pr26936a.o pr26936b.o pr26936c.o ../ld-new
4384         ../ld-new -Ttext-segment 0x10000 -z max-page-size=0x1000 \
4385                 -e _start -o $@ pr26936a.o pr26936b.o pr26936c.o
4386 pr26936b.stdout: pr26936b
4387         $(TEST_READELF) -wL -wR -wr $< >$@ 2>/dev/null
4388 pr26936b: pr26936d.o pr26936b.o pr26936c.o ../ld-new
4389         ../ld-new -Ttext-segment 0x10000 -z max-page-size=0x1000 \
4390                 -e _start -o $@ pr26936d.o pr26936b.o pr26936c.o
4391 pr26936a.o: pr26936a.s
4392         $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $<
4393 pr26936b.o: pr26936b.s
4394         $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $<
4395 pr26936c.o: pr26936c.s
4396         $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $<
4397 pr26936d.o: pr26936d.s
4398         $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $<
4400 check_SCRIPTS += retain.sh
4401 check_DATA += retain_1.out retain_2.out
4402 MOSTLYCLEANFILES += retain_1 retain_2
4403 retain_1.out: retain_1
4404         $(TEST_NM) $< >$@
4405 retain_1: retain_1.o ../ld-new
4406         ../ld-new  -e _start --gc-sections -o $@  retain_1.o
4407 retain_1.o: retain_1.s
4408         $(TEST_AS) -o $@ $<
4409 retain_2.out: retain_2
4410         $(TEST_READELF) -d $< >$@
4411 retain_2: retain_2.o ../ld-new
4412         ../ld-new -pie -e _start --gc-sections -o $@  retain_2.o
4413 retain_2.o: retain_2.s
4414         $(TEST_AS) -o $@ $<
4416 endif DEFAULT_TARGET_X86_64
4418 check_PROGRAMS += package_metadata_test
4419 package_metadata_test.o: package_metadata_main.c
4420         $(COMPILE) -c -o $@ $<
4421 package_metadata_test$(EXEEXT): package_metadata_test.o gcctestdir/ld
4422         $(CXXLINK) package_metadata_test.o -Wl,--package-metadata='{"foo":"bar"}'
4423         $(TEST_READELF) --notes $@ | grep -q '{"foo":"bar"}'