aboutsummaryrefslogtreecommitdiff
path: root/src/InternPool.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2024-07-14 23:14:06 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2024-07-16 06:28:42 -0400
commit00fdbf05f39931d1f6c5808e8da4afca85357214 (patch)
treeb00969c102e147def637c6f519eafefd17bc42f3 /src/InternPool.zig
parent9d1820d20635ade6cb2dbfc36744353715653670 (diff)
downloadzig-00fdbf05f39931d1f6c5808e8da4afca85357214.tar.gz
zig-00fdbf05f39931d1f6c5808e8da4afca85357214.zip
InternPool: enable separate codegen/linking thread
Let's see what happens :)
Diffstat (limited to 'src/InternPool.zig')
-rw-r--r--src/InternPool.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig
index cfd6ecbfb0..5379d602a4 100644
--- a/src/InternPool.zig
+++ b/src/InternPool.zig
@@ -55,7 +55,7 @@ free_dep_entries: std.ArrayListUnmanaged(DepEntry.Index) = .{},
/// Whether a multi-threaded intern pool is useful.
/// Currently `false` until the intern pool is actually accessed
/// from multiple threads to reduce the cost of this data structure.
-const want_multi_threaded = false;
+const want_multi_threaded = true;
/// Whether a single-threaded intern pool impl is in use.
pub const single_threaded = builtin.single_threaded or !want_multi_threaded;