From 96190dba59469293eac01d8f39063101e97106f6 Mon Sep 17 00:00:00 2001 From: dearblue Date: Sat, 1 Apr 2023 23:32:36 +0900 Subject: [PATCH] Need a dependency to `mruby-compiler` for `mruby-bin-strip` It uses `mrb_irep_remove_lv()` defined in `mrbgems/mruby-compiler/core/codegen.c`. --- mrbgems/mruby-bin-strip/mrbgem.rake | 1 + 1 file changed, 1 insertion(+) diff --git a/mrbgems/mruby-bin-strip/mrbgem.rake b/mrbgems/mruby-bin-strip/mrbgem.rake index 2abd25eea..b98fbafcf 100644 --- a/mrbgems/mruby-bin-strip/mrbgem.rake +++ b/mrbgems/mruby-bin-strip/mrbgem.rake @@ -2,5 +2,6 @@ MRuby::Gem::Specification.new('mruby-bin-strip') do |spec| spec.license = 'MIT' spec.author = 'mruby developers' spec.summary = 'irep dump debug section remover command' + spec.add_dependency 'mruby-compiler', :core => 'mruby-compiler' spec.bins = %w(mruby-strip) end