From 8dd5692b3ed6fefe4850e98db3cf9a5110f4b9dd Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Sat, 2 Mar 2024 15:41:37 +0100 Subject: [PATCH] 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 --- .cargo/config_fast_builds.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config_fast_builds.toml b/.cargo/config_fast_builds.toml index 4ee56c480c..2d82ca39a8 100644 --- a/.cargo/config_fast_builds.toml +++ b/.cargo/config_fast_builds.toml @@ -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. ]