Skip to content

Commit

Permalink
Disable zlib-ng for aarch64 linux and re-enable it for x64 linux (#1565)
Browse files Browse the repository at this point in the history
Signed-off-by: Jiahao XU <[email protected]>
  • Loading branch information
NobodyXu authored Jan 13, 2024
1 parent c08b8d2 commit 9df18b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 {
""
Expand Down

0 comments on commit 9df18b1

Please sign in to comment.