File tree 1 file changed +12
-1
lines changed
utils/swift_build_support/swift_build_support/products
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,14 @@ def run_bootstrap_script(
118
118
shell .call (helper_cmd )
119
119
120
120
def build (self , host_target ):
121
- self .run_bootstrap_script ('build' , host_target , ["--reconfigure" ])
121
+ self .run_bootstrap_script (
122
+ 'build' ,
123
+ host_target ,
124
+ additional_params = [
125
+ "--reconfigure" ,
126
+ "--verbose" ,
127
+ ],
128
+ )
122
129
123
130
def should_test (self , host_target ):
124
131
return self .args .test_swiftpm
@@ -128,6 +135,9 @@ def test(self, host_target):
128
135
'test' ,
129
136
host_target ,
130
137
compile_only_for_running_host_architecture = True ,
138
+ additional_params = [
139
+ '--verbose'
140
+ ]
131
141
)
132
142
133
143
def should_clean (self , host_target ):
@@ -144,6 +154,7 @@ def install(self, host_target):
144
154
install_prefix = install_destdir + self .args .install_prefix
145
155
146
156
self .run_bootstrap_script ('install' , host_target , [
157
+ '--verbose' ,
147
158
'--prefix' , install_prefix
148
159
])
149
160
You can’t perform that action at this time.
0 commit comments