summaryrefslogtreecommitdiffhomepage
path: root/build_config.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-06-19 17:17:24 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-06-20 15:24:46 +0900
commit54cd2623b3c93c26d5496e6b5c546c99639b3d3b (patch)
tree8a4694fbdbd0e41d0130f043ca4b80cc078c769e /build_config.rb
parent58d819f317ce0e99f4738043ee0b989b3f4a43fa (diff)
downloadmruby-54cd2623b3c93c26d5496e6b5c546c99639b3d3b.tar.gz
mruby-54cd2623b3c93c26d5496e6b5c546c99639b3d3b.zip
Turn off `enable_debug` flag in `build_config.rb` by default.
This will improve the default performance of mruby; fix #4045
Diffstat (limited to 'build_config.rb')
-rw-r--r--build_config.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_config.rb b/build_config.rb
index 1429837be..7f52b5ee9 100644
--- a/build_config.rb
+++ b/build_config.rb
@@ -8,7 +8,8 @@ MRuby::Build.new do |conf|
toolchain :gcc
end
- enable_debug
+ # Turn on `enable_debug` for better debugging
+ # enable_debug
# Use mrbgems
# conf.gem 'examples/mrbgems/ruby_extension_example'