Commit b717cc78 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Respect CFLAGS, CXXFLAGS, and LDFLAGS env vars in appveyor_config.rb

[skip travis]
parent 15c63688
def setup_option(conf)
conf.compilers.each{|c| c.flags[0].delete("/Zi")}
conf.linker.flags << "/DEBUG:NONE"
conf.cc.flags[0].delete("/Zi") unless ENV['CFLAGS']
conf.cxx.flags[0].delete("/Zi") unless ENV['CFLAGS'] || ENV['CXXFLAGS']
conf.linker.flags << "/DEBUG:NONE" unless ENV['LDFLAGS']
end
MRuby::Build.new('full-debug') do |conf|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment