1 # Expect script for ld-version tests
2 # Copyright 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 # 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5 # This file is part of the GNU Binutils.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 # Written by Eric Youngdale (eric@andante.jic.com)
26 # This test can only be run if ld generates native executables.
27 if ![isnative] then {return}
29 # This test can only be run on a couple of ELF platforms.
30 # Square bracket expressions seem to confuse istarget.
31 # This is similar to the test that is used in ld-shared, BTW.
32 if { ![istarget hppa*64*-*-hpux*]
33 && ![istarget hppa*-*-linux*]
34 && ![istarget i?86-*-sysv4*]
35 && ![istarget i?86-*-unixware]
36 && ![istarget i?86-*-elf*]
37 && ![istarget i?86-*-linux*]
38 && ![istarget i?86-*-gnu*]
39 && ![istarget i?86-*-nacl*]
40 && ![istarget ia64-*-elf*]
41 && ![istarget ia64-*-linux*]
42 && ![istarget m68k-*-linux*]
43 && ![istarget mips*-*-irix5*]
44 && ![istarget powerpc*-*-elf*]
45 && ![istarget powerpc*-*-linux*]
46 && ![istarget powerpc*-*-sysv4*]
47 && ![istarget sparc*-*-elf]
48 && ![istarget sparc*-*-solaris2*]
49 && ![istarget sparc*-*-linux*]
50 && ![istarget aarch64*-*-linux*]
51 && ![istarget arm*-*-linux*]
52 && ![istarget mips*-*-linux*]
53 && ![istarget alpha*-*-linux*]
54 && ![istarget s390*-*-linux*]
55 && ![istarget sh\[34\]*-*-linux*]
56 && ![istarget x86_64-*-linux*]
57 && ![istarget x86_64-*-nacl*] } {
61 if { [istarget *-*-linux*aout*]
62 || [istarget *-*-linux*oldld*] } {
66 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
72 set VOBJDUMP_FLAGS --private-headers
73 set DOBJDUMP_FLAGS --dynamic-syms
74 set SOBJDUMP_FLAGS --syms
75 set shared "--shared --no-undefined-version"
76 set script --version-script
78 # Old version of GCC for MIPS default to enabling -fpic
79 # and get confused if it is used on the command line.
80 if { [istarget mips*-*-*] && ! [at_least_gcc_version 4 3] } then {
83 # Unfortunately, the gcc argument is -fpic and the cc argument is
84 # -KPIC. We have to try both.
86 send_log "$CC $picflag\n"
87 verbose "$CC $picflag"
88 catch "exec $CC $picflag" exec_output
89 send_log "$exec_output\n"
90 verbose "--" "$exec_output"
91 if { [string match "*illegal option*" $exec_output]
92 || [string match "*option ignored*" $exec_output]
93 || [string match "*unrecognized option*" $exec_output]
94 || [string match "*passed to ld*" $exec_output] } {
95 if [istarget *-*-sunos4*] {
103 case $target_triplet in {
104 { ia64-*-* } { set as_options "-x" }
105 { sparc-*-* } { set as_options "-Av9a" }
106 default { set as_options "" }
109 proc test_ar { test lib object expect } {
117 verbose -log "$ar -cr $tmpdir/$lib $tmpdir/$object"
118 catch "exec $ar -cr $tmpdir/$lib $tmpdir/$object" exec_output
119 set exec_output [prune_warnings $exec_output]
120 if ![string match "" $exec_output] {
121 verbose -log "$exec_output"
126 verbose -log "$nm --print-armap $tmpdir/$lib | grep \" in \" | egrep \"VERS\\|bar\\|foo\" | sort > $tmpdir/nm.out"
128 catch "exec $nm --print-armap $tmpdir/$lib | grep \\\ in\\\ | egrep VERS\\\|bar\\\|foo | sort > $tmpdir/nm.out" exec_output
129 if [string match "" $exec_output] then {
130 catch "exec sort $srcdir/$subdir/$expect | $diff $tmpdir/nm.out -" exec_output
131 set exec_output [prune_warnings $exec_output]
132 if [string match "" $exec_output] then {
136 verbose -log "$exec_output"
141 verbose -log "$exec_output"
147 # objdump_emptysymstuff
148 # Check non-dynamic symbols and make sure there are none with '@'.
150 proc objdump_emptysymstuff { objdump object } {
151 global SOBJDUMP_FLAGS
152 global version_output
155 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
157 verbose -log "$objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p"
159 catch "exec $objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p" exec_output
160 set exec_output [prune_warnings $exec_output]
161 if [string match "" $exec_output] then {
162 # We shouldn't get anything here.
165 # it is not normal to come here - we have no output to compare.
166 verbose -log "$exec_output"
167 verbose -log "objdump_emptysymstuff: did not expect any output from objdump"
174 # objdump_emptydynsymstuff
175 # Check dynamic symbols and make sure there are none with '@'.
177 proc objdump_emptydynsymstuff { objdump object } {
178 global DOBJDUMP_FLAGS
179 global version_output
182 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
184 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p"
186 catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p" exec_output
187 set exec_output [prune_warnings $exec_output]
188 if [string match "" $exec_output] then {
189 # We shouldn't get anything here.
191 } else { if [string match "*objdump: *: not a dynamic object" $exec_output] then {
194 # it is not normal to come here - we have no output to compare.
195 verbose -log "$exec_output"
196 verbose -log "objdump_emptydynsymstuff: did not expect any output from objdump"
202 # objdump_emptyverstuff
203 # Make sure there is no version information
205 proc objdump_emptyverstuff { objdump object } {
206 global VOBJDUMP_FLAGS
207 global version_output
211 if {[which $objdump] == 0} then {
212 perror "$objdump does not exist"
216 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
218 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
220 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p" exec_output
221 set exec_output [prune_warnings $exec_output]
222 if [string match "" $exec_output] then {
223 # it is normal to fail here - we have no output to compare.
225 } else { if { [string match "*libc*" $exec_output] } then {
226 # this probably means that there is version information in libc, so we
227 # can't really perform this test.
230 verbose -log "$exec_output"
231 verbose -log "objdump_emptyverstuff: did not expect any output from objdump"
239 # Dump non-dynamic symbol stuff and make sure that it is sane.
241 proc objdump_symstuff { objdump object expectfile } {
242 global SOBJDUMP_FLAGS
243 global version_output
247 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
249 verbose -log "$objdump $SOBJDUMP_FLAGS $object | grep \@ | sort > $tmpdir/objdump.out"
251 catch "exec $objdump $SOBJDUMP_FLAGS $object | grep \@ | sort > $tmpdir/objdump.out" exec_output
252 set exec_output [prune_warnings $exec_output]
253 if [string match "" $exec_output] then {
255 # Now do a line-by-line comparison to effectively diff the darned things
256 # The stuff coming from the expectfile is actually a regex, so we can
257 # skip over the actual addresses and so forth. This is currently very
258 # simpleminded - it expects a one-to-one correspondence in terms of line
261 if [file exists $expectfile] then {
262 set file_a [open $expectfile r]
264 perror "$expectfile doesn't exist"
268 if [file exists $tmpdir/objdump.out] then {
269 set file_b [open $tmpdir/objdump.out r]
271 perror "$tmpdir/objdump.out doesn't exist"
275 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
280 while { [gets $file_a line] != $eof } {
281 if [regexp "^#.*$" $line] then {
289 while { [gets $file_b line] != $eof } {
290 if [regexp "^#.*$" $line] then {
298 for { set i 0 } { $i < [llength $list_a] } { incr i } {
299 set line_a [lindex $list_a $i]
300 set line_b [lindex $list_b $i]
303 verbose "\t$expectfile: $i: $line_a" 3
304 verbose "\t/tmp/objdump.out: $i: $line_b" 3
305 if [regexp $line_a $line_b] then {
308 verbose -log "\t$expectfile: $i: $line_a"
309 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
315 if { [llength $list_a] != [llength $list_b] } {
316 verbose -log "Line count"
320 if $differences<1 then {
326 verbose -log "$exec_output"
333 # objdump_dymsymstuff
334 # Dump dynamic symbol stuff and make sure that it is sane.
336 proc objdump_dynsymstuff { objdump object expectfile } {
337 global DOBJDUMP_FLAGS
338 global version_output
342 if ![info exists DOBJDUMP_FLAGS] { set DOBJDUMP_FLAGS "" }
344 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out"
346 catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out" exec_output
347 set exec_output [prune_warnings $exec_output]
348 if [string match "" $exec_output] then {
350 # Now do a line-by-line comparison to effectively diff the darned things
351 # The stuff coming from the expectfile is actually a regex, so we can
352 # skip over the actual addresses and so forth. This is currently very
353 # simpleminded - it expects a one-to-one correspondence in terms of line
356 if [file exists $expectfile] then {
357 set file_a [open $expectfile r]
359 warning "$expectfile doesn't exist"
363 if [file exists $tmpdir/objdump.out] then {
364 set file_b [open $tmpdir/objdump.out r]
366 fail "$tmpdir/objdump.out doesn't exist"
370 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
375 while { [gets $file_a line] != $eof } {
376 if [regexp "^#.*$" $line] then {
384 while { [gets $file_b line] != $eof } {
385 if [regexp "^#.*$" $line] then {
393 # Support empty files.
394 if { ![info exists list_a] && ![info exists list_b] } then {
398 for { set i 0 } { $i < [llength $list_b] } { incr i } {
399 set line_b [lindex $list_b $i]
401 # The tests are rigged so that we should never export a symbol with the
402 # word 'hide' in it. Thus we just search for it, and bail if we find it.
403 if [regexp "hide" $line_b] then {
404 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
409 verbose "\t$expectfile: $i: $line_b" 3
411 # We can't assume that the sort is consistent across
412 # systems, so we must check each regexp. When we find a
413 # regexp, we null it out, so we don't match it twice.
414 for { set j 0 } { $j < [llength $list_a] } { incr j } {
415 set line_a [lindex $list_a $j]
417 if [regexp $line_a $line_b] then {
418 lreplace $list_a $j $j "CAN NOT MATCH"
423 if { $j >= [llength $list_a] } {
424 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
430 if { [llength $list_a] != [llength $list_b] } {
431 verbose -log "Line count"
435 if $differences<1 then {
441 verbose -log "$exec_output"
448 # objdump_versionstuff
449 # Dump version definitions/references and make sure that it is sane.
451 proc objdump_versionstuff { objdump object expectfile } {
452 global VOBJDUMP_FLAGS
453 global version_output
457 if {[which $objdump] == 0} then {
458 perror "$objdump does not exist"
462 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
464 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
466 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out" exec_output
467 set exec_output [prune_warnings $exec_output]
468 if [string match "" $exec_output] then {
470 # It's OK if there are extra lines in the actual output; they
471 # may come from version information in libc. We require that
472 # every line in EXPECTFILE appear in the output in any order.
474 set f2 [open $expectfile r]
475 while { [gets $f2 l2] != -1 } {
476 if { ![regexp "^#.*$" $l2] } then {
477 set f1 [open $tmpdir/objdump.out r]
478 while { [gets $f1 l1] != -1 } {
479 if { [string match $l2 $l1] } then {
485 if { ![string match $l2 $l1] } then {
486 verbose -log "Did not find \"$l2\""
487 set f1 [open $tmpdir/objdump.out r]
488 while { [gets $f1 l1] != -1 } {
500 verbose -log "$exec_output"
505 proc build_binary { shared pic test source libname other mapfile verexp versymexp symexp ldargs } {
519 if ![ld_compile "$CC -S $pic $CFLAGS" $srcdir/$subdir/$source $tmpdir/$libname.s] {
524 if ![ld_assemble $as "$as_options $tmpdir/$libname.s" $tmpdir/$libname.o ] {
530 if ![string match "" $other] then {
532 set other_lib "$other_lib $tmpdir/$o"
536 if [string match "" $mapfile] then {
539 set script_arg "$script $srcdir/$subdir/$mapfile"
542 if {![ld_simple_link $ld $tmpdir/$libname.so "$shared $tmpdir/$libname.o $other_lib $script_arg $ldargs"]} {
547 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
552 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
557 if [string match "" $symexp] then {
558 if {![objdump_emptysymstuff $objdump $tmpdir/$libname.o ]} {
563 if {![objdump_symstuff $objdump $tmpdir/$libname.o $srcdir/$subdir/$symexp ]} {
573 proc build_executable { test source libname other mapfile verexp versymexp symexp } {
574 build_binary "" "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
577 proc build_vers_lib_no_pic { test source libname other mapfile verexp versymexp symexp } {
579 build_binary $shared "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
582 proc build_vers_lib_pic { test source libname other mapfile verexp versymexp symexp } {
585 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
588 proc build_vers_lib_pic_flags { test source libname other mapfile verexp versymexp symexp ldargs } {
591 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp $ldargs
594 proc test_ldfail { test flag source execname other mapfile whyfail } {
607 if [string match "" $other] then {
610 set other_lib $tmpdir/$other
613 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
618 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
623 verbose -log "This link should fail because of $whyfail"
625 if [string match "" $mapfile] then {
628 set script_arg "-Wl,$script $srcdir/$subdir/$mapfile"
631 if {![ld_simple_link $CC $tmpdir/$execname "$tmpdir/$execname.o $other_lib $script_arg"]} {
638 proc test_asfail { test flag source execname whyfail } {
646 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
651 verbose -log "This assemble should fail because of $whyfail"
652 catch "exec $as -o $tmpdir/$execname.o $tmpdir/$execname.s" exec_output
653 set exec_output [prune_warnings $exec_output]
654 if [string match "" $exec_output] then {
658 verbose -log "$exec_output"
662 proc test_strip_vers_lib { test srclib libname verexp versymexp } {
671 verbose -log "cp $tmpdir/$srclib $tmpdir/$libname.so"
672 exec cp $tmpdir/$srclib $tmpdir/$libname.so
674 verbose -log "$strip $tmpdir/$libname.so"
675 catch "exec $strip $tmpdir/$libname.so" exec_output
676 if [string match "" $exec_output] then {
678 # If strip went OK, then run the usual tests on the thing to make sure that
680 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
685 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
691 verbose -log "$exec_output"
699 proc build_exec { test source execname flags solibname verexp versymexp symexp } {
711 set shared "--shared --no-undefined-version"
712 set script --version-script
713 if ![ld_compile "$CC -S $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
718 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
723 if [string match "" $solibname] then {
726 set solibname_lib $tmpdir/$solibname
729 if {![ld_simple_link $CC $tmpdir/$execname "$flags $tmpdir/$execname.o $solibname_lib"]} {
734 if [string match "" $verexp] then {
736 # Make sure we get nothing back.
738 if {![objdump_emptyverstuff $objdump $tmpdir/$execname ]} {
743 if {![objdump_versionstuff $objdump $tmpdir/$execname $srcdir/$subdir/$verexp ]} {
749 if [string match "" $versymexp] then {
750 if {![objdump_emptydynsymstuff $objdump $tmpdir/$execname ]} {
755 if {![objdump_dynsymstuff $objdump $tmpdir/$execname $srcdir/$subdir/$versymexp ]} {
761 if [string match "" $symexp] then {
762 if {![objdump_emptysymstuff $objdump $tmpdir/$execname.o ]} {
767 if {![objdump_symstuff $objdump $tmpdir/$execname.o $srcdir/$subdir/$symexp ]} {
776 if { [istarget x86_64-*-linux*] \
777 || ( [istarget mips*-*-linux*] && [at_least_gcc_version 4 3] ) } {
778 # x86_64 and newer MIPS toolchains do not like non-pic shared libraries
785 # Basic test - build a library with versioned symbols.
787 build_vers_lib_pic "vers1" vers1.c vers1 "" vers1.map vers1.ver vers1.dsym vers1.sym
791 # Test #2 - build a library, and link it against the library we built in step
794 build_vers_lib_pic "vers2" vers2.c vers2 vers1.so vers2.map vers2.ver vers2.dsym ""
797 # Test #3 - build an executable, and link it against vers1.so.
799 build_exec "vers3" vers3.c vers3 "" vers1.so vers3.ver vers3.dsym ""
802 # Test #4 - Make sure a version implicitly defined in an executable
803 # causes a version node to be created. Verify this both with and without
807 # This test fails on MIPS. On the MIPS we must put foo in the dynamic
808 # symbol table, which the test does not expect.
809 setup_xfail "mips*-*-*"
810 build_exec "vers4" vers4.c vers4 "" "" "" "" vers4.sym
812 build_exec "vers4a" vers4.c vers4a "-Wl,-export-dynamic" "" vers4a.ver vers4a.dsym vers4a.sym
814 # Verify that --no-export-dynamic undoes the effect of --export-dynamic.
815 setup_xfail "mips*-*-*"
816 build_exec "vers4b" vers4.c vers4b "-Wl,-export-dynamic -Wl,--no-export-dynamic" "" "" "" vers4.sym
820 # Try multiple definitions foo@BAR and foo@@BAR and make sure the linker
823 test_ldfail "vers5" "" vers5.c vers5 "" "" "multiple definition of foo@VERS_1.2"
827 # Now build a test that should reference a bunch of versioned symbols.
828 # All of them should be correctly referenced.
830 build_exec "vers6" vers6.c vers6 "" vers1.so vers6.ver vers6.dsym vers6.sym
833 # Another test to verify that something made local via 'local' is truly not
836 if [string match "yes" $pic] then {
840 build_vers_lib_no_pic "vers7a" vers7a.c vers7a "" vers7.map vers7a.ver vers7a.dsym vers7a.sym
842 test_ldfail "vers7" "" vers7.c vers7 vers7a.so "" "undefined reference to hide_a"
847 # This test is designed to verify that we can pass a linker script on the
848 # command line as if it were a normal .o file.
850 catch "exec cp $srcdir/$subdir/vers8.map $tmpdir/" ignore_output
851 build_vers_lib_pic "vers8" vers1.c vers8 vers8.map "" vers8.ver vers1.dsym vers1.sym
854 # This test tries to make sure that version references to versioned symbols
855 # don't collide with default definitions with the same symbol.
857 build_exec "vers9" vers9.c vers9 "-Wl,-export-dynamic" "" vers9.ver vers9.dsym vers9.sym
861 # Try and use a non-existant version node. The linker should fail with
864 test_ldfail "vers10" "-DDO_TEST10" vers1.c vers10 "" "vers1.map --shared" "invalid version"
867 # Try and some things the assembler should complain about.
869 test_asfail "vers11" "-DDO_TEST11" vers1.c vers11 "no @ in symver"
871 test_asfail "vers12" "-DDO_TEST12" vers1.c vers12 "extern version definition"
874 # Put a shared library in an archive library, and make sure the global
875 # archive symbol table is sane.
877 test_ar "ar with versioned solib" vers13.a vers1.so vers13.asym
880 # Strip a shared library, and make sure we didn't screw something up in there.
882 test_strip_vers_lib "vers14" vers1.so vers14 vers1.ver vers1.dsym
886 # Build another test with some versioned symbols. Here we are going to
887 # try and override something from the library, and we shouldn't get
890 build_exec "vers15" vers15.c vers15 "-Wl,--no-as-needed" vers1.so vers15.ver vers15.dsym vers15.sym
893 # Test that when we override a versioned symbol from the library this
894 # symbol appears in the dynamic symbol table of the executable.
896 build_vers_lib_pic "vers16a" vers16a.c vers16a "" vers16.map vers16a.ver vers16a.dsym ""
897 build_exec "vers16" vers16.c vers16 "" vers16a.so "" vers16.dsym ""
899 # Test a weak versioned symbol.
900 build_vers_lib_pic "vers17" vers17.c vers17 "" vers17.map vers17.ver vers17.dsym ""
901 build_vers_lib_pic "vers18" vers18.c vers18 vers17.so vers18.map vers18.ver vers18.dsym vers18.sym
902 build_exec "vers19" vers19.c vers19 "-Wl,-rpath,. -Wl,-rpath-link,." vers18.so vers19.ver vers19.dsym ""
904 build_vers_lib_no_pic "vers20a" vers20.c vers20a "" vers20.map vers20a.ver vers20.dsym ""
905 exec cp $tmpdir/vers20a.so $tmpdir/vers20b.so
906 build_vers_lib_no_pic "vers20" vers20.c vers20 "vers20a.so vers20b.so" vers20.map vers20.ver vers20.dsym ""
908 # Test .symver override.
909 build_vers_lib_pic "vers21" vers21.c vers21 "" vers21.map vers21.ver vers21.dsym vers21.sym
911 # Test moving default definition from one DSO to another.
912 build_vers_lib_pic "vers22a" vers22a.c vers22a "" vers22.map vers22a.ver vers22a.dsym vers22a.sym
913 build_vers_lib_pic "vers22b" vers22b.c vers22b "" vers22.map vers22b.ver vers22b.dsym ""
914 build_vers_lib_pic "vers22" vers22.c vers22 "vers22a.so vers22b.so" "" vers22.ver vers22.dsym ""
916 # Test versioned definitions in different files.
917 if [string match "yes" $pic] then {
924 build_vers_lib_no_pic "vers23a" vers23a.c vers23a "" vers23a.map vers23a.ver vers23a.dsym vers23a.sym
925 build_vers_lib_no_pic "vers23b" vers23b.c vers23b "" vers23b.map vers23b.ver vers23b.dsym ""
926 build_vers_lib_no_pic "vers23c" vers23b.c vers23c "vers23a.so" vers23b.map vers23c.ver vers23b.dsym ""
927 build_exec "vers23d" vers23.c vers23d "tmpdir/vers23a.so tmpdir/vers23c.so" "" vers23.ver vers23d.dsym ""
928 build_exec "vers23" vers23.c vers23 "tmpdir/vers23a.so tmpdir/vers23b.o tmpdir/vers23b.so" "" vers23.ver vers23.dsym ""
931 # Test .symver x,x@VERS.0
933 if [istarget sparc*-*-*] {
934 set as_pic_flags "-K PIC"
936 run_ld_link_tests [list "\"vers24a\"
937 \"-shared --version-script $srcdir/$subdir/vers24.map\"
938 \"$as_pic_flags $as_options\" {vers24a.c vers24b.c} { { readelf -Wrs vers24.rd } }
939 \"libvers24a.so\" \"-fpic\""]
940 run_ld_link_tests [list "\"vers24b\"
941 \"-shared --version-script $srcdir/$subdir/vers24.map\"
942 \"$as_pic_flags $as_options\" {vers24b.c vers24a.c} { { readelf -Wrs vers24.rd } }
943 \"libvers24b.so\" \"-fpic\""]
944 run_ld_link_tests [list "\"vers24c\"
945 \"-shared --version-script $srcdir/$subdir/vers24.map\"
946 \"$as_pic_flags $as_options\" {vers24c.c} { { readelf -Wrs vers24.rd } }
947 \"libvers24c.so\" \"-fpic\""]
949 # Test versioned definition vs. normal definition in different files.
950 if [string match "yes" $pic] then {
955 build_vers_lib_no_pic "vers25a" vers25a.c vers25a "" vers25a.map vers25a.ver vers25a.dsym ""
956 build_vers_lib_no_pic "vers25b1" vers25b.c vers25b1 "vers25a.o vers25a.so" "" vers25b.ver vers25b.dsym ""
957 build_vers_lib_no_pic "vers25b2" vers25b.c vers25b2 "vers25a.so vers25a.o" "" vers25b.ver vers25b.dsym ""
960 build_vers_lib_pic "vers26a" vers26a.c vers26a "" vers26a.map vers26a.ver vers26a.dsym ""
961 build_vers_lib_pic "vers26b1" vers26b.c vers26b1 "" "" vers26b.ver vers26b.dsym ""
962 build_vers_lib_pic "vers26b2" vers26b.c vers26b2 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
963 if [string match "yes" $pic] then {
966 build_vers_lib_no_pic "vers26b3" vers26b.c vers26b3 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
969 # Test versioned definition vs. hidden definition in different files.
970 if [string match "yes" $pic] then {
981 build_vers_lib_no_pic "vers27a" vers27a.c vers27a "" vers27a.map vers27a.ver vers27a.dsym ""
982 build_vers_lib_no_pic "vers27b" vers27b.c vers27b "" "" vers27b.ver vers27b.dsym ""
983 build_vers_lib_no_pic "vers27c1" vers27c.c vers27c1 "vers27b.o vers27a.so" "" vers27c.ver vers27c.dsym ""
984 build_vers_lib_no_pic "vers27c2" vers27c.c vers27c2 "vers27a.so vers27b.o" "" vers27c.ver vers27c.dsym ""
985 build_vers_lib_pic "vers27d1" vers27d1.c vers27d1 "" vers27a.map vers27d.ver vers27d.dsym vers27d.sym
986 build_vers_lib_pic "vers27d2" vers27d2.c vers27d2 "" "" vers27b.ver vers27b.dsym ""
987 build_executable "vers27d3" vers27d3.c vers27d3 "vers27b.o vers27d2.so vers27d1.so" "" vers27b.ver vers27b.dsym ""
988 build_vers_lib_pic "vers27d4" vers27d2.c vers27d4 "vers27a.so" "" vers27d4.ver vers27d4.dsym ""
989 build_executable "vers27d5" vers27d3.c vers27d5 "vers27d4.so vers27b.o vers27a.so" "" vers27b.ver vers27b.dsym ""
992 # Test weak versioned definition vs. strong definition in different
994 build_vers_lib_pic "vers28a" vers28a.c vers28a "" "" vers28a.ver vers28a.dsym ""
995 build_vers_lib_pic "vers28b" vers28b.c vers28b "" vers28b.map vers28b.ver vers28b.dsym ""
996 build_vers_lib_pic "vers28c" vers28c.c vers28c "vers28b.so vers28a.so" "" vers28c.ver vers28c.dsym ""
997 build_vers_lib_pic_flags "vers29" vers29.c vers29 "" "" vers29.ver vers29.dsym "" "--default-symver"
999 # Test #30 - test handling of symbol names global, local and extern in the
1001 build_vers_lib_pic "vers30" vers30.c vers30 "" vers30.map vers30.ver vers30.dsym ""
1003 # Test #31 -- quoted strings in version sections.
1004 build_vers_lib_pic "vers31" vers31.c vers31 "" vers31.map vers31.ver vers31.dsym ""
1006 # Test #32 -- linker --defsym
1007 build_vers_lib_pic "vers32a" vers32a.c vers32a "" vers32.map vers32a.ver vers32a.dsym ""
1008 build_vers_lib_pic_flags "vers32b" vers32b.c vers32b "vers32a.so" vers32.map vers32b.ver vers32b.dsym "" "--defsym foo=0"