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:
KOBAYASHI Shuji
2020-12-06 15:14:09 +09:00
parent 9e41ae4909
commit de03e97a50
+2 -2
View File
@@ -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