zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5f92b070bf284f1493b1b5d433dd3adde2f46727 (tree)
parent e354aac8f21ffb1a30602b32fbacf64e5067278e
Author: Michael Dusan <michael.dusan@gmail.com>
Date:   Sat, 21 Oct 2023 09:31:21 -0400

libtsan: do not set PIE

This was missed in #17597 .

Diffstat:
Msrc/libtsan.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,