From 3d6af11c42453065d5ace1223fe99228b7927318 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sun, 31 Jul 2022 10:55:06 +0800 Subject: Fix NS unexec build * nextstep/Makefile.in (all): Only build Emacs.pdmp on pdumper builds. * src/sheap.h: Make STATIC_HEAP_SIZE bigger, otherwise I get: static heap exhausted: avail 67108864 used 67101824 failed request 20480 --- nextstep/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'nextstep') diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in index 9c7059f2c0b..ee883f3cff9 100644 --- a/nextstep/Makefile.in +++ b/nextstep/Makefile.in @@ -45,7 +45,11 @@ ns_check_file = @ns_appdir@/@ns_check_file@ .PHONY: all -all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_applibexecdir}/Emacs.pdmp +ifeq ($(DUMPING),pdumper) +ns_pdump_target = ${ns_applibexecdir}/Emacs.pdmp +endif + +all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_pdmp_target} ${ns_check_file}: ${ns_appdir} -- cgit v1.2.3