Skip to content

Commit

Permalink
Disable jemalloc on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Nov 8, 2022
1 parent 41eac5d commit 81441e9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ PINNED_NIGHTLY ?= nightly
CLIPPY_PINNED_NIGHTLY=nightly-2022-05-19

# List of features to use when building natively. Can be overriden via the environment.
FEATURES ?= jemalloc
# No jemalloc on Windows
ifeq ($(OS),Windows_NT)
FEATURES?=
else
FEATURES?=jemalloc
endif

# List of features to use when cross-compiling. Can be overridden via the environment.
CROSS_FEATURES ?= gnosis,slasher-lmdb,slasher-mdbx,jemalloc
Expand Down

0 comments on commit 81441e9

Please sign in to comment.