Commit b94e084
authored
Improve cross module incremental import (#698)
Before:
```
remark: Incremental compilation: Enabling incremental cross-module building
remark: Incremental compilation: May skip current input: {compile: A.swift.o <= A.swift}
remark: Incremental compilation: Skipping input: {compile: A.swift.o <= A.swift}
remark: Incremental compilation: Not skipping job: Merging module A; Missing output 'bazel-out/darwin_arm64-fastbuild/bin/A.swiftsourceinfo'
remark: Starting Merging module A
remark: Finished Merging module A
remark: Skipped Compiling A.swift
```
After:
```
remark: Incremental compilation: Enabling incremental cross-module building
remark: Incremental compilation: May skip current input: {compile: A.swift.o <= A.swift}
remark: Incremental compilation: Skipping input: {compile: A.swift.o <= A.swift}
remark: Incremental compilation: Skipping job: Merging module A; oldest output is current 'bazel-out/darwin_arm64-fastbuild/bin/A.swiftmodule'
remark: Skipped Compiling A.swift
```1 parent c3bf28c commit b94e084
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
125 | 130 | | |
126 | 131 | | |
127 | 132 | | |
| |||
0 commit comments