mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
14 lines
251 B
Ruby
14 lines
251 B
Ruby
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
|