summaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-08-25 20:24:18 -0400
committerGitHub <noreply@github.com>2022-08-25 20:24:18 -0400
commit376665d1154501660e7b20f760a0482509cff8b0 (patch)
tree0a979722c66f8ede48f1dff21c8ceb335521a94a /.cargo
parent0fe590bbcbf270b50abd8d73db1c5e0be69591f1 (diff)
fix: avoid global declaration collisions in cjs (#15608)
* Use a default stack size * 2 in debug for Windows because swc using so much stack size. We should look into this more later though.
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index cc7682522..55e2602b8 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -7,7 +7,7 @@ rustflags = [
"target-feature=+crt-static",
"-C",
# increase the stack size to prevent swc overflowing the stack in debug
- "link-arg=/STACK:1572864",
+ "link-arg=/STACK:2097152",
]
[target.aarch64-apple-darwin]