From 8113f3fee4a962321b6107e58496afc6733c299c Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Tue, 21 Jan 2020 16:58:00 +0900 Subject: [PATCH] add default break points --- common.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.mk b/common.mk index 4cb305ffc7..86ec9c58dc 100644 --- a/common.mk +++ b/common.mk @@ -1210,6 +1210,8 @@ benchmark: miniruby$(EXEEXT) update-benchmark-driver PHONY run.gdb: echo set breakpoint pending on > run.gdb + echo b rb_assert_failure >> run.gdb + echo b rb_bug >> run.gdb echo b ruby_debug_breakpoint >> run.gdb echo '# handle SIGINT nostop' >> run.gdb echo '# handle SIGPIPE nostop' >> run.gdb