Commit 5f92b070bf

Michael Dusan <michael.dusan@gmail.com>
2023-10-21 15:31:21
libtsan: do not set PIE
This was missed in #17597 .
1 parent e354aac
Changed files (1)
src/libtsan.zig
@@ -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,