mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
macho: set allow_shlib_undefined to true when TSAN was requested
This commit is contained in:
parent
e9309036b2
commit
766e281a72
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ pub fn createEmpty(
|
|||
null
|
||||
else
|
||||
try std.fmt.allocPrint(arena, "{s}.o", .{emit.sub_path});
|
||||
const allow_shlib_undefined = options.allow_shlib_undefined orelse false;
|
||||
const allow_shlib_undefined = options.allow_shlib_undefined orelse comp.config.any_sanitize_thread;
|
||||
|
||||
const self = try arena.create(MachO);
|
||||
self.* = .{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue