Commit 547a29d2 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #3022 from zzak/enable-full-debug-travis-build

Enable full-debug build on travis using `MRB_ENABLE_DEBUG_HOOK`
parents 41c3d2fb 8454e900
......@@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf|
build_mrbc_exec
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|
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