aboutsummaryrefslogtreecommitdiffstats
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-09 22:20:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-09 22:20:12 +0000
commit536e266e58e6fda550e781d7a88317fdfe149cfa (patch)
tree5f8b7d80d8817989496ab5eb36cd1c64815de0be /win32/mkexports.rb
parent5ddcc93a3f9ffaeed5a78aa0fa7a847880102600 (diff)
downloadruby-536e266e58e6fda550e781d7a88317fdfe149cfa.tar.gz
* cygwin/GNUmakefile.in (scriptbin): make executable file from
scripts with stub. * ruby.c (load_file_internal): assume xflag for exe file as well as no-shebang file. * tool/rbinstall.rb: install script programs. * win32/mkexports.rb (Exports#initialize): alias ruby_sysinit for stub. * win32/stub.c: stub for scripts. [EXPERIMENTAL] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/mkexports.rb')
-rwxr-xr-xwin32/mkexports.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index e96f9339d0..f6d40f8cfb 100755
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -36,6 +36,7 @@ class Exports
def initialize(objs)
syms = {}
winapis = {}
+ syms["ruby_sysinit_real"] = "ruby_sysinit"
each_export(objs) do |internal, export|
syms[internal] = export
winapis[$1] = internal if /^_?(rb_w32_\w+)(?:@\d+)?$/ =~ internal