diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-08-25 20:24:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 20:24:18 -0400 |
commit | 376665d1154501660e7b20f760a0482509cff8b0 (patch) | |
tree | 0a979722c66f8ede48f1dff21c8ceb335521a94a /.cargo | |
parent | 0fe590bbcbf270b50abd8d73db1c5e0be69591f1 (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.toml | 2 |
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] |