mirror of https://github.com/astral-sh/uv
No jemalloc on freebsd (#7780)
This commit is contained in:
parent
ada6b36635
commit
884b5a3c80
|
|
@ -8,5 +8,5 @@ publish = false
|
||||||
[target.'cfg(all(target_os = "windows"))'.dependencies]
|
[target.'cfg(all(target_os = "windows"))'.dependencies]
|
||||||
mimalloc = { version = "0.1.43" }
|
mimalloc = { version = "0.1.43" }
|
||||||
|
|
||||||
[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 = "freebsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
|
||||||
tikv-jemallocator = { version = "0.6.0" }
|
tikv-jemallocator = { version = "0.6.0" }
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
not(target_os = "windows"),
|
not(target_os = "windows"),
|
||||||
not(target_os = "openbsd"),
|
not(target_os = "openbsd"),
|
||||||
|
not(target_os = "freebsd"),
|
||||||
any(
|
any(
|
||||||
target_arch = "x86_64",
|
target_arch = "x86_64",
|
||||||
target_arch = "aarch64",
|
target_arch = "aarch64",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue