diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2024-07-04 22:09:57 +0200 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2024-07-04 22:09:57 +0200 |
| commit | d2cace58bd031e72b830ebd42f5946f4000e52a4 (patch) | |
| tree | 0de296fd724ee324307f9d64dec0b1f115a7469c /src/Compilation.zig | |
| parent | e42e12dbbf8ebae65589ff08c3b5a454d2d67441 (diff) | |
| download | zig-d2cace58bd031e72b830ebd42f5946f4000e52a4.tar.gz zig-d2cace58bd031e72b830ebd42f5946f4000e52a4.zip | |
Compilation: rename tsan_static_lib to tsan_lib
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 412798e09a..b72a58f7fc 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -185,12 +185,9 @@ libcxxabi_static_lib: ?CRTFile = null, /// Populated when we build the libunwind static library. A Job to build this is placed in the queue /// and resolved before calling linker.flush(). libunwind_static_lib: ?CRTFile = null, -/// Populated when we build the TSAN static library. A Job to build this is placed in the queue +/// Populated when we build the TSAN 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, +tsan_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, |
