From dd24ec5bef6d4fdd255832720abf4923a7ee2120 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Fri, 4 Oct 2024 15:34:23 +0200 Subject: [PATCH] Fix cargo config --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 7e58200..3713f81 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,9 +1,9 @@ [target.aarch64-unknown-linux-musl] linker = "aarch64-linux-musl-gcc" -rustflags = ["-C", "target-feature=-crt-static"] +rustflags = ["-C", "target-feature=+crt-static"] [target.x86_64-unknown-linux-musl] -rustflags = ["-C", "target-feature=-crt-static"] +rustflags = ["-C", "target-feature=+crt-static"] [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"]