From 00fdbf05f39931d1f6c5808e8da4afca85357214 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Sun, 14 Jul 2024 23:14:06 -0400 Subject: InternPool: enable separate codegen/linking thread Let's see what happens :) --- src/InternPool.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/InternPool.zig') 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; -- cgit v1.2.3