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 410950c commit cc9220aCopy full SHA for cc9220a
Sources/Build/AsyncBuildOperation.swift
@@ -13,9 +13,6 @@
13
@_spi(SwiftPMInternal)
14
import Basics
15
16
-@_spi(SwiftPMInternal)
17
-import Build
18
-
19
import LLBuildManifest
20
import PackageGraph
21
import PackageLoading
Sources/swift-bootstrap/main.swift
@@ -342,8 +342,10 @@ struct SwiftBootstrapBuildTool: ParsableCommand {
342
observabilityScope: self.observabilityScope
343
)
344
#else
345
- fatalError("SwiftPM was built without XCBuild support")
+ throw InternalError("SwiftPM was built without XCBuild support")
346
#endif
347
+ case .experimentalAsync:
348
+ throw InternalError("Experimental async build system can't be created in this codepath.")
349
}
350
351
0 commit comments