From 5f92b070bf284f1493b1b5d433dd3adde2f46727 Mon Sep 17 00:00:00 2001 From: Michael Dusan Date: Sat, 21 Oct 2023 09:31:21 -0400 Subject: [PATCH] libtsan: do not set PIE This was missed in #17597 . --- src/libtsan.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtsan.zig b/src/libtsan.zig index 201f4de785..2489eb21af 100644 --- a/src/libtsan.zig +++ b/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,