diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-29 11:53:10 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-29 11:53:10 +0900 |
| commit | 385cebe0b9fd31d96b9586c7c71b2735de758894 (patch) | |
| tree | 453093916232f0a45a0a8c09369229a9fd026a62 | |
| parent | 3847c7eb64229b13b72e3a15f30b04b1f9a09c3e (diff) | |
| download | mruby-385cebe0b9fd31d96b9586c7c71b2735de758894.tar.gz mruby-385cebe0b9fd31d96b9586c7c71b2735de758894.zip | |
Use `default' gembox by default.
I changed to use `full-core` gembox for debugging. It should have been
reverted before `mruby3` branch was merged.
| -rw-r--r-- | build_config/default.rb | 2 | ||||
| -rw-r--r-- | build_config/host-cxx.rb | 2 | ||||
| -rw-r--r-- | build_config/host-gprof.rb | 2 | ||||
| -rw-r--r-- | build_config/host-m32.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/build_config/default.rb b/build_config/default.rb index 0a92b9108..54c51c44f 100644 --- a/build_config/default.rb +++ b/build_config/default.rb @@ -20,7 +20,7 @@ MRuby::Build.new do |conf| # conf.gem :git => '[email protected]:mattn/mruby-onig-regexp.git', :branch => 'master', :options => '-v' # include the GEM box - conf.gembox 'full-core' + conf.gembox 'default' # C compiler settings # conf.cc do |cc| diff --git a/build_config/host-cxx.rb b/build_config/host-cxx.rb index ae05e63c2..fa75a3ccb 100644 --- a/build_config/host-cxx.rb +++ b/build_config/host-cxx.rb @@ -3,7 +3,7 @@ MRuby::Build.new do |conf| enable_debug # include the default GEMs - conf.gembox 'full-core' + conf.gembox 'default' # C compiler settings conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK) diff --git a/build_config/host-gprof.rb b/build_config/host-gprof.rb index 31b952920..2689dc9b2 100644 --- a/build_config/host-gprof.rb +++ b/build_config/host-gprof.rb @@ -3,7 +3,7 @@ MRuby::Build.new do |conf| toolchain :gcc # include the GEM box - conf.gembox 'full-core' + conf.gembox 'default' conf.cc.flags << '-pg' conf.linker.flags << '-pg' diff --git a/build_config/host-m32.rb b/build_config/host-m32.rb index 39b2c952f..c2b07137f 100644 --- a/build_config/host-m32.rb +++ b/build_config/host-m32.rb @@ -3,7 +3,7 @@ MRuby::Build.new do |conf| toolchain :gcc # include the GEM box - conf.gembox 'full-core' + conf.gembox 'default' conf.cc.flags << '-m32' conf.linker.flags << '-m32' |
