Skip to content

Commit 0c76588

Browse files
committed
Add ASN1 module to SourceKit-LSP Test
Super surprised to see the build for swift test hardcoded in the build.ps1 script instead of in the sourcekit-lsp repo. At any rate, looks like I need to add the dependency on ASN1 here too. This is to support changes in SwiftPM that add the dependency which translates through to sourcekit-lsp. swiftlang/swift-package-manager#8610
1 parent 058638e commit 0c76588

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

utils/build.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2976,6 +2976,9 @@ function Test-SourceKitLSP {
29762976
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform Crypto)\swift",
29772977
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib",
29782978
"-Xlinker", "$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib\CCryptoBoringSSL.lib",
2979+
# swift-asn1
2980+
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform ASN1)\swift",
2981+
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform ASN1)\lib",
29792982
# swift-package-manager
29802983
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform PackageManager)\swift",
29812984
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform PackageManager)\lib",

0 commit comments

Comments
 (0)