summaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-03-13 22:05:02 +0530
committerGitHub <noreply@github.com>2022-03-13 22:05:02 +0530
commit34c9e160992acf77f873691b3bbfb3e5e07c63d1 (patch)
tree5af581621c30b6bde2bc2bce87b6b10356a5158c /.cargo
parent9d9e60b694888ffc20def928ffcd4da11da8be62 (diff)
chore: use lld on aarch64-apple-darwin (#13928)
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config3
1 files changed, 3 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config
index ac2b23f81..bb3ca44df 100644
--- a/.cargo/config
+++ b/.cargo/config
@@ -1,2 +1,5 @@
[target.x86_64-pc-windows-msvc]
rustflags = ["-C", "target-feature=+crt-static"]
+
+[target.aarch64-apple-darwin]
+rustflags = ["-C", "link-arg=-fuse-ld=lld"]