From: Po Lu Date: Mon, 10 Mar 2025 04:44:26 +0000 (+0800) Subject: Reenable mmap-based dump allocation on wide int configurations X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e29fcd095cdba9b1cf879de65fd26c0d9e44c69;p=emacs.git Reenable mmap-based dump allocation on wide int configurations * src/pdumper.c (VM_SUPPORTED): Don't define to 0 when !USE_LSB_TAG if WIDE_EMACS_INT. (cherry picked from commit 94ba1b097ed12b9b77ecef4899c18b46b7e2dd36) --- diff --git a/src/pdumper.c b/src/pdumper.c index 166ba32eab7..de213130756 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -77,7 +77,7 @@ along with GNU Emacs. If not, see . */ #define VM_POSIX 1 #define VM_MS_WINDOWS 2 -#if !USE_LSB_TAG +#if !USE_LSB_TAG && !defined WIDE_EMACS_INT # define VM_SUPPORTED 0 #elif defined (HAVE_MMAP) && defined (MAP_FIXED) # define VM_SUPPORTED VM_POSIX