From c267c82a58fe41ccb16c7009a42fdcb61616066f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=CC=81o=20Monnom?= Date: Thu, 12 Jan 2023 23:54:21 +0100 Subject: [PATCH] fix aarch64-pc-windows-msvc --- .cargo/config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config b/.cargo/config index 4bf63f7..6518dc0 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,6 +1,9 @@ [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"] +[target.aarch64-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"] + [target.x86_64-apple-darwin] rustflags = ["-C", "link-args=-ObjC"]