Disable zlib in LLVM on aarch64-apple-darwin
This commit is contained in:
parent
b6396b75e7
commit
9302c17d18
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ impl Step for Llvm {
|
|||
.define("LLVM_TARGET_ARCH", target_native.split('-').next().unwrap())
|
||||
.define("LLVM_DEFAULT_TARGET_TRIPLE", target_native);
|
||||
|
||||
if !target.contains("netbsd") {
|
||||
if !target.contains("netbsd") && target != "aarch64-apple-darwin" {
|
||||
cfg.define("LLVM_ENABLE_ZLIB", "ON");
|
||||
} else {
|
||||
// FIXME: Enable zlib on NetBSD too
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue