aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2025-03-10 12:44:26 +0800
committerPo Lu2025-03-10 12:44:26 +0800
commit94ba1b097ed12b9b77ecef4899c18b46b7e2dd36 (patch)
treeed0b21f1613ca0cca85cdd65c0608d33a2e28b28 /src
parentab5bfcebddf4c0613ef352231628d4034c8cb178 (diff)
downloademacs-94ba1b097ed12b9b77ecef4899c18b46b7e2dd36.tar.gz
emacs-94ba1b097ed12b9b77ecef4899c18b46b7e2dd36.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
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 <https://www.gnu.org/licenses/>. */
77#define VM_POSIX 1 77#define VM_POSIX 1
78#define VM_MS_WINDOWS 2 78#define VM_MS_WINDOWS 2
79 79
80#if !USE_LSB_TAG 80#if !USE_LSB_TAG && !defined WIDE_EMACS_INT
81# define VM_SUPPORTED 0 81# define VM_SUPPORTED 0
82#elif defined (HAVE_MMAP) && defined (MAP_FIXED) 82#elif defined (HAVE_MMAP) && defined (MAP_FIXED)
83# define VM_SUPPORTED VM_POSIX 83# define VM_SUPPORTED VM_POSIX