[Git][cmucl/cmucl][sparc64-dev] Initial sparc64 cross-compiler script

Raymond Toy pushed to branch sparc64-dev at cmucl / cmucl Commits: 24919d2a by Raymond Toy at 2016-12-17T14:40:53-08:00 Initial sparc64 cross-compiler script o Add :sparc64 feature to indicate this build is for 64-bit sparc. o Set paths to sparc64. - - - - - 1 changed file: - src/tools/cross-scripts/cross-x86-sparc64.lisp Changes: ===================================== src/tools/cross-scripts/cross-x86-sparc64.lisp ===================================== --- a/src/tools/cross-scripts/cross-x86-sparc64.lisp +++ b/src/tools/cross-scripts/cross-x86-sparc64.lisp @@ -10,7 +10,8 @@ (c::new-backend "SPARC" ;; Features to add here - '(:sparc + '(:sparc64 + :sparc :sparc-v9 ; For Ultrasparc processors :complex-fp-vops ; Some slightly faster FP vops on complex numbers :linkage-table @@ -115,9 +116,9 @@ (setf (search-list "c:") '("target:compiler/")) (setf (search-list "vm:") - '("c:sparc/" "c:generic/")) + '("c:sparc64/" "c:generic/")) (setf (search-list "assem:") - '("target:assembly/" "target:assembly/sparc/")) + '("target:assembly/" "target:assembly/sparc64/")) ;; Load the backend of the compiler. View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/24919d2af372bf64c4794fc5b7...
participants (1)
-
Raymond Toy