ruby-changes:8144
From: yugui <ko1@a...>
Date: Sat, 4 Oct 2008 15:36:36 +0900 (JST)
Subject: [ruby-changes:8144] Ruby:r19672 (trunk): * common.mk (gdb-ruby): new target. it runs ruby under controlled by
yugui 2008-10-04 15:36:20 +0900 (Sat, 04 Oct 2008) New Revision: 19672 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19672 Log: * common.mk (gdb-ruby): new target. it runs ruby under controlled by gdb. * common.mk (dist): accepts RELNAME variable as the second argument of make-snapshot.rb. Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 19671) +++ ChangeLog (revision 19672) @@ -1,3 +1,11 @@ +Sat Oct 4 15:33:26 2008 Yuki Sonoda (Yugui) <yugui@y...> + + * common.mk (gdb-ruby): new target. it runs ruby under controlled by + gdb. + + * common.mk (dist): accepts RELNAME variable as the second argument of + make-snapshot.rb. + Sat Oct 4 12:17:46 2008 Keiju Ishitsuka <keiju@r...> * lib/irb/irb/ext/save-history.rb: change load_history using File.expand_path. see [ruby-dev:36660]. Thanks Kouhei Sutou. Index: common.mk =================================================================== --- common.mk (revision 19671) +++ common.mk (revision 19672) @@ -715,8 +715,11 @@ gdb: miniruby$(EXEEXT) run.gdb PHONY gdb -x run.gdb --quiet --args $(MINIRUBY) $(srcdir)/test.rb +gdb-ruby: $(PROGRAM) run.gdb PHONY + gdb -x run.gdb --quiet --args $(PROGRAM) $(srcdir)/test.rb + dist: - $(BASERUBY) $(srcdir)/tool/make-snapshot . + $(BASERUBY) $(srcdir)/tool/make-snapshot tmp $(RELNAME) up: @$(VCS) up "$(srcdir)" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/