From 75f8247af1915ca4617dff69b72f62498e0c888f Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 23 Sep 2020 22:55:33 -0500 Subject: [PATCH] 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 --- .cargo/config.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000000..824b92b122 --- /dev/null +++ b/.cargo/config.toml @@ -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"] \ No newline at end of file