mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-09 03:17:55 +00:00
Disable jemalloc on Windows
This commit is contained in:
7
Makefile
7
Makefile
@@ -15,7 +15,12 @@ PINNED_NIGHTLY ?= nightly
|
|||||||
CLIPPY_PINNED_NIGHTLY=nightly-2022-05-19
|
CLIPPY_PINNED_NIGHTLY=nightly-2022-05-19
|
||||||
|
|
||||||
# List of features to use when building natively. Can be overriden via the environment.
|
# 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.
|
# List of features to use when cross-compiling. Can be overridden via the environment.
|
||||||
CROSS_FEATURES ?= gnosis,slasher-lmdb,slasher-mdbx,jemalloc
|
CROSS_FEATURES ?= gnosis,slasher-lmdb,slasher-mdbx,jemalloc
|
||||||
|
|||||||
Reference in New Issue
Block a user