From 439a535195d27f120cca1a35783e625fb712f418 Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Fri, 25 Jul 2025 10:35:00 +0200 Subject: [PATCH] fix ld64.lld path for Darwin PR updates the `ld64.lld` path on Darwin since `lld` is now a separate from `llvm` formula. Fix #277. --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 311a8a9e..1d3cd360 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -11,4 +11,4 @@ rustflags = ["-C", "link-arg=-fuse-ld=lld"] rustflags = ["-C", "link-arg=-fuse-ld=lld"] [target.aarch64-apple-darwin] -rustflags = ["-C", "link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld"] \ No newline at end of file +rustflags = ["-C", "link-arg=-fuse-ld=/opt/homebrew/opt/lld/bin/ld64.lld"]