diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-06-27 17:38:24 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 16:21:22 +0900 |
| commit | 639946a006c29f648551512af8aa0bb0cd969412 (patch) | |
| tree | 772fd60110e0492a42df513106d9e150b932645c /target/appveyor.rb | |
| parent | fb5e8ab6d5fa9b7ca08c7b66ac8038940534db70 (diff) | |
| download | mruby-639946a006c29f648551512af8aa0bb0cd969412.tar.gz mruby-639946a006c29f648551512af8aa0bb0cd969412.zip | |
Enable method cache by default.
Introduced `MRB_NO_METHOD_CACHE` which is inverse of `MRB_METHOD_CACHE`
that should be enabled intestinally. In addition, the default cache is
made bigger (128 -> 256).
Diffstat (limited to 'target/appveyor.rb')
| -rw-r--r-- | target/appveyor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/appveyor.rb b/target/appveyor.rb index 2336935c9..6a8dbbf4a 100644 --- a/target/appveyor.rb +++ b/target/appveyor.rb @@ -10,7 +10,7 @@ MRuby::Build.new('full-debug') do |conf| # include all core GEMs conf.gembox 'full-core' - conf.cc.defines += %w(MRB_GC_STRESS MRB_METHOD_CACHE MRB_ENABLE_DEBUG_HOOK) + conf.cc.defines += %w(MRB_GC_STRESS MRB_ENABLE_DEBUG_HOOK) setup_option(conf) conf.enable_test |
