mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Call super before creating host build in MRuby::CrossBuild#initialize
Call `super` (`block`) ahead so that creation of the `host` build can be skipped if pre-built `mrbc` can be specified in the future. close #5213.
This commit is contained in:
+2
-2
@@ -390,6 +390,8 @@ EOS
|
||||
attr_accessor :host_target, :build_target
|
||||
|
||||
def initialize(name, build_dir=nil, &block)
|
||||
@test_runner = Command::CrossTestRunner.new(self)
|
||||
super
|
||||
unless MRuby.targets['host']
|
||||
# add minimal 'host'
|
||||
MRuby::Build.new('host') do |conf|
|
||||
@@ -402,8 +404,6 @@ EOS
|
||||
conf.disable_libmruby
|
||||
end
|
||||
end
|
||||
@test_runner = Command::CrossTestRunner.new(self)
|
||||
super
|
||||
end
|
||||
|
||||
def mrbcfile
|
||||
|
||||
Reference in New Issue
Block a user