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 ea31878b1f
commit fdbfeaf533
18 changed files with 59 additions and 68 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ module MRuby
end
def instance
@instance ||= new("#{MRUBY_CONFIG}.lock")
@instance ||= new("#{MRUBY_ROOT}/build/#{MRUBY_TARGET}.lock")
end
end