Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,14 @@ def run_bootstrap_script(
shell.call(helper_cmd)

def build(self, host_target):
self.run_bootstrap_script('build', host_target, ["--reconfigure"])
self.run_bootstrap_script(
'build',
host_target,
additional_params=[
"--reconfigure",
"--verbose",
],
)

def should_test(self, host_target):
return self.args.test_swiftpm
Expand All @@ -128,6 +135,9 @@ def test(self, host_target):
'test',
host_target,
compile_only_for_running_host_architecture=True,
additional_params=[
'--verbose'
]
)

def should_clean(self, host_target):
Expand All @@ -144,6 +154,7 @@ def install(self, host_target):
install_prefix = install_destdir + self.args.install_prefix

self.run_bootstrap_script('install', host_target, [
'--verbose',
'--prefix', install_prefix
])

Expand Down