mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
added .cargo/config.toml to build with bigger stack on windows (#2594)
* added .cargo/config.toml to build with bigger stack on windows * updated comments
This commit is contained in:
parent
e8ec5027ff
commit
75f8247af1
1 changed files with 6 additions and 0 deletions
6
.cargo/config.toml
Normal file
6
.cargo/config.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# use LLD as linker on Windows because it could be faster
|
||||||
|
# for full and incremental builds compared to default
|
||||||
|
|
||||||
|
[target.x86_64-pc-windows-msvc]
|
||||||
|
#linker = "lld-link.exe"
|
||||||
|
rustflags = ["-C", "link-args=-stack:10000000"]
|
Loading…
Reference in a new issue