diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-08 19:49:02 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-08 19:49:02 +0000 |
commit | 3a2cf78faae5361be34e9d0f1229b077913296a3 (patch) | |
tree | dba19b50be10ad06924b80ff3a20ec64252c385c /bcc32 | |
parent | d81f47cad6a8570e3c80ed664666f2e60ad2bd99 (diff) |
* Makefile.in, win32/Makefile.sub (MINIRUBY): append MINIRUBYOPT.
* mkconfig.rb, ext/extmk.rb, lib/mkmf.rb, win32/mkexports.rb: suppress
warnings with $VERBOSE.
* win32/resource.rb: add more info.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bcc32')
-rw-r--r-- | bcc32/Makefile.sub | 2 | ||||
-rw-r--r-- | bcc32/mkexports.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 030a799e99..0c011d75c2 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -153,7 +153,7 @@ EXEEXT = .exe PROGRAM=$(RUBY_INSTALL_NAME)$(EXEEXT) WPROGRAM=$(RUBYW_INSTALL_NAME)$(EXEEXT) RUBYDEF = $(RUBY_SO_NAME).def -MINIRUBY = .\miniruby$(EXEEXT) +MINIRUBY = .\miniruby$(EXEEXT) $(MINIRUBYOPT) RUNRUBY = .\ruby$(EXEEXT) "$(srcdir)runruby.rb" --extout="$(EXTOUT)" -- ORGLIBPATH = $(LIB) diff --git a/bcc32/mkexports.rb b/bcc32/mkexports.rb index e34b441e2f..dc523e2541 100644 --- a/bcc32/mkexports.rb +++ b/bcc32/mkexports.rb @@ -1,5 +1,7 @@ #!./miniruby -s +$name = $library = $description = nil + SYM = {} STDIN.reopen(open("nul")) ARGV.each do |obj| |