mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
macho: print libtsan ref when dumping argv
This commit is contained in:
parent
6e78642d51
commit
e9309036b2
@ -830,6 +830,10 @@ fn dumpArgv(self: *MachO, comp: *Compilation) !void {
|
||||
try argv.append(p);
|
||||
}
|
||||
|
||||
if (comp.config.any_sanitize_thread) {
|
||||
try argv.append(comp.tsan_static_lib.?.full_object_path);
|
||||
}
|
||||
|
||||
for (self.lib_dirs) |lib_dir| {
|
||||
const arg = try std.fmt.allocPrint(arena, "-L{s}", .{lib_dir});
|
||||
try argv.append(arg);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user