Skip to content

Commit 01e55f1

Browse files
committed
Don't skip the separate compile jobs (until other tools are updated)
1 parent f9821a1 commit 01e55f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Sources/SwiftDriver/Jobs/Planning.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,11 @@ extension Driver {
404404
}
405405
assert(backendJobs.count <= 1)
406406
addCompileJobGroup(CompileJobGroup(compileJob: compile, backendJob: backendJobs.first))
407-
} else if !canSkipIfOnlyModule {
407+
} else {
408+
// TODO: if !canSkipIfOnlyModule {
409+
// Some other tools still expect the partial jobs. Bring this check
410+
// back once they are updated. rdar://84979778
411+
408412
// We can skip the compile jobs if all we want is a module when it's
409413
// built separately.
410414
let compile = try compileJob(primaryInputs: [primaryInput],

0 commit comments

Comments
 (0)