diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-18 05:23:12 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-18 05:23:12 +0000 |
commit | b9e96915ba7bcb0554615817dcb866446dbef55a (patch) | |
tree | 5b22920593b5b7b6226a2f590e37442e97fcdda4 | |
parent | 26a1ebf0737b07507d104853c116e7dc3423e112 (diff) |
common.mk: use EXTOUT to benchmark [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | common.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -963,17 +963,17 @@ OPTS = # This command compares trunk and built-ruby and 2.2.2 benchmark: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I$(EXTOUT)/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern='bm_' --directory=$(srcdir)/benchmark $(OPTS) benchmark-each: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I$(EXTOUT)/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern=$(ITEM) --directory=$(srcdir)/benchmark $(OPTS) tbench: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I$(EXTOUT)/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern='bmx_' --directory=$(srcdir)/benchmark $(OPTS) run.gdb: |