Skip to content

Commit 554f214

Browse files
committed
build.ps1: Update reference to CCryptoBoringSSL
The CCryptoBoringSSL library changed from C to C++, which means that the static archive on Windows changed names, from `CCryptoBoringSSL.lib` to `libCCryptoBoringSSL.lib`. The SourceKit-LSP SwiftPM test invocation explicitly passed `CCryptoBoringSSL.lib` to the SwiftPM invocation, resulting in the wrong search path. Pointing it at the correct location now. (cherry picked from commit 2ff24aa)
1 parent b4bd863 commit 554f214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2986,7 +2986,7 @@ function Test-SourceKitLSP {
29862986
# swift-crypto
29872987
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform Crypto)\swift",
29882988
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib",
2989-
"-Xlinker", "$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib\CCryptoBoringSSL.lib",
2989+
"-Xlinker", "$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib\libCCryptoBoringSSL.lib",
29902990
# swift-asn1
29912991
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform ASN1)\swift",
29922992
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform ASN1)\lib",

0 commit comments

Comments
 (0)