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