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:
parent
e77ec2f482
commit
b2f247e1bd
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user