You've already forked AstralRinth
forked from didirus/AstralRinth
The latest version of MSVC fails when linking labrinth, making now a perfect opportunity to switch over to the rust-lld linker instead.
10 lines
315 B
TOML
10 lines
315 B
TOML
# Windows has stack overflows when calling from Tauri, so we increase the default stack size used by the compiler
|
|
[target.'cfg(windows)']
|
|
rustflags = ["-C", "link-args=/STACK:16777220", "--cfg", "tokio_unstable"]
|
|
|
|
[target.x86_64-pc-windows-msvc]
|
|
linker = "rust-lld"
|
|
|
|
[build]
|
|
rustflags = ["--cfg", "tokio_unstable"]
|