We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41eac5d commit 81441e9Copy full SHA for 81441e9
Makefile
@@ -15,7 +15,12 @@ PINNED_NIGHTLY ?= nightly
15
CLIPPY_PINNED_NIGHTLY=nightly-2022-05-19
16
17
# List of features to use when building natively. Can be overriden via the environment.
18
-FEATURES ?= jemalloc
+# No jemalloc on Windows
19
+ifeq ($(OS),Windows_NT)
20
+ FEATURES?=
21
+else
22
+ FEATURES?=jemalloc
23
+endif
24
25
# List of features to use when cross-compiling. Can be overridden via the environment.
26
CROSS_FEATURES ?= gnosis,slasher-lmdb,slasher-mdbx,jemalloc
0 commit comments