From e6a4fc7210ae0d225788cedaf4588c0787caba1f Mon Sep 17 00:00:00 2001 From: Brooooooklyn Date: Tue, 12 Nov 2024 05:32:23 +0000 Subject: [PATCH] build(native): static link vc runtime on WOA (#8787) --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index ac2b23f814..b9fe725d03 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,4 @@ [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"] +[target.aarch64-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"]