From 0d755e583c3b51a56b95cc4fa468ecbc1c0063aa Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 1 May 2020 07:40:38 +0900 Subject: Build process updated: You have to specify `TARGET` to specify a configuration, e.g. ``` rake TARGET=host-debug all test ``` When you port `mruby` to a new configuration: 1. copy an existing configuration under `target` directory 2. modify the new configuration file 3. build using the new configuration 4. send PR if you please --- target/host-debug.rb | 2 +- target/host.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target/host-debug.rb b/target/host-debug.rb index 2fcb22e8f..4e89d162c 100644 --- a/target/host-debug.rb +++ b/target/host-debug.rb @@ -11,7 +11,7 @@ MRuby::Build.new('host-debug') do |conf| enable_debug # include the default GEMs - conf.gembox 'default' + conf.gembox 'full-core' # C compiler settings conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK) diff --git a/target/host.rb b/target/host.rb index 4b12ab70a..eb6e3c15f 100644 --- a/target/host.rb +++ b/target/host.rb @@ -20,7 +20,7 @@ MRuby::Build.new do |conf| # conf.gem :git => 'git@github.com:mattn/mruby-onig-regexp.git', :branch => 'master', :options => '-v' # include the GEM box - conf.gembox 'default' + conf.gembox 'full-core' # C compiler settings # conf.cc do |cc| -- cgit v1.2.3