• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

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

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

mrubyを超漢字で動作させる


コミットメタ情報

リビジョン547a29d2cafcfe62e65290154f87371d190a501c (tree)
日時2015-11-17 12:51:01
作者Yukihiro "Matz" Matsumoto <matz@ruby...>
コミッター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

変更サマリ

差分

--- 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