Skip to content

Commit 3e03a48

Browse files
authored
Rollup merge of #112931 - cbeuw:apple-zlib, r=Mark-Simulacrum
Enable zlib in LLVM on aarch64-apple-darwin Works on macOS 13.4, Xcode version 14.3.1.0.1.1683849156 This was disabled in #75500 on Apple Silicon Developer Transition Kit, but Apple appears to have fixed their zlib now
2 parents ce519c5 + d43131b commit 3e03a48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/download-ci-llvm-stamp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Change this file to make users of the `download-ci-llvm` configuration download
22
a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
33

4-
Last change is for: https://github.com/rust-lang/rust/pull/96971
4+
Last change is for: https://github.com/rust-lang/rust/pull/112931

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)