mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/mkexports.rb (each_export): skip garbages generated by VS2012's
nmake. reported and patched by Yoshida Masato at [Bug #7333] [ruby-dev:46484] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cb9beafd11
commit
198b740019
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Mon Nov 12 14:28:01 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/mkexports.rb (each_export): skip garbages generated by VS2012's
|
||||
nmake.
|
||||
reported and patched by Yoshida Masato at [Bug #7333] [ruby-dev:46484]
|
||||
|
||||
Sun Nov 11 18:58:55 2012 Tadayoshi Funaba <tadf@dotrb.org>
|
||||
|
||||
* test/date/test_date_{parse,strptime}.rb: changed the format of
|
||||
|
|
|
@ -115,7 +115,7 @@ class Exports::Mswin < Exports
|
|||
next unless l.sub!(/.*?\s(\(\)\s+)?External\s+\|\s+/, '')
|
||||
is_data = !$1
|
||||
if noprefix or /^[@_]/ =~ l
|
||||
next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,16}$/ =~ l ||
|
||||
next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,32}$/ =~ l ||
|
||||
/^_?(?:Init_|.*_threadptr_|DllMain\b)/ =~ l
|
||||
l.sub!(/^[@_]/, '') if /@\d+$/ !~ l
|
||||
elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1')
|
||||
|
|
Loading…
Add table
Reference in a new issue