]> git.eshelyaron.com Git - emacs.git/commitdiff
Reenable mmap-based dump allocation on wide int configurations
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Mar 2025 04:44:26 +0000 (12:44 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:53:10 +0000 (19:53 +0100)
* src/pdumper.c (VM_SUPPORTED): Don't define to 0 when
!USE_LSB_TAG if WIDE_EMACS_INT.

(cherry picked from commit 94ba1b097ed12b9b77ecef4899c18b46b7e2dd36)

src/pdumper.c

index 166ba32eab71c7bbe1627e69a53d237e0b11e631..de21313075641011bc6aeee48d503964bb9166a4 100644 (file)
@@ -77,7 +77,7 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #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