| ... | ... | @@ -3018,6 +3018,13 @@ pub fn update(comp: *Compilation, main_progress_node: std.Progress.Node) UpdateE |
| 3018 | 3018 | try comp.appendFileSystemInput(try .fromUnresolved(arena, comp.dirs, &.{c_object.src.src_path})); |
| 3019 | 3019 | } |
| 3020 | 3020 | |
| 3021 | for (comp.link_inputs) |input| if (input.path()) |path| { |
| 3022 | try comp.appendFileSystemInput(try .fromUnresolved(arena, comp.dirs, &.{ |
| 3023 | path.root_dir.path orelse ".", |
| 3024 | path.sub_path, |
| 3025 | })); |
| 3026 | }; |
| 3027 | |
| 3021 | 3028 | // For compiling Win32 resources, we rely on the cache hash system to avoid duplicating work. |
| 3022 | 3029 | // Add a Job for each Win32 resource file. |
| 3023 | 3030 | try comp.win32_resource_work_queue.ensureUnusedCapacity(gpa, comp.win32_resource_table.count()); |