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