| ... | ... | @@ -2710,7 +2710,7 @@ fn buildOutputType( |
| 2710 | 2710 | break :d getWasiPreopen("/lib"); |
| 2711 | 2711 | } else if (self_exe_path) |p| { |
| 2712 | 2712 | break :d introspect.findZigLibDirFromSelfExe(arena, p) catch |err| { |
| 2713 | | fatal("unable to find zig installation directory: {s}", .{@errorName(err)}); |
| 2713 | fatal("unable to find zig installation directory '{s}': {s}", .{ p, @errorName(err) }); |
| 2714 | 2714 | }; |
| 2715 | 2715 | } else { |
| 2716 | 2716 | unreachable; |
| ... | ... | @@ -7403,7 +7403,7 @@ fn findTemplates(gpa: Allocator, arena: Allocator) Templates { |
| 7403 | 7403 | fatal("unable to find self exe path: {s}", .{@errorName(err)}); |
| 7404 | 7404 | }; |
| 7405 | 7405 | var zig_lib_directory = introspect.findZigLibDirFromSelfExe(arena, self_exe_path) catch |err| { |
| 7406 | | fatal("unable to find zig installation directory: {s}", .{@errorName(err)}); |
| 7406 | fatal("unable to find zig installation directory '{s}': {s}", .{ self_exe_path, @errorName(err) }); |
| 7407 | 7407 | }; |
| 7408 | 7408 | |
| 7409 | 7409 | const s = fs.path.sep_str; |