
Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: 5246214c by Raymond Toy at 2025-02-08T20:19:40-08:00 Add *lisp-implementation-version* to static symbols We added `*lisp-implementation-version*` to static symbols on x86 so let's do the same for arm, ppc, and sparc. These all have spare symbols so it's easy. - - - - - 3 changed files: - src/compiler/arm/parms.lisp - src/compiler/ppc/parms.lisp - src/compiler/sparc/parms.lisp Changes: ===================================== src/compiler/arm/parms.lisp ===================================== @@ -343,11 +343,11 @@ :key-or-value lisp::*unidata-path* + lisp::*lisp-implementation-version* ;; Some spare static symbols. Useful for adding another static ;; symbol without having to do a cross-compile. Just rename one ;; of these to the desired name. - spare-9 spare-8 spare-7 spare-6 ===================================== src/compiler/ppc/parms.lisp ===================================== @@ -295,9 +295,9 @@ :key-and-value :key-or-value + lisp::*lisp-implementation-version* ;; Spare symbols. Rename these when you need to add some static ;; symbols and don't want to do a cross-compile. - sparc-9 spare-8 spare-7 spare-6 ===================================== src/compiler/sparc/parms.lisp ===================================== @@ -358,11 +358,11 @@ *fp-constant-0f0* lisp::*unidata-path* + lisp::*lisp-implementation-version* ;; Some spare static symbols. Useful for adding another static ;; symbol without having to do a cross-compile. Just rename one ;; of these to the desired name. - spare-9 spare-8 spare-7 spare-6 View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5246214ca2a85496bb9a51ca... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5246214ca2a85496bb9a51ca... You're receiving this email because of your account on gitlab.common-lisp.net.