From 1a7fc900e82c7efd9e3bb3af1d173e85daf27cf1 Mon Sep 17 00:00:00 2001 From: Imbris Date: Sun, 28 Mar 2021 15:49:58 -0400 Subject: [PATCH] Turn off incremental compilation to avoid fingerprints bug --- .cargo/config | 2 +- Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.cargo/config b/.cargo/config index f1923f273e..024104445e 100644 --- a/.cargo/config +++ b/.cargo/config @@ -8,7 +8,7 @@ csv-export = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_import" test-server = "-Zpackage-features run --bin veloren-server-cli --no-default-features -- -b" tracy-server = "-Zunstable-options -Zpackage-features run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow" -tracy-world-server = "-Zunstable-options -Zpackage-features run --bin veloren-server-cli --features tracy,simd --profile no_overflow -- -bi" +tracy-world-server = "-Zunstable-options -Zpackage-features run --bin veloren-server-cli --features tracy,simd --profile no_overflow -- -b" test-voxygen = "-Zpackage-features run --bin veloren-voxygen --no-default-features --features gl,simd" tracy-voxygen = "-Zunstable-options -Zpackage-features run --bin veloren-voxygen --no-default-features --features tracy,gl,simd --profile no_overflow" server = "run --bin veloren-server-cli" diff --git a/Cargo.toml b/Cargo.toml index e413fc9cdc..1a18a76a08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,8 @@ panic = "abort" debug = false codegen-units = 8 lto = false -incremental = true +# TEMP false to avoid fingerprints bug +incremental = false # All dependencies (but not this crate itself) [profile.dev.package."*"] opt-level = 3