Skip to content
Snippets Groups Projects
Commit cf7c8acc authored by Raymond Toy's avatar Raymond Toy
Browse files

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.
parent b334db9f
Branches issue-89-really-remove-scavenge-read-only
No related tags found
No related merge requests found
;; 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
...@@ -443,9 +443,6 @@ ...@@ -443,9 +443,6 @@
(defvar *fp-constant-lg2*) (defvar *fp-constant-lg2*)
(defvar *fp-constant-ln2*) (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 ;;; The current alien stack pointer; saved/restored for non-local
;;; exits. ;;; exits.
(defvar *alien-stack*) (defvar *alien-stack*)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment