Raymond Toy pushed to branch master at cmucl / cmucl
Commits: d55e32fa by Raymond Toy at 2023-03-02T10:48:44-08:00 Add x86 reader conditional
This bootstrap file only applies to x86, so add reader conditionals so that this can be loaded for other architectures without having any effect.
One less thing to worry about when bootstrapping.
- - - - -
1 changed file:
- src/bootfiles/21d/boot-2021-07-2.lisp
Changes:
===================================== src/bootfiles/21d/boot-2021-07-2.lisp ===================================== @@ -3,8 +3,10 @@ ;; ;; Use bin/build.sh -B boot-2021-07-2 to build this.
+#+x86 (in-package :x86)
+#+x86 (ext:without-package-locks (handler-bind ((error
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d55e32fab14add3feb30a519...