Skip to content

Commit 81441e9

Browse files
committed
Disable jemalloc on Windows
1 parent 41eac5d commit 81441e9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ PINNED_NIGHTLY ?= nightly
1515
CLIPPY_PINNED_NIGHTLY=nightly-2022-05-19
1616

1717
# List of features to use when building natively. Can be overriden via the environment.
18-
FEATURES ?= jemalloc
18+
# No jemalloc on Windows
19+
ifeq ($(OS),Windows_NT)
20+
FEATURES?=
21+
else
22+
FEATURES?=jemalloc
23+
endif
1924

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

0 commit comments

Comments
 (0)