12 lines
231 B
Ruby
Vendored
12 lines
231 B
Ruby
Vendored
MRuby::Build.new do |conf|
|
|
conf.toolchain
|
|
|
|
# include the default GEMs
|
|
conf.gembox 'default'
|
|
|
|
# C compiler settings
|
|
conf.cc.defines = %w(MRB_USE_DEBUG_HOOK)
|
|
conf.enable_debug
|
|
conf.enable_cxx_abi
|
|
conf.enable_test
|
|
end
|