aboutsummaryrefslogtreecommitdiff
path: root/src/link.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-04-20 15:20:12 -0700
committerGitHub <noreply@github.com>2023-04-20 15:20:12 -0700
commit304e4082a0a50c2a6dfbba2a1985cf772edb9e73 (patch)
tree959bfcee9176e487dfcd4488ada99364658f9a37 /src/link.zig
parentfac120bc3ad58a10ab80952e42becd0084aec059 (diff)
parentceff2782029672714ac2e04a7b3e25af23eb9a9b (diff)
downloadzig-304e4082a0a50c2a6dfbba2a1985cf772edb9e73.tar.gz
zig-304e4082a0a50c2a6dfbba2a1985cf772edb9e73.zip
Merge pull request #15193 from davidgm94/dwarf-64-bit-format
Expose an option for producing 64-bit DWARF format
Diffstat (limited to 'src/link.zig')
-rw-r--r--src/link.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/link.zig b/src/link.zig
index c8999cee47..672a53999f 100644
--- a/src/link.zig
+++ b/src/link.zig
@@ -200,6 +200,8 @@ pub const Options = struct {
compatibility_version: ?std.builtin.Version,
libc_installation: ?*const LibCInstallation,
+ dwarf_format: ?std.dwarf.Format,
+
/// WASI-only. Type of WASI execution model ("command" or "reactor").
wasi_exec_model: std.builtin.WasiExecModel = undefined,