mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
Explicitly disable zstd support
Make sure we don't pick up a libzstd.so dependency if it happens to be installed on the system.
This commit is contained in:
@@ -325,6 +325,9 @@ fn run(self, builder: &Builder<'_>) -> PathBuf {
|
||||
cfg.define("LLVM_PROFDATA_FILE", &path);
|
||||
}
|
||||
|
||||
// Disable zstd to avoid a dependency on libzstd.so.
|
||||
cfg.define("LLVM_ENABLE_ZSTD", "OFF");
|
||||
|
||||
if target != "aarch64-apple-darwin" && !target.contains("windows") {
|
||||
cfg.define("LLVM_ENABLE_ZLIB", "ON");
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user