diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-03-01 14:54:29 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-03-01 14:54:29 +0900 |
| commit | 37e206472a0d0f605a94f32eb85522bdd65d1d97 (patch) | |
| tree | 85959bcc38dabea1cc6857b5d72f58c62bceb0a1 | |
| parent | f3507818e72340844059f536de9dc385582bb003 (diff) | |
| download | mruby-37e206472a0d0f605a94f32eb85522bdd65d1d97.tar.gz mruby-37e206472a0d0f605a94f32eb85522bdd65d1d97.zip | |
minimal.rb: add minimal configuration; ref #1225
| -rw-r--r-- | build_config/minimal.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_config/minimal.rb b/build_config/minimal.rb new file mode 100644 index 000000000..da3660bfc --- /dev/null +++ b/build_config/minimal.rb @@ -0,0 +1,5 @@ +MRuby::CrossBuild.new('Minimal') do |conf| + toolchain :gcc + conf.cc.defines = %w(DISABLE_STDIO) + conf.bins = [] +end |
