From cf7c8acce3b3b7c0ba9c21437f63c394d9c83472 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 3 Jan 2021 14:19:39 -0800 Subject: [PATCH] Address #89: Really remove *scavenge-read-only-space* The previous changes didn't actually completely remove `*scavenge-read-only-space*`. We removed it from the static space, but it's also defined in `code/x86-vm.lisp` so we need to remove it from there as well. And we forgot to commit the boot file, so we're doing that now. --- src/bootfiles/21d/boot-2020-04-1.lisp | 12 ++++++++++++ src/code/x86-vm.lisp | 3 --- 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 src/bootfiles/21d/boot-2020-04-1.lisp diff --git a/src/bootfiles/21d/boot-2020-04-1.lisp b/src/bootfiles/21d/boot-2020-04-1.lisp new file mode 100644 index 000000000..fdc1e2856 --- /dev/null +++ b/src/bootfiles/21d/boot-2020-04-1.lisp @@ -0,0 +1,12 @@ +;; Simple cross-compile script to remove `*scavenge-read-only-space*` +;; which is no longer needed +;; +;; Nothing special needs to be done for the cross-compile. Just use +;; this file for the -B option (not really necessary), and use the +;; standard cross-compile scripts in src/tools/cross-scripts. +;; +;; cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-foo.lisp old-lisp +;; +;; x86: cross-x86-x86 +;; sparc: cross-sparc-sparc + diff --git a/src/code/x86-vm.lisp b/src/code/x86-vm.lisp index 8de953333..3fd8a5f8a 100644 --- a/src/code/x86-vm.lisp +++ b/src/code/x86-vm.lisp @@ -443,9 +443,6 @@ (defvar *fp-constant-lg2*) (defvar *fp-constant-ln2*) -;;; Enable/Disable scavenging of the read-only space. -(defvar *scavenge-read-only-space* nil) - ;;; The current alien stack pointer; saved/restored for non-local ;;; exits. (defvar *alien-stack*) -- GitLab