1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Ignore objects from the "missing" directory

This commit is contained in:
Nobuyoshi Nakada 2020-12-27 14:05:24 +09:00
parent 0957814c27
commit 366b58d7ca
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -18,8 +18,15 @@ count = 0
col = Colorize.new
config_code = File.read(config)
REPLACE = config_code.scan(/\bAC_(?:REPLACE|CHECK)_FUNCS?\((\w+)/).flatten
REPLACE << 'memcmp' if /\bAC_FUNC_MEMCMP\b/ =~ config_code
# REPLACE << 'memcmp' if /\bAC_FUNC_MEMCMP\b/ =~ config_code
REPLACE.push('main', 'DllMain')
missing = File.dirname(config) + "/missing/"
ARGV.reject! do |n|
unless (src = Dir.glob(missing + File.basename(n, ".*") + ".[cS]")).empty?
puts "Ignore #{n} because of #{src.map {|s| File.basename(s)}.join(', ')} under missing"
true
end
end
print "Checking leaked global symbols..."
STDOUT.flush
IO.foreach("|#{NM} -Pgp #{ARGV.join(' ')}") do |line|