File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -4293,15 +4293,12 @@ if (-not $SkipBuild) {
42934293 if (-not $Build.LinkModes.Contains (" static" )) { continue }
42944294
42954295 $SDKROOT = Get-SwiftSDK - OS $Build.OS - Identifier " $ ( $Build.OS ) Experimental"
4296- Copy-Item - Force `
4297- - Path " ${BinaryCache} \$ ( $Build.Triple ) \curl\lib\libcurl.a" `
4298- - Destination " ${SDKROOT} \usr\lib\swift_static\$ ( $Build.OS.ToString ().ToLowerInvariant()) \$ ( $Build.Architecture.LLVMName ) \libcurl.a" | Out-Null
4299- Copy-Item - Force `
4300- - Path " ${BinaryCache} \$ ( $Build.Triple ) \libxml2-2.11.5\libxml2.a" `
4301- - Destination " ${SDKROOT} \usr\lib\swift_static\$ ( $Build.OS.ToString ().ToLowerInvariant()) \$ ( $Build.Architecture.LLVMName ) \libxml2.a" | Out-Null
4302- Copy-Item - Force `
4303- - Path " ${BinaryCache} \$ ( $Build.Triple ) \zlib\libz.a" `
4304- - Destination " ${SDKROOT} \usr\lib\swift_static\$ ( $Build.OS.ToString ().ToLowerInvariant()) \$ ( $Build.Architecture.LLVMName ) \libz.a" | Out-Null
4296+ $SwiftResourceDir = " ${SDKROOT} \usr\lib\swift_static\$ ( $Build.OS.ToString ().ToLowerInvariant()) \$ ( $Build.Architecture.LLVMName ) "
4297+ Copy-Item - Force - Path " $ ( Get-ProjectBinaryCache $Build brotli) \libbrotlicommon.a" - Destination " ${SwiftResourceDir} \libbrotlicommon.a" | Out-Null
4298+ Copy-Item - Force - Path " $ ( Get-ProjectBinaryCache $Build brotli) \libbrotlidec.a" - Destination " ${SwiftResourceDir} \libbrotlidec.a" | Out-Null
4299+ Copy-Item - Force - Path " ${BinaryCache} \$ ( $Build.Triple ) \curl\lib\libcurl.a" - Destination " ${SwiftResourceDir} \libcurl.a" | Out-Null
4300+ Copy-Item - Force - Path " ${BinaryCache} \$ ( $Build.Triple ) \libxml2-2.11.5\libxml2.a" - Destination " ${SwiftResourceDir} \libxml2.a" | Out-Null
4301+ Copy-Item - Force - Path " ${BinaryCache} \$ ( $Build.Triple ) \zlib\libz.a" - Destination " ${SwiftResourceDir} \libz.a" | Out-Null
43054302 }
43064303 }
43074304
You can’t perform that action at this time.
0 commit comments