Avoid jemalloc in windows build (#7089)

automerge
This commit is contained in:
Michael Vines
2019-11-21 19:39:29 -07:00
committed by Grimes
parent d8ead57fbb
commit 0bd41f98ed
5 changed files with 42 additions and 12 deletions

View File

@@ -85,7 +85,9 @@ extern crate solana_metrics;
#[macro_use]
extern crate matches;
#[cfg(unix)]
extern crate jemallocator;
#[cfg(unix)]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;