Skip to content

Commit 897cd9b

Browse files
bkhouriaviralg
authored andcommitted
build-script: remove --verbose when building swiftpm
The SwiftPM stage added `--verbose` in swiftlang#79330 to help troubleshoot build error that were occuring on Linux. These errors have since been addresed, but the verbosity was not removed. Remove the `--verbose` command line argument in the SwiftPM portion of the `build-script`.
1 parent 53d41bc commit 897cd9b

File tree

1 file changed

+0
-3
lines changed
  • utils/swift_build_support/swift_build_support/products

1 file changed

+0
-3
lines changed

utils/swift_build_support/swift_build_support/products/swiftpm.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def build(self, host_target):
124124
host_target,
125125
additional_params=[
126126
"--reconfigure",
127-
"--verbose",
128127
],
129128
)
130129

@@ -137,7 +136,6 @@ def test(self, host_target):
137136
host_target,
138137
compile_only_for_running_host_architecture=True,
139138
additional_params=[
140-
'--verbose'
141139
]
142140
)
143141

@@ -155,7 +153,6 @@ def install(self, host_target):
155153
install_prefix = install_destdir + self.args.install_prefix
156154

157155
self.run_bootstrap_script('install', host_target, [
158-
'--verbose',
159156
'--prefix', install_prefix
160157
])
161158

0 commit comments

Comments
 (0)