aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose E. Marchesi <jose.marchesi@oracle.com>2013-10-05 08:09:19 +1000
committerBen Elliston <bje@gnu.org>2013-10-05 08:09:19 +1000
commit28a5e74afeb11090dc269bbf814eec306c7d4ec5 (patch)
treeb9841895a7ffa63419a551e41f863aef42a9f6d5
parent5481f29161477520c691d525653323b82fa47ad7 (diff)
downloaddejagnu-28a5e74afeb11090dc269bbf814eec306c7d4ec5.zip
dejagnu-28a5e74afeb11090dc269bbf814eec306c7d4ec5.tar.gz
dejagnu-28a5e74afeb11090dc269bbf814eec306c7d4ec5.tar.bz2
* baseboards/unix.exp: Add gdb settings to not use hardware
watchpoints in sparc64 running GNU/Linux. Signed-off-by: Ben Elliston <bje@gnu.org>
-rw-r--r--ChangeLog5
-rw-r--r--baseboards/unix.exp5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2d23388..a8ab512 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-05 Jose E. Marchesi <jose.marchesi@oracle.com>
+
+ * baseboards/unix.exp: Add gdb settings to not use hardware
+ watchpoints in sparc64 running GNU/Linux.
+
2013-06-17 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* runtest.exp (libdirs): New global variable.
diff --git a/baseboards/unix.exp b/baseboards/unix.exp
index cf64a9e..bbb4adf 100644
--- a/baseboards/unix.exp
+++ b/baseboards/unix.exp
@@ -35,3 +35,8 @@ if { [istarget "*-*-cygwin*"] } {
if { [istarget "alpha*-*"] } {
set_board_info ieee_multilib_flags "-mieee"
}
+
+# Hardware breakpoints are not supported in sparc64 on GNU/Linux
+if { [istarget "sparc64-*-linux-gnu"] } {
+ set_board_info gdb,no_hardware_watchpoints 1
+}