From 72a0f64b35bc5558cdf27f1277c282976f98836a Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 12 Nov 2024 09:13:37 +0100 Subject: [PATCH] fix(nix): fix LTO flags Signed-off-by: Sefa Eyeoglu --- nix/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/package.nix b/nix/package.nix index 4bc93e6a..92f80dff 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { RUSTFLAGS = toRustFlags ( lib.optionalAttrs lto { lto = "thin"; - embed-bicode = "yes"; + embed-bitcode = "yes"; } // lib.optionalAttrs optimizeSize { codegen-units = "1";