aboutsummaryrefslogtreecommitdiff
path: root/src/link.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-12-09 12:57:15 +0100
committerJakub Konka <kubkon@jakubkonka.com>2022-12-09 14:16:44 +0100
commit182751ba27edf64304d2ae78043576b78c45fc1c (patch)
treec76ef52fe2d8f18d01ff2aef37fb3e2b814d725a /src/link.zig
parent4d640f9bb98d334f7fab8d3037a36cfd95dc174a (diff)
downloadzig-182751ba27edf64304d2ae78043576b78c45fc1c.tar.gz
zig-182751ba27edf64304d2ae78043576b78c45fc1c.zip
Revert "coff: specify default base path for relative source paths in pdb"
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;
}