aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--common.mk10
-rw-r--r--version.h6
3 files changed, 16 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 2d6d1ecb75..f6eb54ea90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Feb 26 00:54:36 2007 Koichi Sasada <ko1@atdot.net>
+
+ * 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 <ko1@atdot.net>
* win32/Makefile.sub: enable -Zi (debug) option.
diff --git a/common.mk b/common.mk
index e2618db36f..293966d1c5 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 82429e6f0b..699bdebd4e 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[];