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
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-05-01 07:40:38 +09:00
parent 92d8012b4e
commit 0d755e583c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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|