mrubyを超漢字で動作させる
修订版 | 8454e9006e60751e3ecfb8f57c1148d532b80829 (tree) |
---|---|
时间 | 2015-11-17 12:03:13 |
作者 | Zachary Scott <e@zzak...> |
Commiter | Zachary Scott |
Enable full-debug build on travis using MRB_ENABLE_DEBUG_HOOK
@@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf| | ||
12 | 12 | build_mrbc_exec |
13 | 13 | end |
14 | 14 | |
15 | +MRuby::Build.new('full-debug') do |conf| | |
16 | + toolchain :gcc | |
17 | + enable_debug | |
18 | + | |
19 | + # include all core GEMs | |
20 | + conf.gembox 'full-core' | |
21 | + conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK) | |
22 | + | |
23 | + conf.enable_test | |
24 | +end | |
25 | + | |
15 | 26 | MRuby::Build.new do |conf| |
16 | 27 | toolchain :gcc |
17 | 28 |