diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2003-05-08 05:10:47 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2003-05-08 05:10:47 +0000 |
commit | 0ae911fecd61c0c5cc0513d6d6a8af4dcf8ccbd0 (patch) | |
tree | b6cac3113ee9fe85eb63e7db93150287339e7ff2 /ld/testsuite/ld-elfvers/vers.exp | |
parent | 1750fa042b515e5e04f2f601e57948ff7eff0c2d (diff) | |
download | gdb-0ae911fecd61c0c5cc0513d6d6a8af4dcf8ccbd0.zip gdb-0ae911fecd61c0c5cc0513d6d6a8af4dcf8ccbd0.tar.gz gdb-0ae911fecd61c0c5cc0513d6d6a8af4dcf8ccbd0.tar.bz2 |
2003-05-07 H.J. Lu <hongjiu.lu@intel.com>
* ld-elfvers/vers.exp (build_binary): Support build exeutable.
(build_binary): Renamed from ...
(build_vers_lib): This.
(build_vers_lib_no_pic): Updated.
(build_vers_lib_pic): Likewise.
Add vers27d1, vers27d2 and vers27d3 to test versioned
definition for hidden symbol referenced by a DSO.
* ld-elfvers/vers27d.dsym: New file.
* ld-elfvers/vers27d.sym: Likewise.
* ld-elfvers/vers27d.ver: Likewise.
* ld-elfvers/vers27d1.c: Likewise.
* ld-elfvers/vers27d2.c: Likewise.
* ld-elfvers/vers27d3.c: Likewise.
Diffstat (limited to 'ld/testsuite/ld-elfvers/vers.exp')
-rw-r--r-- | ld/testsuite/ld-elfvers/vers.exp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/ld/testsuite/ld-elfvers/vers.exp b/ld/testsuite/ld-elfvers/vers.exp index c28733e..97cfaf3 100644 --- a/ld/testsuite/ld-elfvers/vers.exp +++ b/ld/testsuite/ld-elfvers/vers.exp @@ -497,7 +497,7 @@ proc objdump_versionstuff { objdump object expectfile } { } } -proc build_vers_lib { pic test source libname other mapfile verexp versymexp symexp } { +proc build_binary { shared pic test source libname other mapfile verexp versymexp symexp } { global ld global srcdir global subdir @@ -508,7 +508,6 @@ proc build_vers_lib { pic test source libname other mapfile verexp versymexp sym global objdump global CC global CFLAGS - global shared global script if ![ld_compile "$CC -S $pic $CFLAGS" $srcdir/$subdir/$source $tmpdir/$libname.s] { @@ -565,13 +564,19 @@ proc build_vers_lib { pic test source libname other mapfile verexp versymexp sym } +proc build_executable { test source libname other mapfile verexp versymexp symexp } { + build_binary "" "" $test $source $libname $other $mapfile $verexp $versymexp $symexp +} + proc build_vers_lib_no_pic { test source libname other mapfile verexp versymexp symexp } { - build_vers_lib "" $test $source $libname $other $mapfile $verexp $versymexp $symexp + global shared + build_binary $shared "" $test $source $libname $other $mapfile $verexp $versymexp $symexp } proc build_vers_lib_pic { test source libname other mapfile verexp versymexp symexp } { global picflag - build_vers_lib $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp + global shared + build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp } proc test_ldfail { test flag source execname other mapfile whyfail } { @@ -929,3 +934,6 @@ build_vers_lib_no_pic "vers27a" vers27a.c vers27a "" vers27a.map vers27a.ver ver build_vers_lib_no_pic "vers27b" vers27b.c vers27b "" "" vers27b.ver vers27b.dsym "" build_vers_lib_no_pic "vers27c1" vers27c.c vers27c1 "vers27b.o vers27a.so" "" vers27c.ver vers27c.dsym "" build_vers_lib_no_pic "vers27c2" vers27c.c vers27c2 "vers27a.so vers27b.o" "" vers27c.ver vers27c.dsym "" +build_vers_lib_pic "vers27d1" vers27d1.c vers27d1 "" vers27a.map vers27d.ver vers27d.dsym vers27d.sym +build_vers_lib_pic "vers27d2" vers27d2.c vers27d2 "" "" vers27b.ver vers27b.dsym "" +build_executable "vers27d3" vers27d3.c vers27d3 "vers27b.o vers27d2.so vers27d1.so" "" vers27b.ver vers27b.dsym "" |