Skip to content

Commit c37afcd

Browse files
committed
Enable zlib in LLVM on aarch64-apple-darwin
1 parent fa06a37 commit c37afcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/llvm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ impl Step for Llvm {
352352
// Disable zstd to avoid a dependency on libzstd.so.
353353
cfg.define("LLVM_ENABLE_ZSTD", "OFF");
354354

355-
if target != "aarch64-apple-darwin" && !target.contains("windows") {
355+
if !target.contains("windows") {
356356
cfg.define("LLVM_ENABLE_ZLIB", "ON");
357357
} else {
358358
cfg.define("LLVM_ENABLE_ZLIB", "OFF");

0 commit comments

Comments
 (0)