mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
20 lines
471 B
Ruby
20 lines
471 B
Ruby
MRuby::Build.new('debug') do |conf|
|
|
toolchain :gcc
|
|
enable_debug
|
|
|
|
# include all core GEMs
|
|
conf.gembox 'full-core'
|
|
conf.cc.flags += %w(-Werror=declaration-after-statement)
|
|
conf.cc.defines += %w(MRB_GC_FIXED_ARENA)
|
|
end
|
|
|
|
MRuby::Build.new do |conf|
|
|
toolchain :gcc
|
|
|
|
# include all core GEMs
|
|
conf.gembox 'full-core'
|
|
conf.cc.flags += %w(-Werror=declaration-after-statement)
|
|
conf.cc.defines = %w(MRB_DEBUG MRB_GC_FIXED_ARENA)
|
|
conf.enable_bintest = true
|
|
end
|