Commit 8454e900 authored by Zachary Scott's avatar Zachary Scott

Enable full-debug build on travis using `MRB_ENABLE_DEBUG_HOOK`

parent acf2fb29
...@@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf| ...@@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf|
build_mrbc_exec build_mrbc_exec
end end
MRuby::Build.new('full-debug') do |conf|
toolchain :gcc
enable_debug
# include all core GEMs
conf.gembox 'full-core'
conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK)
conf.enable_test
end
MRuby::Build.new do |conf| MRuby::Build.new do |conf|
toolchain :gcc toolchain :gcc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment