Add missing build_config.rb

This commit is contained in:
Tatsuhiro Tsujikawa 2015-09-05 18:10:10 +09:00
parent d076d54f67
commit 6dcfe1c3f8
1 changed files with 14 additions and 0 deletions

14
third-party/build_config.rb vendored Normal file
View File

@ -0,0 +1,14 @@
MRuby::Build.new do |conf|
# TODO use same compilers configured in configure script
toolchain :clang
# C++ project needs this. Without this, mruby exception does not
# properly destory C++ object allocated on stack.
conf.enable_cxx_abi
conf.build_dir = ENV['BUILD_DIR']
# include the default GEMs
conf.gembox 'default'
conf.gem :core => 'mruby-eval'
end