[前][次][番号順一覧][スレッド一覧]

ruby-changes:44091

From: naruse <ko1@a...>
Date: Thu, 15 Sep 2016 01:11:38 +0900 (JST)
Subject: [ruby-changes:44091] naruse:r56164 (trunk): Add $(srcdir) for lib directory

naruse	2016-09-15 01:03:28 +0900 (Thu, 15 Sep 2016)

  New Revision: 56164

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56164

  Log:
    Add $(srcdir) for lib directory

  Modified files:
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 56163)
+++ common.mk	(revision 56164)
@@ -963,17 +963,17 @@ OPTS = https://github.com/ruby/ruby/blob/trunk/common.mk#L963
 # This command compares trunk and built-ruby and 2.2.2
 benchmark: miniruby$(EXEEXT) PHONY
 	$(BASERUBY) $(srcdir)/benchmark/driver.rb -v \
-	            --executables="$(COMPARE_RUBY) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \
+	            --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/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) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \
+	            --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/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) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \
+	            --executables="$(COMPARE_RUBY) -I$(srcdir)/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \
 	            --pattern='bmx_' --directory=$(srcdir)/benchmark $(OPTS)
 
 run.gdb:

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]