diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-06-05 20:43:18 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-06-05 20:43:18 +0000 |
commit | 7cda33a15efa285ef24ad6bbcc6c4dfc4d73a0cd (patch) | |
tree | e428d05d3e7975bd833ca1b374eef0b0a0faa151 /ld/testsuite/lib | |
parent | 422ea4b878539bcf1c356f9a212a6b08244c81f0 (diff) | |
download | gdb-7cda33a15efa285ef24ad6bbcc6c4dfc4d73a0cd.zip gdb-7cda33a15efa285ef24ad6bbcc6c4dfc4d73a0cd.tar.gz gdb-7cda33a15efa285ef24ad6bbcc6c4dfc4d73a0cd.tar.bz2 |
2000-06-05 H.J. Lu (hjl@gnu.org)
* lib/ld-lib.exp (default_ld_link): Redirect the linker output
to link_output and make it global.
* ld-elfvsb/elfvsb.exp (visibility_test): Add "hidden_undef",
"hidden_undef_def", "hidden_weak", "protected_undef",
"protected_undef_def" and "protected_weak".
(visibility_run): Likewise.
* ld-elfvsb/main.c: Likewise.
* ld-elfvsb/sh1.c: Likewise.
* ld-elfvsb/sh2.c: Likewise.
* ld-elfvsb/elfvsb.dat: Updated.
Diffstat (limited to 'ld/testsuite/lib')
-rw-r--r-- | ld/testsuite/lib/ld-lib.exp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index 417ccba..11185d8 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -115,7 +115,8 @@ proc default_ld_link { ld target objects } { # proc default_ld_simple_link { ld target objects } { global host_triplet - + global link_output + if { [which $ld] == 0 } then { perror "$ld does not exist" return 0 @@ -125,8 +126,8 @@ proc default_ld_simple_link { ld target objects } { verbose -log "$ld $flags -o $target $objects" - catch "exec $ld $flags -o $target $objects" exec_output - set exec_output [prune_warnings $exec_output] + catch "exec $ld $flags -o $target $objects" link_output + set exec_output [prune_warnings $link_output] # We don't care if we get a warning about a non-existent start # symbol, since the default linker script might use ENTRY. |