authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2023-10-21 09:31:21-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-22 06:02:24-04:00
log5f92b070bf284f1493b1b5d433dd3adde2f46727
tree4f313484cfdd403cc0b8e263f61ffcd4d1a208ab
parente354aac8f21ffb1a30602b32fbacf64e5067278e

libtsan: do not set PIE

This was missed in #17597 .

1 files changed, 1 insertions(+), 1 deletions(-)

src/libtsan.zig+1-1
......@@ -215,7 +215,7 @@ pub fn buildTsan(comp: *Compilation, prog_node: *std.Progress.Node) !void {
215215 .want_valgrind = false,
216216 .want_tsan = false,
217217 .want_pic = true,
218 .want_pie = true,
218 .want_pie = null,
219219 .emit_h = null,
220220 .strip = comp.compilerRtStrip(),
221221 .is_native_os = comp.bin_file.options.is_native_os,