mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 22:31:23 +00:00
Remove jemalloc crate when building on AIX (#13529)
## Summary Building ruff on AIX breaks on `tiki-jemalloc-sys` due to OS header incompatibility ## Test Plan `cargo test` Co-authored-by: Henry Jiang <henry.jiang1@ibm.com>
This commit is contained in:
parent
a354d9ead6
commit
f5e3662446
2 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,7 @@ ignored = ["chrono"]
|
|||
[target.'cfg(target_os = "windows")'.dependencies]
|
||||
mimalloc = { workspace = true }
|
||||
|
||||
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
|
||||
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), not(target_os = "aix"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
|
||||
tikv-jemallocator = { workspace = true }
|
||||
|
||||
[lints]
|
||||
|
|
|
@ -16,6 +16,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|||
#[cfg(all(
|
||||
not(target_os = "windows"),
|
||||
not(target_os = "openbsd"),
|
||||
not(target_os = "aix"),
|
||||
any(
|
||||
target_arch = "x86_64",
|
||||
target_arch = "aarch64",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue