Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • src/bootfiles/21d/boot-2020-04-1.lisp
    1
    +;; Simple cross-compile script to remove `*scavenge-read-only-space*`
    
    2
    +;; which is no longer needed
    
    3
    +;;
    
    4
    +;; Nothing special needs to be done for the cross-compile.  Just use
    
    5
    +;; this file for the -B option (not really necessary), and use the
    
    6
    +;; standard cross-compile scripts in src/tools/cross-scripts.
    
    7
    +;;
    
    8
    +;; cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-foo.lisp old-lisp
    
    9
    +;;
    
    10
    +;; x86: cross-x86-x86
    
    11
    +;; sparc: cross-sparc-sparc
    
    12
    +

  • src/code/x86-vm.lisp
    ... ... @@ -443,9 +443,6 @@
    443 443
     (defvar *fp-constant-lg2*)
    
    444 444
     (defvar *fp-constant-ln2*)
    
    445 445
     
    
    446
    -;;; Enable/Disable scavenging of the read-only space.
    
    447
    -(defvar *scavenge-read-only-space* nil)
    
    448
    -
    
    449 446
     ;;; The current alien stack pointer; saved/restored for non-local
    
    450 447
     ;;; exits.
    
    451 448
     (defvar *alien-stack*)