diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | baseboards/unix.exp | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -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 +} |