Raymond Toy pushed to branch sparc64-dev at cmucl / cmucl
Commits: a77be97e by Raymond Toy at 2016-12-27T10:02:48-08:00 Support sparc64
When ARCH is sparc64, set fasl type to sparc64f so we copy all of the appropriate fasls for the installation.
- - - - -
2 changed files:
- bin/make-extra-dist.sh - bin/make-main-dist.sh
Changes:
===================================== bin/make-extra-dist.sh ===================================== --- a/bin/make-extra-dist.sh +++ b/bin/make-extra-dist.sh @@ -34,6 +34,7 @@ OS=$4
case $ARCH in x86*) FASL="sse2f" ;; + sparc64) FASL=sparc64f ;; sparc*) FASL=sparcf ;; alpha*) FASL=axpf ;; ppc*) FASL=ppcf ;;
===================================== bin/make-main-dist.sh ===================================== --- a/bin/make-main-dist.sh +++ b/bin/make-main-dist.sh @@ -41,6 +41,7 @@ CORE=lisp.core case $ARCH in x86*) FASL=sse2f CORE="lisp-sse2.core" ;; + sparc64) FASL=sparc64f ;; sparc*) FASL=sparcf ;; alpha*) FASL=axpf ;; ppc*) FASL=ppcf ;;
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/a77be97eca3c369a51f96270af...