Add `/std:c++latest` option to VC `CXX_ABI` build.

parent 474545bb
...@@ -33,6 +33,8 @@ MRuby::Build.new('cxx_abi') do |conf| ...@@ -33,6 +33,8 @@ MRuby::Build.new('cxx_abi') do |conf|
toolchain :visualcpp toolchain :visualcpp
conf.gembox 'full-core' conf.gembox 'full-core'
# C compiler settings
conf.cc.flags << "/std:c++latest"
conf.compilers.each do |c| conf.compilers.each do |c|
c.defines += %w(MRB_GC_FIXED_ARENA) c.defines += %w(MRB_GC_FIXED_ARENA)
end end
......
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