summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/so-impl-ld.exp
diff options
context:
space:
mode:
authorMichael Chastain <mec@google.com>2003-12-05 01:53:46 +0000
committerMichael Chastain <mec@google.com>2003-12-05 01:53:46 +0000
commitb74b6d0b9f1e7fa82b548ac6122726eb825be96d (patch)
tree0611f0ed335e66f61d1e291acfe5edd48da3ec0c /gdb/testsuite/gdb.base/so-impl-ld.exp
parent149d821b1e3bb285001cde4b8b42e006e26fca71 (diff)
2003-12-04 Michael Chastain <mec.gnu@mindspring.com>
Partial fix for PR testsuite/1456. * gdb.base/so-impl-ld.exp: Replace reference to gcc_compiled with call to test_compiler_info.
Diffstat (limited to 'gdb/testsuite/gdb.base/so-impl-ld.exp')
-rw-r--r--gdb/testsuite/gdb.base/so-impl-ld.exp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.base/so-impl-ld.exp b/gdb/testsuite/gdb.base/so-impl-ld.exp
index e7013d95c6..bcc7120c66 100644
--- a/gdb/testsuite/gdb.base/so-impl-ld.exp
+++ b/gdb/testsuite/gdb.base/so-impl-ld.exp
@@ -1,4 +1,4 @@
-# Copyright 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+# Copyright 1997, 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -55,15 +55,15 @@ if [get_compiler_info ${binfile}] {
#remote_exec build "$CC -g +z -c ${libfile}1.c -o ${libfile}1.o"
-if {$gcc_compiled == 0} {
+if { [test_compiler_info gcc-*-*] } then {
+ set additional_flags "additional_flags=-fpic"
+} else {
if [istarget "hppa*-hp-hpux*"] then {
set additional_flags "additional_flags=+z"
} else {
# don't know that the compiler is, hope for the best...
set additional_flags ""
}
-} else {
- set additional_flags "additional_flags=-fpic"
}
if {[gdb_compile "${srcdir}/${subdir}/${libfile}1.c" "${libfile}1.o" object [list debug $additional_flags]] != ""} {