diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-06-14 18:29:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 22:29:19 +0000 |
commit | 84c793275b324c262dde02a432462565584c83f7 (patch) | |
tree | a5995a842fabb37b2ecdab794dbbce76b530ac3a /.cargo | |
parent | 48c6f7178703d448da229a5baf19efb403416da0 (diff) |
fix: reload config files on watcher restarts (#19487)
Closes #19468
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index ed50de084..590f03358 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -6,8 +6,9 @@ rustflags = [ "-C", "target-feature=+crt-static", "-C", - # increase the stack size to prevent swc overflowing the stack in debug - "link-arg=/STACK:3145728", + # increase the stack size to prevent overflowing the + # stack in debug when launching sub commands + "link-arg=/STACK:4194304", ] [target.aarch64-apple-darwin] |