Skip to content

Commit 6c2e17e

Browse files
committed
mingw: do not use nedmalloc on Windows/ARM64
It does not compile there, and seeing as nedmalloc has been pretty much unmaintained since at least November 2017, as per ned14/nedmalloc#20 (comment), there is also no hope that any fixes will materialize there. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 2feeadb commit 6c2e17e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

config.mak.uname

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,9 @@ ifeq ($(uname_S),MINGW)
742742
HAVE_LIBCHARSET_H = YesPlease
743743
USE_GETTEXT_SCHEME = fallthrough
744744
USE_LIBPCRE = YesPlease
745-
USE_NED_ALLOCATOR = YesPlease
745+
ifneq (CLANGARM64,$(MSYSTEM))
746+
USE_NED_ALLOCATOR = YesPlease
747+
endif
746748
ifeq (/mingw64,$(subst 32,64,$(prefix)))
747749
# Move system config into top-level /etc/
748750
ETC_GITCONFIG = ../etc/gitconfig

0 commit comments

Comments
 (0)