diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-12-09 19:18:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-09 19:18:06 +0100 |
| commit | bd5a8f86a120093b126cfbde41e002dae161e883 (patch) | |
| tree | e15e4dfd7c82542bac7b472b9ff13c2b12369147 /src/link.zig | |
| parent | d0172488b2aa6490dcb983c24cac76e72fa972c0 (diff) | |
| parent | 182751ba27edf64304d2ae78043576b78c45fc1c (diff) | |
| download | zig-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.zig | 4 |
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; } |
