std.debug.SelfInfo: rename Darwin to MachO

This commit is contained in:
Alex Rønne Petersen 2025-10-01 15:34:32 +02:00
parent e1fb662f60
commit 771410cbf2
No known key found for this signature in database
2 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ pub const SelfInfo = if (@hasDecl(root, "debug") and @hasDecl(root.debug, "SelfI
else switch (std.Target.ObjectFormat.default(native_os, native_arch)) {
.coff => if (native_os == .windows) @import("debug/SelfInfo/Windows.zig") else void,
.elf => @import("debug/SelfInfo/Elf.zig"),
.macho => @import("debug/SelfInfo/Darwin.zig"),
.macho => @import("debug/SelfInfo/MachO.zig"),
.goff, .plan9, .spirv, .wasm, .xcoff => void,
.c, .hex, .raw => unreachable,
};