Skip to content

Commit e41e191

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 8c5fd21 commit e41e191

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
@@ -2986,6 +2986,9 @@ function Test-SourceKitLSP {
29862986
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform Crypto)\swift",
29872987
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib",
29882988
"-Xlinker", "$(Get-ProjectBinaryCache $BuildPlatform Crypto)\lib\CCryptoBoringSSL.lib",
2989+
# swift-asn1
2990+
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform ASN1)\swift",
2991+
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform ASN1)\lib",
29892992
# swift-package-manager
29902993
"-Xswiftc", "-I$(Get-ProjectBinaryCache $BuildPlatform PackageManager)\swift",
29912994
"-Xlinker", "-L$(Get-ProjectBinaryCache $BuildPlatform PackageManager)\lib",

0 commit comments

Comments
 (0)