Skip to content
Snippets Groups Projects
Commit c7f689ba authored by toy's avatar toy
Browse files

Set the backend-version to "UltraSparc/Solaris 7" when compiled for

sparc v9.
parent 6bb4c2b5
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.39 2003/02/12 15:53:49 emarsden Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.40 2003/04/30 16:16:50 toy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -32,7 +32,9 @@ ...@@ -32,7 +32,9 @@
(adjoin :solaris (backend-features *target-backend*)) (adjoin :solaris (backend-features *target-backend*))
(setf (backend-name *target-backend*) "SPARC") (setf (backend-name *target-backend*) "SPARC")
#+svr4 #+svr4
(setf (backend-version *target-backend*) "SPARCstation/Solaris 2") (setf (backend-version *target-backend*)
#-sparc-v9 "SPARCstation/Solaris 2.x"
#+sparc-v9 "UltraSparc/Solaris 7")
#-svr4 #-svr4
(setf (backend-version *target-backend*) "SPARCstation/Sun 4") (setf (backend-version *target-backend*) "SPARCstation/Sun 4")
(setf (backend-fasl-file-type *target-backend*) "sparcf") (setf (backend-fasl-file-type *target-backend*) "sparcf")
......
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