diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-08-01 21:25:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-01 21:25:40 -0700 |
| commit | 2e26cf83cf06b6204a1ea300403e7cf19e1e91e8 (patch) | |
| tree | 8a90dd4323ba9d89305f33013db9d98e13f3e32d /src | |
| parent | 624fa8523a2c4158ddc9fce231181a9e8583a633 (diff) | |
| parent | e5b46eab3b16a6bf7924ef837fcd6552f430bd58 (diff) | |
| download | zig-2e26cf83cf06b6204a1ea300403e7cf19e1e91e8.tar.gz zig-2e26cf83cf06b6204a1ea300403e7cf19e1e91e8.zip | |
Merge pull request #20903 from ziglang/dwarf-reorg
std: dwarf namespace reorg + bonus commits
Diffstat (limited to 'src')
| -rw-r--r-- | src/target.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target.zig b/src/target.zig index 62f3e52cb8..768e4d957e 100644 --- a/src/target.zig +++ b/src/target.zig @@ -327,7 +327,7 @@ pub fn clangAssemblerSupportsMcpuArg(target: std.Target) bool { } pub fn needUnwindTables(target: std.Target) bool { - return target.os.tag == .windows or target.isDarwin() or std.dwarf.abi.supportsUnwinding(target); + return target.os.tag == .windows or target.isDarwin() or std.debug.Dwarf.abi.supportsUnwinding(target); } pub fn defaultAddressSpace( |
