dwarf2read.c code cleanup, split out check_line_address
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / shared.exp
CommitLineData
d2dee3b2 1# Expect script for various ELF tests.
b90efa5b 2# Copyright (C) 2006-2015 Free Software Foundation, Inc.
d2dee3b2 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
d2dee3b2 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
d2dee3b2
L
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
d2dee3b2
L
20#
21
22# Exclude non-ELF targets.
23
45394486
NC
24# The following tests require running the executable generated by ld,
25# or enough of a build environment to create a fully linked executable.
26# This is not commonly available when testing a cross-built linker.
27if ![isnative] {
28 return
29}
30
d2dee3b2
L
31if ![is_elf_format] {
32 return
33}
34
dd98f8d2 35# Check to see if the C compiler works
d2dee3b2
L
36if { [which $CC] == 0 } {
37 return
38}
39
fb2c6e43
AT
40# Add -ldl to extralibs if needed
41if { ![istarget *-*-freebsd*]} {
42 set extralibs "-ldl"
43}
44
d2dee3b2
L
45set build_tests {
46 {"Build libfoo.so"
47 "-shared" "-fPIC"
48 {foo.c} {} "libfoo.so"}
49 {"Build versioned libfoo.so"
50 "-shared -Wl,--version-script=foo.map" "-fPIC"
55255dae 51 {foo.c} {} "libfoov.so"}
d2dee3b2
L
52 {"Build libbar.so"
53 "-shared" "-fPIC"
54 {begin.c end.c} {} "libbar.so"}
fab4a87f
L
55 {"Build warn libbar.so"
56 "-shared" "-fPIC"
df71cb5c 57 {beginwarn.c end.c} {{readelf {-S --wide} libbarw.rd}} "libbarw.so"
dd98f8d2 58 "C" "^.*\\\): warning: function foo is deprecated$"}
d2dee3b2
L
59 {"Build hidden libbar.so"
60 "-shared" "-fPIC"
61 {begin.c endhidden.c} {} "libbarh.so"}
62 {"Build protected libbar.so"
63 "-shared" "-fPIC"
64 {begin.c endprotected.c} {} "libbarp.so"}
65 {"Build libbar.so with libfoo.so"
66 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
67 {end.c} {} "libbarfoo.so"}
68 {"Build libar.so with versioned libfoo.so"
69 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
70 {end.c} {} "libbarfoov.so"}
71 {"Build hidden libbar.so with libfoo.so"
72 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
73 {endhidden.c} {} "libbarhfoo.so"}
74 {"Build hidden libar.so with versioned libfoo.so"
75 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
76 {endhidden.c} {} "libbarhfoov.so"}
77 {"Build protected libbar.so with libfoo.so"
78 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
79 {endprotected.c} {} "libbarpfoo.so"}
80 {"Build protected libbar.so with versioned libfoo.so"
81 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
82 {endprotected.c} {} "libbarpfoov.so"}
55255dae
L
83 {"Build libdl1.so"
84 "-shared" "-fPIC"
85 {dl1.c} {} "libdl1.so"}
86 {"Build libdl2a.so with --dynamic-list=dl2.list"
87 "-shared -Wl,--dynamic-list=dl2.list" "-fPIC"
88 {dl2.c dl2xxx.c} {} "libdl2a.so"}
b7b7fe3f
AS
89 {"Build libdl2a.so with --dynamic-list=dl2a.list"
90 "-shared -Wl,--dynamic-list=dl2a.list" "-fPIC"
91 {dl2.c dl2xxx.c} {} "libdl2a.so"}
40b36307
L
92 {"Build libdl2a.so with --dynamic-list-data"
93 "-shared -Wl,--dynamic-list-data" "-fPIC"
94 {dl2.c dl2xxx.c} {} "libdl2a.so"}
55255dae
L
95 {"Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list"
96 "-shared -Wl,--dynamic-list=dl2.list,--dynamic-list=dl2xxx.list" "-fPIC"
97 {dl2.c dl2xxx.c} {} "libdl2b.so"}
d8cf8b51 98 {"Build libdl2c.so with --dynamic-list-data and dl2xxx.list"
40b36307 99 "-shared -Wl,--dynamic-list-data,--dynamic-list=dl2xxx.list" "-fPIC"
d8cf8b51 100 {dl2.c dl2xxx.c} {} "libdl2c.so"}
c555238b
L
101 {"Build libdl4a.so with --dynamic-list=dl4.list"
102 "-shared -Wl,--dynamic-list=dl4.list" "-fPIC"
103 {dl4.c dl4xxx.c} {} "libdl4a.so"}
d8cf8b51 104 {"Build libdl4b.so with --dynamic-list-data"
40b36307 105 "-shared -Wl,--dynamic-list-data" "-fPIC"
c555238b 106 {dl4.c dl4xxx.c} {} "libdl4b.so"}
d8cf8b51
L
107 {"Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list"
108 "-shared -Wl,--dynamic-list=dl4.list,--dynamic-list=dl4xxx.list" "-fPIC"
109 {dl4.c dl4xxx.c} {} "libdl4c.so"}
110 {"Build libdl4d.so with --dynamic-list-data and dl4xxx.list"
40b36307 111 "-shared -Wl,--dynamic-list-data,--dynamic-list=dl4xxx.list" "-fPIC"
d8cf8b51
L
112 {dl4.c dl4xxx.c} {} "libdl4d.so"}
113 {"Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new"
114 "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
115 {dl4.c dl4xxx.c} {} "libdl4e.so"}
116 {"Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions"
117 "-shared -Wl,--dynamic-list-cpp-new,-Bsymbolic-functions" "-fPIC"
118 {dl4.c dl4xxx.c} {} "libdl4f.so"}
119 {"Build libdl6a.so"
120 "-shared" "-fPIC"
121 {dl6.c} {} "libdl6a.so"}
122 {"Build libdl6b.so with -Bsymbolic --dynamic-list-data"
123 "-shared -Wl,-Bsymbolic,--dynamic-list-data" "-fPIC"
124 {dl6.c} {} "libdl6b.so"}
125 {"Build libdl6c.so with -Bsymbolic"
126 "-shared -Wl,-Bsymbolic" "-fPIC"
127 {dl6.c} {} "libdl6c.so"}
128 {"Build libdl6d.so with --dynamic-list-data -Bsymbolic"
129 "-shared -Wl,--dynamic-list-data,-Bsymbolic" "-fPIC"
130 {dl6.c} {} "libdl6d.so"}
43edfb7f
L
131 {"Build libdata1.so"
132 "-shared" "-fPIC"
133 {data1.c} {} "libdata1.so"}
a47edf27
L
134 {"Build libdata2.so"
135 "-shared" "-fPIC"
136 {data2.c} {} "libdata2.so"}
0a36a439
L
137 {"Build libcomm1.o"
138 "-r -nostdlib" ""
139 {comm1.c} {} "libcomm1.o"}
140 {"Build libfunc1.so"
141 "-shared" "-fPIC"
142 {func1.c} {} "libfunc1.so"}
d8880531
L
143 {"Build libpr9676-1.a"
144 "" "-fPIC"
145 {pr9676-1.c} {} "libpr9676-1.a"}
146 {"Build libpr9676-2.a"
147 "" "-fPIC"
148 {pr9676-2.c} {} "libpr9676-2.a"}
149 {"Build libpr9676-3.so"
150 "-shared" "-fPIC"
151 {pr9676-3.c} {} "libpr9676-3.so"}
152 {"Build libpr9676-4.so"
153 "-shared" "-fPIC"
154 {pr9676-4.c} {} "libpr9676-4.so"}
155 {"Build libpr9676-4a.so"
156 "-shared tmpdir/pr9676-4.o -Ltmpdir -lpr9676-3 -Wl,--start-group -lpr9676-1 -lpr9676-2 -Wl,--end-group"
157 "-fPIC"
158 {dummy.c} {{readelf {-s} pr9676.rd}} "libpr9676-4a.so"}
54ac0771
L
159 {"Build libpr9679.so"
160 "-shared" "-fPIC -O0"
161 {pr9679-1.c pr9679-2.c} {{readelf {-s} pr9679.rd}} "libpr9679.so"}
d023c380
L
162 {"Build libpr11138-1.so"
163 "-shared -Wl,--version-script=pr11138-1.map" "-fPIC"
164 {pr11138-1.c} {} "libpr11138-1.so"}
165 {"Build libpr11138-2.o"
166 "-r -nostdlib" ""
167 {pr11138-2.c} {} "libpr11138-2.o"}
3e0882af
L
168 {"Build pr13250-1.so"
169 "-shared" "-fPIC"
170 {pr13250-1.c} {} "libpr13250-1.so"}
171 {"Build pr13250-2.so with libpr13250-1.so"
5cb49709 172 "-shared -Wl,--no-as-needed tmpdir/libpr13250-1.so" "-fPIC"
3e0882af
L
173 {pr13250-2.c} {} "libpr13250-2.so"}
174 {"Build libpr13250-3.o"
175 "-r -nostdlib" ""
176 {pr13250-3.c} {} "libpr13250-3.o"}
bc9ad2e4
L
177 {"Build libpr14323-2.so"
178 "-shared" "-fPIC"
179 {pr14323-2.c} {} "libpr14323-2.so"}
dda8ddc5
L
180 {"Build pr14862-1.o"
181 "-r -nostdlib" ""
182 {pr14862-1.c} {} "libpr14862-1.o"}
183 {"Build libpr14862.so"
184 "-shared -Wl,--version-script=pr11138-1.map" "-fPIC"
185 {pr14862-2.c} {} "libpr14862.so"}
63406f0a
L
186 {"Build libneeded1b.so"
187 "-shared" "-fPIC"
188 {needed1b.c} {} "libneeded1b.so"}
189 {"Build libneeded1a.so"
2eb64a9f 190 "-shared -Wl,--add-needed,--no-as-needed -Ltmpdir -lneeded1b" "-fPIC"
63406f0a
L
191 {needed1a.c} {} "libneeded1a.so"}
192 {"Build libneeded1c.o"
193 "-r -nostdlib" ""
194 {needed1c.c} {} "libneeded1c.o"}
8fbb09e8
L
195 {"Build libneeded1pic.o"
196 "-r -nostdlib" "-fPIC"
197 {needed1c.c} {} "libneeded1pic.o"}
198 {"Build needed1a.so with --add-needed"
199 "-shared tmpdir/libneeded1pic.o -Wl,--add-needed,-rpath=tmpdir,-z,defs -Ltmpdir -lneeded1a" ""
200 {dummy.c} {} "needed1a.so"}
201 {"Build needed1b.so with --copy-dt-needed-entries"
202 "-shared tmpdir/libneeded1pic.o -Wl,--copy-dt-needed-entries,-rpath=tmpdir,-z,defs -Ltmpdir -lneeded1a" ""
203 {dummy.c} {} "needed1b.so"}
204 {"Build needed1a.so with --no-add-needed"
205 "-shared tmpdir/libneeded1pic.o -Wl,--no-add-needed -Ltmpdir -lneeded1a" ""
206 {dummy.c} {} "needed1c.so"}
207 {"Build needed1b.so with --no-copy-dt-needed-entries"
208 "-shared tmpdir/libneeded1pic.o -Wl,--no-copy-dt-needed-entries -Ltmpdir -lneeded1a" ""
209 {dummy.c} {} "needed1d.so"}
8877b5e5
AM
210 {"Build librel.so"
211 "-shared" "-fPIC"
212 {rel.c} {} "librel.so"}
5e319dd3
L
213 {"Build libneeded2a.so"
214 "-shared" "-fPIC"
215 {needed2a.c} {} "libneeded2a.so"}
216 {"Build libneeded2b.so"
217 "-shared -Wl,--version-script,needed2.ver" "-fPIC"
218 {needed2b.c} {} "libneeded2b.so"}
219 {"Build libneeded2c.o"
220 "-r -nostdlib" ""
221 {needed2c.c} {} "libneeded2c.o"}
222 {"Build needed2"
223 "tmpdir/libneeded2c.o -Wl,--as-needed tmpdir/libneeded2a.so tmpdir/libneeded2b.so" ""
224 {dummy.c} {} "needed2"}
1240be6b
AM
225 {"Build libneeded3a.so"
226 "-shared -Wl,--no-add-needed" "-fPIC"
227 {needed1a.c} {} "libneeded3a.so"}
228 {"Build libneeded3b.so"
229 "-shared -Wl,--no-as-needed,--add-needed -Ltmpdir -lneeded1b" "-fPIC"
230 {dummy.c} {} "libneeded3b.so"}
231 {"Build needed3.o"
232 "-r -nostdlib" ""
233 {needed3.c} {} "libneeded3.so"}
234 {"Build needed3"
235 "tmpdir/needed3.o -Wl,--as-needed -Ltmpdir -lneeded3a -lneeded3b -lneeded1b" ""
236 {dummy.c} {} "needed3"}
cec2c50d
L
237 {"Build libpr2404a.so"
238 "-shared" "-fPIC"
239 {pr2404a.c} {} "libpr2404a.so"}
240 {"Build libpr2404b.a"
241 "" ""
242 {pr2404b.c} {} "libpr2404b.a"}
50a53d3f
L
243 {"Build rdynamic-1"
244 "-rdynamic -Wl,--gc-sections" "-ffunction-sections"
245 {rdynamic-1.c} {{readelf {-s} rdynamic-1.rd}} "rdynamic-1"}
d6f6f455
L
246 {"Build dynamic-1"
247 "-Wl,--dynamic-list,dynamic-1.syms -Wl,--gc-sections" "-ffunction-sections"
248 {dynamic-1.c} {{readelf {-s} dynamic-1.rd}} "dynamic-1"}
bb4d2ac2
L
249 {"Build libpr16496a.so"
250 "-shared -Wl,--version-script=pr16496a.map" "-fPIC"
251 {pr16496a.c} {} "libpr16496a.so"}
252 {"Build libpr16496b.a"
253 "" "-fPIC"
254 {pr16496b.c} {} "libpr16496b.a"}
255 {"Build libpr16496b.so"
256 "-shared tmpdir/pr16496b.o tmpdir/libpr16496a.so" ""
257 {dummy.c} {{objdump {-R} pr16496b.od}} "libpr16496b.so"}
fb389763
L
258 {"Build libpr16452a.so"
259 "-shared -Wl,-soname,libpr16452a.so,--version-script=pr16452.map" "-fPIC"
260 {pr16452a.c} {} "libpr16452a.so"}
261 {"Build libpr16452b.so"
262 "-shared -Wl,-soname,libpr16452b.so,--no-as-needed tmpdir/libpr16452a.so" "-fPIC"
263 {dummy.c} {} "libpr16452b.so"}
264 {"Build pr16452"
265 "tmpdir/libpr16452b.so -Wl,-rpath=tmpdir" ""
266 {pr16452b.c} {{objdump {-p} pr16452.od}} "pr16452"}
267 {"Build pr16457"
268 "tmpdir/libpr16452b.so -Wl,-rpath=tmpdir" ""
269 {pr16452b.c} {{objdump {-p} pr16457.od}} "pr16457"}
d2dee3b2
L
270}
271
dd98f8d2
NC
272run_cc_link_tests $build_tests
273
d2dee3b2
L
274set run_tests {
275 {"Run normal with libfoo.so"
276 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/end.o" ""
277 {main.c} "normal" "normal.out"}
278 {"Run protected with libfoo.so"
279 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endprotected.o" ""
280 {main.c} "protected" "normal.out"}
281 {"Run hidden with libfoo.so"
282 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endhidden.o" ""
283 {main.c} "hidden" "hidden.out"}
284 {"Run normal with versioned libfoo.so"
285 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/end.o" ""
286 {main.c} "normalv" "normal.out"}
fab4a87f
L
287 {"Run warn with versioned libfoo.so"
288 "tmpdir/beginwarn.o tmpdir/libfoov.so" ""
289 {main.c} "warn" "warn.out"
290 "" "" "^.*\\\): warning: function foo is deprecated$"}
d2dee3b2
L
291 {"Run protected with versioned libfoo.so"
292 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endprotected.o" ""
293 {main.c} "protected" "normal.out"}
294 {"Run hidden with versioned libfoo.so"
295 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endhidden.o" ""
296 {main.c} "hiddenv" "hidden.out"}
297 {"Run normal libbar.so with libfoo.so"
298 "tmpdir/libbarfoo.so tmpdir/libfoo.so" ""
299 {main.c} "normal" "normal.out"}
300 {"Run protected libbar.so with libfoo.so"
301 "tmpdir/libbarpfoo.so tmpdir/libfoo.so" ""
302 {main.c} "protected" "normal.out"}
303 {"Run hidden libbar.so with libfoo.so"
304 "tmpdir/libbarhfoo.so tmpdir/libfoo.so" ""
305 {main.c} "hidden" "hidden.out"}
306 {"Run normal libbar.so with versioned libfoo.so"
307 "tmpdir/libbarfoov.so tmpdir/libfoov.so" ""
308 {main.c} "normal" "normal.out"}
309 {"Run protected libbar.so with versioned libfoo.so"
310 "tmpdir/libbarpfoov.so tmpdir/libfoov.so" ""
311 {main.c} "protected" "normal.out"}
312 {"Run hidden libbar.so with versioned libfoo.so"
313 "tmpdir/libbarhfoov.so tmpdir/libfoov.so" ""
314 {main.c} "hidden" "hidden.out"}
d8cf8b51 315 {"Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so"
fb2c6e43 316 "--dynamic-list=dl1.list $extralibs" ""
d8cf8b51
L
317 {dl1main.c} "dl1a" "dl1.out"}
318 {"Run dl1b with --dynamic-list-data and dlopen on libdl1.so"
fb2c6e43 319 "--dynamic-list-data $extralibs" ""
d8cf8b51 320 {dl1main.c} "dl1b" "dl1.out"}
55255dae
L
321 {"Run with libdl2a.so"
322 "tmpdir/libdl2a.so" ""
323 {dl2main.c} "dl2a" "dl2a.out"}
324 {"Run with libdl2b.so"
325 "tmpdir/libdl2b.so" ""
326 {dl2main.c} "dl2b" "dl2b.out"}
d8cf8b51
L
327 {"Run with libdl2c.so"
328 "tmpdir/libdl2c.so" ""
329 {dl2main.c} "dl2c" "dl2b.out"}
c555238b
L
330 {"Run with libdl4a.so"
331 "tmpdir/libdl4a.so" ""
332 {dl4main.c} "dl4a" "dl4a.out"}
333 {"Run with libdl4b.so"
334 "tmpdir/libdl4b.so" ""
d8cf8b51
L
335 {dl4main.c} "dl4b" "dl4a.out"}
336 {"Run with libdl4c.so"
337 "tmpdir/libdl4c.so" ""
338 {dl4main.c} "dl4c" "dl4b.out"}
339 {"Run with libdl4d.so"
340 "tmpdir/libdl4d.so" ""
341 {dl4main.c} "dl4d" "dl4b.out"}
342 {"Run with libdl4e.so"
343 "tmpdir/libdl4e.so" ""
344 {dl4main.c} "dl4e" "dl4a.out"}
345 {"Run with libdl4f.so"
346 "tmpdir/libdl4f.so" ""
347 {dl4main.c} "dl4f" "dl4a.out"}
348 {"Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so"
fb2c6e43 349 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
350 {dl6amain.c} "dl6a1" "dl6a.out"}
351 {"Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so"
fb2c6e43 352 "-Bsymbolic-functions $extralibs" ""
d8cf8b51
L
353 {dl6amain.c} "dl6a2" "dl6b.out"}
354 {"Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so"
fb2c6e43 355 "-Bsymbolic $extralibs" ""
d8cf8b51
L
356 {dl6amain.c} "dl6a3" "dl6b.out"}
357 {"Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so"
fb2c6e43 358 "-Bsymbolic --dynamic-list-data $extralibs" ""
d8cf8b51
L
359 {dl6amain.c} "dl6a4" "dl6a.out"}
360 {"Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so"
fb2c6e43 361 "-Bsymbolic-functions --dynamic-list-cpp-new $extralibs" ""
d8cf8b51
L
362 {dl6amain.c} "dl6a5" "dl6b.out"}
363 {"Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so"
fb2c6e43 364 "--dynamic-list-cpp-new -Bsymbolic-functions $extralibs" ""
d8cf8b51
L
365 {dl6amain.c} "dl6a6" "dl6b.out"}
366 {"Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so"
fb2c6e43 367 "--dynamic-list-data -Bsymbolic $extralibs" ""
d8cf8b51
L
368 {dl6amain.c} "dl6a7" "dl6a.out"}
369 {"Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so"
fb2c6e43 370 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
371 {dl6bmain.c} "dl6b1" "dl6a.out"}
372 {"Run dl6b2 with dlopen on libdl6b.so"
fb2c6e43 373 "$extralibs" ""
d8cf8b51
L
374 {dl6bmain.c} "dl6b2" "dl6b.out"}
375 {"Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so"
fb2c6e43 376 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
377 {dl6cmain.c} "dl6c1" "dl6b.out"}
378 {"Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so"
fb2c6e43 379 "--dynamic-list-data $extralibs" ""
d8cf8b51 380 {dl6dmain.c} "dl6d1" "dl6b.out"}
43edfb7f
L
381 {"Run with libdata1.so"
382 "tmpdir/libdata1.so" ""
383 {dynbss1.c} "dynbss1" "pass.out"}
a47edf27
L
384 {"Run with libdata2.so"
385 "tmpdir/libdata2.so" ""
386 {weakdef1.c} "weakdef1" "pass.out"}
0a36a439
L
387 {"Run with libfunc1.so comm1.o"
388 "tmpdir/libfunc1.so tmpdir/comm1.o" ""
389 {dummy.c} "comm1" "pass.out"}
390 {"Run with comm1.o libfunc1.so"
391 "tmpdir/comm1.o tmpdir/libfunc1.so" ""
392 {dummy.c} "comm1" "pass.out"}
d023c380
L
393 {"Run with pr11138-2.c libpr11138-1.so"
394 "--version-script=pr11138-2.map tmpdir/pr11138-2.o tmpdir/libpr11138-1.so" ""
395 {dummy.c} "pr11138a" "pr11138.out"}
396 {"Run with libpr11138-1.so pr11138-2.c"
397 "--version-script=pr11138-2.map tmpdir/libpr11138-1.so tmpdir/pr11138-2.o" ""
398 {dummy.c} "pr11138b" "pr11138.out"}
3e0882af
L
399 {"Run with pr13250-3.c, libpr13250-1.so and libpr13250-2.so"
400 "--as-needed tmpdir/pr13250-3.o tmpdir/libpr13250-1.so tmpdir/libpr13250-2.so" ""
401 {dummy.c} "pr13250" "pass.out"}
bc9ad2e4
L
402 {"Run with pr14323-1.c pr14323-2.so"
403 "tmpdir/libpr14323-2.so" ""
404 {pr14323-1.c} "pr14323" "pass.out"}
dda8ddc5
L
405 {"Run with pr14862-1.c libpr14862.so"
406 "--as-needed tmpdir/libpr14862-1.o tmpdir/libpr14862.so" ""
407 {dummy.c} "pr14862" "pr14862.out"}
63406f0a
L
408 {"Link with --add-needed"
409 "tmpdir/libneeded1c.o --add-needed -rpath=tmpdir -Ltmpdir -lneeded1a" ""
410 {dummy.c} "needed1a" "needed1.out"}
411 {"Link with --copy-dt-needed-entries"
412 "tmpdir/libneeded1c.o --copy-dt-needed-entries -rpath=tmpdir -Ltmpdir -lneeded1a" ""
413 {dummy.c} "needed1b" "needed1.out"}
8877b5e5
AM
414 {"Run relmain"
415 "--no-as-needed -rpath=tmpdir -Ltmpdir -lrel" ""
416 {relmain.c} "relmain" "relmain.out"}
cec2c50d
L
417 {"Run pr2404"
418 "tmpdir/pr2404b.o tmpdir/libpr2404a.so" ""
419 {dummy.c} "pr2404" "pr2404.out"}
d2dee3b2
L
420}
421
d2dee3b2
L
422# NetBSD ELF systems do not currently support the .*_array sections.
423run_ld_link_exec_tests [list "*-*-netbsdelf*"] $run_tests
55255dae 424
63406f0a
L
425# Check --no-add-needed and --no-copy-dt-needed-entries
426set testname "--no-add-needed"
f1d7f4a6 427set exec_output [run_host_cmd "$CC" "tmpdir/libneeded1c.o -Wl,--no-add-needed,-rpath-link=tmpdir -Ltmpdir -lneeded1a"]
e65cb106 428if { [ regexp "tmpdir/libneeded1b.so: .*: DSO missing" $exec_output ] } {
63406f0a
L
429 pass $testname
430} {
431 fail $testname
432}
433set testname "--no-copy-dt-needed-entries"
f1d7f4a6 434set exec_output [run_host_cmd "$CC" "tmpdir/libneeded1c.o -Wl,--no-copy-dt-needed-entries,-rpath-link=tmpdir -Ltmpdir -lneeded1a"]
e65cb106 435if { [ regexp "tmpdir/libneeded1b.so: .*: DSO missing" $exec_output ] } {
63406f0a
L
436 pass $testname
437} {
438 fail $testname
439}
8fbb09e8 440set testname "--no-add-needed -shared"
f1d7f4a6 441set exec_output [run_host_cmd "$CC" "-shared tmpdir/libneeded1pic.o -Wl,--no-add-needed,-z,defs -Ltmpdir -lneeded1a"]
8fbb09e8
L
442if { [ regexp "undefined reference to `bar'" $exec_output ] } {
443 pass $testname
444} {
445 fail $testname
446}
447set testname "--no-copy-dt-needed-entries -shared"
f1d7f4a6 448set exec_output [run_host_cmd "$CC" "-shared tmpdir/libneeded1pic.o -Wl,--no-copy-dt-needed-entries,-z,defs -Ltmpdir -lneeded1a"]
8fbb09e8
L
449if { [ regexp "undefined reference to `bar'" $exec_output ] } {
450 pass $testname
451} {
452 fail $testname
453}
63406f0a 454
dd98f8d2 455# Check to see if the C++ compiler works
55255dae
L
456if { [which $CXX] == 0 } {
457 return
458}
459
460set build_cxx_tests {
461 {"Build libdl3a.so with --dynamic-list=dl3.list"
462 "-shared -Wl,--dynamic-list=dl3.list" "-fPIC"
463 {dl3.cc} {} "libdl3a.so" "c++"}
464 {"Build libdl3b.so with -Bsymbolic"
465 "-shared -Wl,-Bsymbolic" "-fPIC"
466 {dl3.cc} {} "libdl3b.so" "c++"}
467 {"Build libdl3a.so with --dynamic-list-cpp-typeinfo"
468 "-shared -Wl,--dynamic-list-cpp-typeinfo" "-fPIC"
469 {dl3.cc} {} "libdl3c.so" "c++"}
d8cf8b51 470 {"Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new"
40b36307 471 "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
d8cf8b51
L
472 {del.cc new.cc} {} "libnew1a.so" "c++"}
473 {"Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new"
474 "-shared -Wl,--dynamic-list-data,--dynamic-list-cpp-new" "-fPIC"
475 {del.cc new.cc} {} "libnew1b.so" "c++"}
55255dae
L
476}
477
b37470e4
L
478# "-shared -Bsymbolic" only works with gcc 4.5.0 and newer.
479# {"Run with libdl3b.so"
480# "tmpdir/libdl3b.so" ""
481# {dl3main.cc} "dl3b" "dl3b.out" "" "c++"}
cb5ab6c8
L
482set run_cxx_tests {
483 {"Run with libdl3a.so"
484 "-Wl,--no-as-needed tmpdir/libdl3a.so" ""
485 {dl3main.cc} "dl3a" "dl3a.out" "" "c++"}
55255dae 486 {"Run with libdl3c.so"
5cb49709 487 "-Wl,--no-as-needed tmpdir/libdl3c.so" ""
55255dae 488 {dl3main.cc} "dl3c" "dl3a.out" "" "c++"}
d8cf8b51
L
489 {"Run with libnew1a.so"
490 "tmpdir/libnew1a.so" ""
491 {dl5.cc} "dl5a" "dl5.out" "" "c++"}
492 {"Run with libnew1b.so"
493 "tmpdir/libnew1b.so" ""
494 {dl5.cc} "dl5b" "dl5.out" "" "c++"}
55255dae
L
495}
496
497run_cc_link_tests $build_cxx_tests
498run_ld_link_exec_tests [] $run_cxx_tests
22ef172a
L
499
500if { [istarget *-*-linux*]
501 || [istarget *-*-nacl*]
502 || [istarget *-*-gnu*] } {
503 run_cc_link_tests [list \
504 [list \
505 "Build libpr2404b.a with PIE" \
506 "" \
507 "-fPIE" \
508 { pr2404b.c } \
509 {} \
510 "libpr2404b.a" \
511 ] \
512 ]
513 run_ld_link_exec_tests [] [list \
514 [list \
515 "Run pr2404 with PIE" \
516 "-pie tmpdir/pr2404b.o tmpdir/libpr2404a.so" \
517 "" \
518 { dummy.c } \
519 "pr2404pie" \
520 "pr2404.out" \
521 "-fPIE" \
522 ] \
523 ]
524}
This page took 0.592078 seconds and 4 git commands to generate.