Add target/host-cxx.rb to compile mruby with cxx_abi.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-08-07 23:00:15 +09:00
parent 67d92c48b5
commit 3ad6bbc40c
+13
View File
@@ -0,0 +1,13 @@
MRuby::Build.new do |conf|
toolchain :gcc
enable_debug
# include the default GEMs
conf.gembox 'full-core'
# C compiler settings
conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK)
conf.enable_debug
conf.enable_cxx_abi
conf.enable_test
end