aboutsummaryrefslogtreecommitdiff
path: root/src/link.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-12-09 19:18:06 +0100
committerGitHub <noreply@github.com>2022-12-09 19:18:06 +0100
commitbd5a8f86a120093b126cfbde41e002dae161e883 (patch)
treee15e4dfd7c82542bac7b472b9ff13c2b12369147 /src/link.zig
parentd0172488b2aa6490dcb983c24cac76e72fa972c0 (diff)
parent182751ba27edf64304d2ae78043576b78c45fc1c (diff)
downloadzig-bd5a8f86a120093b126cfbde41e002dae161e883.tar.gz
zig-bd5a8f86a120093b126cfbde41e002dae161e883.zip
Merge pull request #13843 from ziglang/dwarf-abs-paths
debug info: resolve relative paths to source files into absolute paths
Diffstat (limited to 'src/link.zig')
-rw-r--r--src/link.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/link.zig b/src/link.zig
index e57ffd4256..450763ac18 100644
--- a/src/link.zig
+++ b/src/link.zig
@@ -217,10 +217,6 @@ pub const Options = struct {
/// (Darwin) remove dylibs that are unreachable by the entry point or exported symbols
dead_strip_dylibs: bool = false,
- /// (Windows) PDB source path prefix to instruct the linker how to resolve relative
- /// paths when consolidating CodeView streams into a single PDB file.
- pdb_source_path: ?[]const u8 = null,
-
pub fn effectiveOutputMode(options: Options) std.builtin.OutputMode {
return if (options.use_lld) .Obj else options.output_mode;
}