We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac61956 commit 2e60af5Copy full SHA for 2e60af5
Package.swift
@@ -139,7 +139,10 @@ let package = Package(
139
// Do not enforce checks for LLVM's ABI-breaking build settings.
140
// makeOptions runtime uses some header-only code from LLVM's ADT classes,
141
// but we do not want to link libSupport into the executable.
142
- cxxSettings: [.unsafeFlags(["-DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENFORCING=1"])]),
+ cxxSettings: [.unsafeFlags(["-DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENFORCING=1"])],
143
+ linkerSettings: [
144
+ .linkedLibrary("swiftCore", .when(platforms: [.windows])), // for swift_addNewDSOImage
145
+ ]),
146
],
147
cxxLanguageStandard: .cxx17
148
)
0 commit comments