aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2024-07-04 07:19:08 +0200
committerJakub Konka <kubkon@jakubkonka.com>2024-07-04 07:33:00 +0200
commit1cfc3647853123efc0fda991180e337d8a72eac5 (patch)
treefc5b5b25177d1af56e33a521897d82135110cf97 /src/Compilation.zig
parent768b17755e7735b328b92212de2dd7018f78fb4b (diff)
downloadzig-1cfc3647853123efc0fda991180e337d8a72eac5.tar.gz
zig-1cfc3647853123efc0fda991180e337d8a72eac5.zip
tsan: build dynamic library on Apple platforms
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 343b22d2b1..412798e09a 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -188,6 +188,9 @@ libunwind_static_lib: ?CRTFile = null,
/// Populated when we build the TSAN static library. A Job to build this is placed in the queue
/// and resolved before calling linker.flush().
tsan_static_lib: ?CRTFile = null,
+/// Populated when we build the TSAN dynamic library. A Job to build this is placed in the queue
+/// and resolved before calling linker.flush().
+tsan_dynamic_lib: ?CRTFile = null,
/// Populated when we build the libc static library. A Job to build this is placed in the queue
/// and resolved before calling linker.flush().
libc_static_lib: ?CRTFile = null,