Enable full-debug build on travis using MRB_ENABLE_DEBUG_HOOK

This commit is contained in:
Zachary Scott
2015-11-17 12:03:13 +09:00
parent acf2fb29cd
commit 8454e9006e
+11
View File
@@ -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