From 5cedd9c3792fc97c7a75fb63997db2838752ce61 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 5 Feb 2026 22:43:26 -0300 Subject: [PATCH] Fix: Remove mold linker from cargo config Mold linker is not available on the system and was causing build failures. Removed rustflags setting to use default lld linker instead. --- .cargo/config.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 983263972..d6f33614c 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -3,4 +3,3 @@ rustc-wrapper = "sccache" [target.x86_64-unknown-linux-gnu] linker = "clang" -rustflags = ["-C", "link-arg=-fuse-ld=mold"]