mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-04 14:53:08 +00:00
8 lines
170 B
Rust
8 lines
170 B
Rust
|
|
// Set up Jemalloc
|
||
|
|
#[cfg(not(target_env = "msvc"))]
|
||
|
|
use jemallocator::Jemalloc;
|
||
|
|
|
||
|
|
#[cfg(not(target_env = "msvc"))]
|
||
|
|
#[global_allocator]
|
||
|
|
static GLOBAL: Jemalloc = Jemalloc;
|