mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Add nightly hint to config.toml (#12257)
# Objective - The build on Windows currently fails on stable when using the `config.toml` as described but commenting out all lines that say "Nightly" ## Solution - Add a missing nightly specifier for a flag that won't run on stable
This commit is contained in:
parent
bacd5e873b
commit
8dd5692b3e
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ rustflags = [
|
|||
[target.x86_64-pc-windows-msvc]
|
||||
linker = "rust-lld.exe" # Use LLD Linker
|
||||
rustflags = [
|
||||
"-Zshare-generics=n",
|
||||
"-Zshare-generics=n", # (Nightly)
|
||||
"-Zthreads=0", # (Nightly) Use improved multithreading with the recommended amount of threads.
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue