[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/native-comp 8dacc9e 2/2: * Fix 'incoherent dumped eln file' erro
From: |
Andrea Corallo |
Subject: |
feature/native-comp 8dacc9e 2/2: * Fix 'incoherent dumped eln file' error when DUMP-METHOD=pbootstrap |
Date: |
Fri, 2 Oct 2020 08:03:33 -0400 (EDT) |
branch: feature/native-comp
commit 8dacc9e8c52ce873f2b0a54e7ca67cffd2c7f4f7
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>
* Fix 'incoherent dumped eln file' error when DUMP-METHOD=pbootstrap
* src/Makefile.in ($(bootstrap_pdmp)): Add missing --bin-dest
--eln-dest flags.
---
src/Makefile.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Makefile.in b/src/Makefile.in
index 31a5a7e..001f0c4 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -820,7 +820,8 @@ endif
ifeq ($(DUMPING),pdumper)
$(bootstrap_pdmp): bootstrap-emacs$(EXEEXT)
rm -f $@
- $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap
+ $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap \
+ --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR)
@: Compile some files earlier to speed up further compilation.
$(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)"
endif