• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


コミットメタ情報

リビジョン8454e9006e60751e3ecfb8f57c1148d532b80829 (tree)
日時2015-11-17 12:03:13
作者Zachary Scott <e@zzak...>
コミッターZachary Scott

ログメッセージ

Enable full-debug build on travis using MRB_ENABLE_DEBUG_HOOK

変更サマリ

差分

--- a/travis_config.rb
+++ b/travis_config.rb
@@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf|
1212 build_mrbc_exec
1313 end
1414
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+
1526 MRuby::Build.new do |conf|
1627 toolchain :gcc
1728