diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 2f4799ea92..957cf90dfb 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2009-10-02 Pierre Muller + Pedro Alves + + * lib/gdb.exp (gdb_compile): Avoid adding + gdb_saved_unbuffered_mode_obj if -nostdlib option is used. + 2009-10-01 Pierre Muller * src/gdb/testsuite/gdb.base/shr1.c: Use %p in format string. diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 0c93a73db6..af69c68aa3 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -1824,7 +1824,11 @@ proc gdb_compile {source dest type options} { # reverse link order. In that case, we can use ldflags to # avoid copying the object file to the host multiple # times. - lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj" + # This object can only be added if standard libraries are + # used. Thus, we need to disable it if -nostdlib option is used + if {[lsearch -regexp $options "-nostdlib"] < 0 } { + lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj" + } } }