nghttp2/third-party/build_config.rb

15 lines
398 B
Ruby
Raw Permalink Normal View History

2015-09-05 11:10:10 +02:00
MRuby::Build.new do |conf|
toolchain :clang if ENV['CC'].include? "clang"
toolchain :gcc if ENV['CC'].include? "gcc"
2015-09-05 11:10:10 +02:00
# C++ project needs this. Without this, mruby exception does not
2022-01-13 21:21:56 +01:00
# properly destroy C++ object allocated on stack.
conf.enable_cxx_exception
2015-09-05 11:10:10 +02:00
conf.build_dir = ENV['BUILD_DIR']
# include the default GEMs
conf.gembox 'default'
conf.gem :core => 'mruby-eval'
end