From 9df18b1a48f58fcc391129e95dbd943327220cdc Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sat, 13 Jan 2024 10:51:42 +1000 Subject: [PATCH] Disable zlib-ng for aarch64 linux and re-enable it for x64 linux (#1565) Signed-off-by: Jiahao XU --- justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 361602d7..46f5c8ec 100644 --- a/justfile +++ b/justfile @@ -78,9 +78,9 @@ support-pkg-config := if target == target-host { if target-os == "linux" { "true" } else { "" } } else { "" } -#} else if target == "x86_64-unknown-linux-gnu" { +#} else if target == "aarch64-unknown-linux-gnu" { # ",zlib-ng" -#} else if target == "x86_64-unknown-linux-musl" { +#} else if target == "aarch64-unknown-linux-musl" { # ",zlib-ng" git-max-perf-feature := if target == "x86_64-apple-darwin" { ",zlib-ng" @@ -90,9 +90,9 @@ git-max-perf-feature := if target == "x86_64-apple-darwin" { ",zlib-ng" } else if target-os == "windows" { ",zlib-ng" -} else if target == "aarch64-unknown-linux-gnu" { +} else if target == "x86_64-unknown-linux-gnu" { ",zlib-ng" -} else if target == "aarch64-unknown-linux-musl" { +} else if target == "x86_64-unknown-linux-musl" { ",zlib-ng" } else { ""