Merge pull request #5217 from shuujii/call-super-before-creating-host-build-in-MRubyCrossBuild-initialize

Call `super` before creating `host` build in `MRuby::CrossBuild#initialize`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-12-06 17:30:34 +09:00
committed by GitHub
+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