diff options
| -rw-r--r-- | target/host-cxx.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/host-cxx.rb b/target/host-cxx.rb new file mode 100644 index 000000000..ae05e63c2 --- /dev/null +++ b/target/host-cxx.rb @@ -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 |
