diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-26 05:08:56 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-26 05:08:56 +0000 |
commit | 0bcf387286e7ff232a65c34639cae2ece0908264 (patch) | |
tree | d1e6d1e22049fa29fc0d0024806fa7468f22b401 | |
parent | 29085b2b0bb178f43e73a8e52f51a126a32e8fa4 (diff) | |
download | ruby-0bcf387286e7ff232a65c34639cae2ece0908264.tar.gz ruby-0bcf387286e7ff232a65c34639cae2ece0908264.tar.xz ruby-0bcf387286e7ff232a65c34639cae2ece0908264.zip |
* win32/mkexports.rb: support VC++.NET.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win32/mkexports.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Mar 26 14:04:47 2002 okabe katsuyuki <HGC02147@nifty.ne.jp> + + * win32/mkexports.rb: support VC++.NET. + Tue Mar 26 14:00:17 2002 Akinori MUSHA <knu@iDaemons.org> * ext/bigfloat/bigfloat.c: Fix the initializer's function name diff --git a/win32/mkexports.rb b/win32/mkexports.rb index f8205d9df..b20f41479 100644 --- a/win32/mkexports.rb +++ b/win32/mkexports.rb @@ -7,7 +7,7 @@ IO.foreach("|dumpbin -symbols " + objs.join(' ')) do |l| next if /^[0-9A-F]+ 0+ UNDEF / =~ l next unless l.sub!(/.*\sExternal\s+\|\s+/, '') if l.sub!(/^_/, '') - next if /@.*@/ =~ l + next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l elsif !l.sub!(/^(\S+) \([^@?]*\)$/, '\1') next end |