From ed8e9311657733072e629a70e269e7759e18d70d Mon Sep 17 00:00:00 2001 From: Russell Boley Date: Tue, 28 Jan 2025 05:51:58 -0800 Subject: [PATCH] Update linker settings for Mac Brew now separates the lld and llvm installs, so you need to `brew install lld` and update the directory to the lld directory from llvm. --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 311a8a9..1d3cd36 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"]