From 73b4152574f0dd6747488662751f59f8c4c0b50d Mon Sep 17 00:00:00 2001 From: KOBAYASHI Shuji Date: Sat, 5 Dec 2020 09:16:08 +0900 Subject: Make it possible that `libmruby.a` is not created Previously, `libmruby.a` was created even if only `mruby-bin-mrbc` or` mruby-compiler` was specified for gem, but by specifying `disable_libmruby`, the creation of `libmruby.a` can be suppressed. ### Note The https://github.com/mruby/mruby/pull/5084#issuecomment-723521971 incompatibility seems to be difficult for users to avoid, so the original behavior has been restored. Therefore, if we need `mrbc` other than the `host` build, we need to explicitly specify `mruby-bin-mrbc` gem. Due to the above changes, `build_config/boxing.rb` etc. will not work, but I have added` mruby-bin-mrbc` to `default.gembox` to fix it. I don't think this change is a big deal because originally `mruby-compiler` was included. --- tasks/libmruby.rake | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tasks/libmruby.rake') diff --git a/tasks/libmruby.rake b/tasks/libmruby.rake index e302ca02b..c73b25d3b 100644 --- a/tasks/libmruby.rake +++ b/tasks/libmruby.rake @@ -1,4 +1,10 @@ MRuby.each_target do + file libmruby_core_static => libmruby_core_objs.flatten do |t| + archiver.run t.name, t.prerequisites + end + + next unless libmruby_enabled? + file libmruby_static => libmruby_objs.flatten do |t| archiver.run t.name, t.prerequisites end -- cgit v1.2.3