summaryrefslogtreecommitdiffhomepage
path: root/target
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-06-15 23:39:35 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:14 +0900
commit95169097fc44184f1decdab4c7caf05b4612597a (patch)
tree6bc7fd9828d640dfe524ac460912f82b011dbac1 /target
parent474545bba20f2726c1755a6d0d3172e1cf32edf9 (diff)
downloadmruby-95169097fc44184f1decdab4c7caf05b4612597a.tar.gz
mruby-95169097fc44184f1decdab4c7caf05b4612597a.zip
Add `/std:c++latest` option to VC `CXX_ABI` build.
Diffstat (limited to 'target')
-rw-r--r--target/appveyor.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/target/appveyor.rb b/target/appveyor.rb
index 25745daa8..f866f1ead 100644
--- a/target/appveyor.rb
+++ b/target/appveyor.rb
@@ -33,6 +33,8 @@ MRuby::Build.new('cxx_abi') do |conf|
toolchain :visualcpp
conf.gembox 'full-core'
+ # C compiler settings
+ conf.cc.flags << "/std:c++latest"
conf.compilers.each do |c|
c.defines += %w(MRB_GC_FIXED_ARENA)
end