From 5c07fb624b0dcd5130960f4c92f89f012d7a4f84 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 1 Aug 2024 17:28:03 -0400 Subject: [PATCH] WIP: build: make `cargo insta test` compile properly on MacOS --- .cargo/config.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..c8c381d --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,4 @@ +[target.aarch64-apple-darwin] +rustflags = [ + "-C", "link-arg=-fuse-ld=lld", +]