From 158257cd44d4434393a261f979502b0c188c7467 Mon Sep 17 00:00:00 2001 From: zyl Date: Mon, 24 Jun 2024 21:35:56 -0700 Subject: [PATCH] use lld on windows --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..13b29fe --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[target.x86_64-pc-windows-msvc] +linker = "ld.lld.exe" +rustflags = ["-C", "link-arg=-fuse-ld=lld"]