gdb/testsuite/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 12 Oct 2010 18:12:49 +0000 (18:12 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 12 Oct 2010 18:12:49 +0000 (18:12 +0000)
* gdb.base/break-interp.exp: Use ldlags for linking flags.
* gdb.base/prelink.exp: Likewise.
* gdb.base/solib-nodir.exp: Likewise.
* lib/gdb.exp (gdb_compile) <*-*-openbsd*>
(gdb_compile) <shlib_load>: Use ldlags for linking flags.
* lib/prelink-support.exp (build_executable_own_libs): Likewise.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/break-interp.exp
gdb/testsuite/gdb.base/prelink.exp
gdb/testsuite/gdb.base/solib-nodir.exp
gdb/testsuite/lib/gdb.exp
gdb/testsuite/lib/prelink-support.exp

index 653edcdb1bdf7911f99e1f39b8596d5af174b445..5ad723f8dcbc5ae1af2b353b380d248218b19441 100644 (file)
@@ -1,3 +1,12 @@
+2010-10-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdb.base/break-interp.exp: Use ldlags for linking flags.
+       * gdb.base/prelink.exp: Likewise.
+       * gdb.base/solib-nodir.exp: Likewise.
+       * lib/gdb.exp (gdb_compile) <*-*-openbsd*>
+       (gdb_compile) <shlib_load>: Use ldlags for linking flags.
+       * lib/prelink-support.exp (build_executable_own_libs): Likewise.
+
 2010-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * break-interp.exp (test_ld): Use two separate gdb_expect statements
index 904fbcf948e16482494f67bf686a27f0d3ca676f..d3bda442e2a0122fb17b1f54ad69a269e018cfda 100644 (file)
@@ -35,7 +35,7 @@ if [get_compiler_info ${binfile_lib}] {
 
 # Use -soname so that the new library gets copied by build_executable_own_libs.
 
-if {[gdb_compile_shlib ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} [list debug additional_flags=-Wl,-soname,${test}.so]] != ""} {
+if {[gdb_compile_shlib ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} [list debug ldflags=-Wl,-soname,${test}.so]] != ""} {
     return -1
 }
 
@@ -622,7 +622,7 @@ foreach ldprelink {NO YES} {
                    set pf_prefix $old_binprefix
                    lappend pf_prefix "$binname:"
 
-                   set opts "additional_flags=-Wl,$binfile_lib,-rpath,[file dirname $binfile_lib]"
+                   set opts "ldflags=-Wl,$binfile_lib,-rpath,[file dirname $binfile_lib]"
                    if {$binsepdebug != "NO"} {
                        lappend opts {debug}
                    }
index fe88d257069529e8a296821d208a9a4f352ea610..46eda0110d14665d4ff5392a81a06fe7387a5d9b 100644 (file)
@@ -44,7 +44,7 @@ set libfile ${objdir}/${subdir}/${testfile}.so
 
 # Use -soname so that the new library gets copied by build_executable_own_libs.
 
-if { [gdb_compile_shlib "${srcdir}/${subdir}/${libsrcfile}" "${libfile}" [list debug "additional_flags=-Wl,-soname,[file tail ${libfile}]"]] != ""} {
+if { [gdb_compile_shlib "${srcdir}/${subdir}/${libsrcfile}" "${libfile}" [list debug "ldflags=-Wl,-soname,[file tail ${libfile}]"]] != ""} {
     # If creating the shared library fails, maybe we don't have the right tools
     return -1
 }
@@ -52,7 +52,7 @@ if { [gdb_compile_shlib "${srcdir}/${subdir}/${libsrcfile}" "${libfile}" [list d
 set srcfile ${testfile}.c
 set executable ${testfile}t
 set binfile ${objdir}/${subdir}/${executable}
-set prelink_args [build_executable_own_libs ${testfile}.exp $executable $srcfile [list debug "additional_flags=-Wl,${libfile},-rpath,[file dirname ${libfile}]"]]
+set prelink_args [build_executable_own_libs ${testfile}.exp $executable $srcfile [list debug "ldflags=-Wl,${libfile},-rpath,[file dirname ${libfile}]"]]
 if {$prelink_args == ""} {
     return -1
 }
index 5c3f46e1a31da0220c024f07a7d51f4b7c832be3..e50f48907c01831ce78c665bda1dfdeb8c8e514c 100644 (file)
@@ -32,7 +32,7 @@ set binfile ${objdir}/${subdir}/${executable}
 
 # build the first test case
 if { [get_compiler_info unused]
-     || [gdb_compile_shlib "${srcdir}/${subdir}/${srclibfile}" "${binlibfile}" [list debug additional_flags=-Wl,-soname,${binlibfilebase}]] != ""
+     || [gdb_compile_shlib "${srcdir}/${subdir}/${srclibfile}" "${binlibfile}" [list debug ldflags=-Wl,-soname,${binlibfilebase}]] != ""
      || [gdb_gnu_strip_debug $binlibfile]
      || [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug}] != ""
      || [gdb_compile "${objfile} ${binlibfile}" "${binfile}" executable {}] != "" } {
index ce179b25f4ef153e791f036f8ff05e18bb8633b6..63e68d3e23173d704475eb4e72c562eb7f6a12ff 100644 (file)
@@ -2010,7 +2010,7 @@ proc gdb_compile {source dest type options} {
              || [istarget hppa*-*-hpux*])} {
            # Do not need anything.
        } elseif { [istarget *-*-openbsd*] } {
-           lappend new_options "additional_flags=-Wl,-rpath,${outdir}"
+           lappend new_options "ldflags=-Wl,-rpath,${outdir}"
        } elseif { [istarget arm*-*-symbianelf*] } {
            if { $shlib_load } {
                lappend new_options "libs=-ldl"
@@ -2019,7 +2019,7 @@ proc gdb_compile {source dest type options} {
            if { $shlib_load } {
                lappend new_options "libs=-ldl"
            }
-           lappend new_options "additional_flags=-Wl,-rpath,\\\$ORIGIN"
+           lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
        }
     }
     set options $new_options
index 6dd95a03b39f802a5dfdfa47177144991bac8680..548824e66a0082902f786b67e0fbb200af820387 100644 (file)
@@ -164,7 +164,7 @@ proc build_executable_own_libs {testname executable sources options {interp ""}
 
     # Do not lappend it so that "-rpath $dir" overrides any possible "-rpath"s
     # specified by the caller to be able to link it for ldd" above.
-    set options [linsert $options 0 "additional_flags=-Wl,--dynamic-linker,$interp,-rpath,$dir"]
+    set options [linsert $options 0 "ldflags=-Wl,--dynamic-linker,$interp,-rpath,$dir"]
 
     if {[build_executable $testname $executable $sources $options] == -1} {
        return ""
This page took 0.049047 seconds and 4 git commands to generate.