libtsan: do not set PIE

This was missed in #17597 .
This commit is contained in:
Michael Dusan 2023-10-21 09:31:21 -04:00 committed by Andrew Kelley
parent e354aac8f2
commit 5f92b070bf

View File

@ -215,7 +215,7 @@ pub fn buildTsan(comp: *Compilation, prog_node: *std.Progress.Node) !void {
.want_valgrind = false,
.want_tsan = false,
.want_pic = true,
.want_pie = true,
.want_pie = null,
.emit_h = null,
.strip = comp.compilerRtStrip(),
.is_native_os = comp.bin_file.options.is_native_os,