From b9010f7a196729fefe1de05890afbf7a08445537 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 25 Feb 2007 15:58:27 +0000 Subject: * common.mk: change "gdb" rule. You can debug miniruby with $(srcdir)/test.rb on gdb by this rule (type "make gdb"). If you write break points to "breakpoints.gdb" on $srcdir, gdb runs with this file. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ common.mk | 10 ++++++---- version.h | 6 +++--- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2d6d1ecb7..f6eb54ea9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Feb 26 00:54:36 2007 Koichi Sasada + + * common.mk: change "gdb" rule. You can debug miniruby with + $(srcdir)/test.rb on gdb by this rule (type "make gdb"). + If you write break points to "breakpoints.gdb" on $srcdir, + gdb runs with this file. + Sun Feb 25 11:46:58 2007 Koichi Sasada * win32/Makefile.sub: enable -Zi (debug) option. diff --git a/common.mk b/common.mk index e2618db36..293966d1c 100644 --- a/common.mk +++ b/common.mk @@ -617,10 +617,12 @@ vmasm: vm.$(ASMEXT) # vm.o : CFLAGS += -fno-crossjumping run.gdb: - echo b ruby_debug_breakpoint > run.gdb - # echo handle SIGINT nostop >> run.gdb - # echo handle SIGPIPE nostop >> run.gdb - echo run >> run.gdb + echo b ruby_debug_breakpoint > run.gdb + echo '# handle SIGINT nostop' >> run.gdb + echo '# handle SIGPIPE nostop' >> run.gdb + echo '# b rb_longjmp' >> run.gdb + echo source $(srcdir)/breakpoints.gdb >> run.gdb + echo run >> run.gdb gdb: miniruby$(EXEEXT) run.gdb PHONY gdb -x run.gdb --quiet --args $(MINIRUBY) -I$(srcdir)/lib $(srcdir)/test.rb diff --git a/version.h b/version.h index 82429e6f0..699bdebd4 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2007-02-25" +#define RUBY_RELEASE_DATE "2007-02-26" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20070225 +#define RUBY_RELEASE_CODE 20070226 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_MONTH 2 -#define RUBY_RELEASE_DAY 25 +#define RUBY_RELEASE_DAY 26 RUBY_EXTERN const char ruby_version[]; RUBY_EXTERN const char ruby_release_date[]; -- cgit