From dba12ba6e6fc092c2e2b0744a448f723f0d3450f Mon Sep 17 00:00:00 2001 From: Kevin Lam Date: Thu, 2 Apr 2026 06:54:52 -0700 Subject: [PATCH] build: raise default stack reserve to 8 MB (#8234) Signed-off-by: Kevin Lam --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 8bf45fb4..91bdb04b 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,5 +1,5 @@ [target.x86_64-pc-windows-msvc] -rustflags = ["-C", "link-args=/FORCE:MULTIPLE"] +rustflags = ["-C", "link-args=/FORCE:MULTIPLE /STACK:8388608"] [target.aarch64-pc-windows-msvc] -rustflags = ["-C", "link-args=/FORCE:MULTIPLE"] +rustflags = ["-C", "link-args=/FORCE:MULTIPLE /STACK:8388608"]