compiler: use std.heap.smp_allocator

In main, now this allocator is chosen by default when compiling without
libc in ReleaseFast or ReleaseSmall, and not targeting WebAssembly.
This commit is contained in:
Andrew Kelley 2025-02-06 17:41:50 -08:00
parent 84bf7a6701
commit 7360be19a4
4 changed files with 23 additions and 22 deletions

View file

@ -11,6 +11,6 @@ pub const enable_link_snapshots = false;
pub const enable_tracy = false;
pub const value_tracing = false;
pub const skip_non_native = false;
pub const force_gpa = false;
pub const debug_gpa = false;
pub const dev = .core;
pub const value_interpret_mode = .direct;