| author | |
| committer | |
| log | 78199a684f50f37f652dabcc88b02e8b998ab5fa |
| tree | 53238cfa341f07c6b6288946e7a8fd06771ee04e |
| parent | 198d1438eac27ec9f211eda8d1243875a795cae3 |
closes #6721
closes #67221 files changed, 2 insertions(+), 1 deletions(-)
src/link.zig+2-1| ... | ... | @@ -435,7 +435,8 @@ pub const File = struct { |
| 435 | 435 | .target = base.options.target, |
| 436 | 436 | .output_mode = .Obj, |
| 437 | 437 | }); |
| 438 | const full_obj_path = try directory.join(arena, &[_][]const u8{obj_basename}); | |
| 438 | const o_directory = base.options.module.?.zig_cache_artifact_directory; | |
| 439 | const full_obj_path = try o_directory.join(arena, &[_][]const u8{obj_basename}); | |
| 439 | 440 | break :blk full_obj_path; |
| 440 | 441 | } |
| 441 | 442 | try base.flushModule(comp); |