forked from Imagelibrary/binutils-gdb
[gdb/testsuite] Use shlib gdb_compile option in gdb.base/skip-solib.exp
In test-case gdb.base/skip-solib.exp the linking against a shared library is
done manually:
...
if {[gdb_compile "${binfile_main}.o" "${binfile_main}" executable \
[list debug "additional_flags=-L$testobjdir" \
"additional_flags=-l${test}" \
"ldflags=-Wl,-rpath=$testobjdir"]] != ""} {
...
Instead, use the shlib gdb_compile option such that we simply have:
...
[list debug shlib=$binfile_lib]] != ""} {
...
Tested on x86_64-linux.
This commit is contained in:
@@ -51,9 +51,7 @@ if {[gdb_compile "${srcdir}/${subdir}/${srcfile_main}" "${binfile_main}.o" \
|
||||
|
||||
set testobjdir [standard_output_file {}]
|
||||
if {[gdb_compile "${binfile_main}.o" "${binfile_main}" executable \
|
||||
[list debug "additional_flags=-L$testobjdir" \
|
||||
"additional_flags=-l${test}" \
|
||||
"ldflags=-Wl,-rpath=$testobjdir"]] != ""} {
|
||||
[list debug shlib=$binfile_lib]] != ""} {
|
||||
return -1
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user