diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-24 13:06:23 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-24 13:06:23 -0800 |
| commit | 91a4eb57591222fc3c2be043e0a34a7c39d479b5 (patch) | |
| tree | ce0f877cb9eb817501c9f75ba0184653924ffabd /travis_config.rb | |
| parent | 28a159c721b1e157b90171830c3a739fcd87a8c9 (diff) | |
| parent | 23a412830d98bf2c90ccb7c1e090cd76d80ebefd (diff) | |
| download | mruby-91a4eb57591222fc3c2be043e0a34a7c39d479b5.tar.gz mruby-91a4eb57591222fc3c2be043e0a34a7c39d479b5.zip | |
Merge pull request #1595 from take-cheeze/filename_realloc_fix
get_filename_table_size realloc fix.
Diffstat (limited to 'travis_config.rb')
| -rw-r--r-- | travis_config.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/travis_config.rb b/travis_config.rb index 89aef9f55..360cf3337 100644 --- a/travis_config.rb +++ b/travis_config.rb @@ -1,7 +1,16 @@ +MRuby::Build.new('debug') do |conf| + toolchain :gcc + enable_debug + + # include all core GEMs + conf.gembox 'full-core' + conf.cc.defines = %w(MRB_GC_FIXED_ARENA) +end + MRuby::Build.new do |conf| toolchain :gcc # include all core GEMs conf.gembox 'full-core' - conf.cc.defines = %w(MRB_DEBUG MRB_GC_FIXED_ARENA) + conf.cc.defines = %w(MRB_GC_FIXED_ARENA) end |
