[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/no-purespace f1cd3b5c503 09/11: Unexec removal: Build system
From: |
Pip Cet |
Subject: |
scratch/no-purespace f1cd3b5c503 09/11: Unexec removal: Build system |
Date: |
Wed, 21 Aug 2024 05:57:05 -0400 (EDT) |
branch: scratch/no-purespace
commit f1cd3b5c50322e89ff8bf8d07a889219e2343813
Author: Pip Cet <pipcet@protonmail.com>
Commit: Pip Cet <pipcet@protonmail.com>
Unexec removal: Build system
* configure.ac (CYGWIN_OBJ): Remove comment.
* src/Makefile.in (PAXCTL, SETFATTR, PAXCTL_dumped, PAXCTL_notdumped):
Remove definitions.
(emacs$(EXEEXT)):
(temacs$(EXEEXT)):
(bootstrap-emacs$(EXEEXT)): Remove 'unexec'-specific code.
* src/deps.mk: Remove 'unexec'-specific code.
---
configure.ac | 1 -
src/Makefile.in | 33 ---------------------------------
src/deps.mk | 10 +---------
3 files changed, 1 insertion(+), 43 deletions(-)
diff --git a/configure.ac b/configure.ac
index f46bf208225..83ed2464f99 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7190,7 +7190,6 @@ AC_SUBST([RALLOC_OBJ])
if test "$opsys" = "cygwin"; then
CYGWIN_OBJ="cygw32.o"
- ## Cygwin differs because of its unexec().
PRE_ALLOC_OBJ=
POST_ALLOC_OBJ=lastfile.o
elif test "$opsys" = "mingw32"; then
diff --git a/src/Makefile.in b/src/Makefile.in
index 03c2c8d6e0a..51352dd6d74 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -126,16 +126,6 @@ LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@
## Flags to pass to ld only for temacs.
TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS)
-## If needed, the names of the paxctl and setfattr programs.
-## On grsecurity/PaX systems, unexec will fail due to a gap between
-## the bss section and the heap. Older versions need paxctl to work
-## around this, newer ones setfattr. See Bug#11398 and Bug#16343.
-PAXCTL = @PAXCTL@
-SETFATTR = @SETFATTR@
-## Commands to set PaX flags on dumped and not-dumped instances of Emacs.
-PAXCTL_dumped = @PAXCTL_dumped@
-PAXCTL_notdumped = @PAXCTL_notdumped@
-
## Some systems define this to request special libraries.
LIBS_SYSTEM=@LIBS_SYSTEM@
@@ -652,15 +642,7 @@ emacs$(EXEEXT): temacs$(EXEEXT) \
ifeq ($(SYSTEM_TYPE),cygwin)
find ${top_builddir} -name '*.eln' | rebase -v -O -T -
endif
-ifeq ($(DUMPING),unexec)
- LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=dump
- ifneq ($(PAXCTL_dumped),)
- $(PAXCTL_dumped) emacs$(EXEEXT)
- endif
- cp -f $@ bootstrap-emacs$(EXEEXT)
-else
rm -f $@ && cp -f temacs$(EXEEXT) $@
-endif
## On Haiku, also produce a binary named Emacs with the appropriate
## icon set.
@@ -749,11 +731,6 @@ endif
endif
$(AM_V_at)mv $@.tmp $@
$(MKDIR_P) $(etc)
-ifeq ($(DUMPING),unexec)
- ifneq ($(PAXCTL_notdumped),)
- $(PAXCTL_notdumped) $@
- endif
-endif
ifeq ($(XCONFIGURE),android)
## The Android package internally links to a shared library named
@@ -989,21 +966,11 @@ endif
bootstrap-emacs$(EXEEXT): temacs$(EXEEXT)
$(MAKE) -C ../lisp update-subdirs
-ifeq ($(DUMPING),unexec)
- $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=bootstrap
- ifneq ($(PAXCTL_dumped),)
- $(PAXCTL_dumped) emacs$(EXEEXT)
- endif
- mv -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT)
- @: Compile some files earlier to speed up further compilation.
- $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)"
-else
@: In the pdumper case, make compile-first after the dump
cp -f temacs$(EXEEXT) bootstrap-emacs$(EXEEXT)
ifeq ($(DO_CODESIGN),yes)
codesign -s - -f bootstrap-emacs$(EXEEXT)
endif
-endif
ifeq ($(DUMPING),pdumper)
$(bootstrap_pdmp): bootstrap-emacs$(EXEEXT)
diff --git a/src/deps.mk b/src/deps.mk
index decb6670473..0ba43a014f8 100644
--- a/src/deps.mk
+++ b/src/deps.mk
@@ -92,7 +92,7 @@ editfns.o: editfns.c window.h buffer.h systime.h
$(INTERVALS_H) character.h \
emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
termhooks.h buffer.h atimer.h systime.h $(INTERVALS_H) lisp.h $(config_h) \
globals.h ../lib/unistd.h window.h dispextern.h keyboard.h keymap.h \
- frame.h coding.h gnutls.h msdos.h dosfns.h unexec.h
+ frame.h coding.h gnutls.h msdos.h dosfns.h
fileio.o: fileio.c window.h buffer.h systime.h $(INTERVALS_H) character.h \
coding.h msdos.h blockinput.h atimer.h lisp.h $(config_h) frame.h \
commands.h globals.h ../lib/unistd.h
@@ -202,14 +202,6 @@ terminfo.o: terminfo.c tparam.h lisp.h globals.h
$(config_h)
tparam.o: tparam.c tparam.h lisp.h $(config_h)
undo.o: undo.c buffer.h commands.h window.h dispextern.h msdos.h \
lisp.h globals.h $(config_h)
-unexaix.o: unexaix.c lisp.h unexec.h $(config_h)
-unexcw.o: unexcw.c lisp.h unexec.h $(config_h)
-unexcoff.o: unexcoff.c lisp.h unexec.h $(config_h)
-unexelf.o: unexelf.c unexec.h ../lib/unistd.h $(config_h)
-unexhp9k800.o: unexhp9k800.c unexec.h $(config_h)
-unexmacosx.o: unexmacosx.c unexec.h $(config_h)
-unexsol.o: unexsol.c lisp.h unexec.h $(config_h)
-unexw32.o: unexw32.c unexec.h $(config_h)
w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
msdos.h buffer.h charset.h coding.h composite.h lisp.h $(config_h)
widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
- scratch/no-purespace updated (1e8513ee38e -> 2bf9a47aa7b), Pip Cet, 2024/08/21
- scratch/no-purespace a0ae37e68c3 03/11: Handle obsolete :purecopy keyword better in Fmake_hash_table, Pip Cet, 2024/08/21
- scratch/no-purespace d119fd3084a 04/11: Fixup for "Pure storage removal: Remove purecopy hash table flag", Pip Cet, 2024/08/21
- scratch/no-purespace e80868ced1b 02/11: Fixup for "Unexec removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 093fd31413b 07/11: Don't recognize "bootstrap" option for --temacs, Pip Cet, 2024/08/21
- scratch/no-purespace f118b3dbd47 08/11: Unexec removal: Documentation adjustments, Pip Cet, 2024/08/21
- scratch/no-purespace f1cd3b5c503 09/11: Unexec removal: Build system,
Pip Cet <=
- scratch/no-purespace 78b5d9f6848 05/11: Fixup for "Pure storage removal: Replace calls to removed functions", Pip Cet, 2024/08/21
- scratch/no-purespace 2fecbfca337 10/11: Fixup for "Unexec removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 76330ffd560 01/11: Fixup: remove from "Pure storage removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 8c6f7f16839 06/11: Pure storage removal: Documentation, Pip Cet, 2024/08/21
- scratch/no-purespace 2bf9a47aa7b 11/11: Fixup for "Pure storage removal: Main part"., Pip Cet, 2024/08/21