summaryrefslogtreecommitdiffhomepage
path: root/travis_config.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-11-24 13:06:23 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-11-24 13:06:23 -0800
commit91a4eb57591222fc3c2be043e0a34a7c39d479b5 (patch)
treece0f877cb9eb817501c9f75ba0184653924ffabd /travis_config.rb
parent28a159c721b1e157b90171830c3a739fcd87a8c9 (diff)
parent23a412830d98bf2c90ccb7c1e090cd76d80ebefd (diff)
downloadmruby-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.rb11
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