Fix: Remove mold linker from cargo config
Some checks failed
BotServer CI / build (push) Failing after 17m29s

Mold linker is not available on the system and was causing build failures.
Removed rustflags setting to use default lld linker instead.
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-02-05 22:43:26 -03:00
parent 7da1442c91
commit 5cedd9c379

View file

@ -3,4 +3,3 @@ rustc-wrapper = "sccache"
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]