Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Sources/SWBTaskExecution/BuildDescriptionManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ package final class BuildDescriptionManager: Sendable {
/// NOTE: This is primarily accessible for performance testing purposes, actual clients should prefer to access via the cached methods.
///
/// - Returns: A build description, or nil if cancelled.
// TODO: Optimizations are disabled to work around a compiler bug. Remove this attribute when the bug is fixed.
// See https://github.com/swiftlang/llvm-project/issues/11377 for details.
@_optimize(none)
package static func constructBuildDescription(_ plan: BuildPlan, planRequest: BuildPlanRequest, signature: BuildDescriptionSignature, inDirectory path: Path, fs: any FSProxy, bypassActualTasks: Bool = false, planningDiagnostics: [ConfiguredTarget?: [Diagnostic]], delegate: any BuildDescriptionConstructionDelegate) async throws -> BuildDescription? {
BuildDescriptionManager.descriptionsComputed.increment()

Expand Down
Loading