CMUCL commit: src/lisp (Config.sparc_sunc)

Raymond Toy rtoy at common-lisp.net
Mon Feb 1 17:41:39 CET 2010


    Date: Monday, February 1, 2010 @ 11:41:39
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/lisp

Modified: Config.sparc_sunc

Use appropriate flags for SunStudio 12.


-------------------+
 Config.sparc_sunc |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)


Index: src/lisp/Config.sparc_sunc
diff -u src/lisp/Config.sparc_sunc:1.1 src/lisp/Config.sparc_sunc:1.2
--- src/lisp/Config.sparc_sunc:1.1	Tue Jul  7 13:14:13 2009
+++ src/lisp/Config.sparc_sunc	Mon Feb  1 11:41:39 2010
@@ -14,8 +14,10 @@
 # instructions, even if we don't use the 64-bit registers.
 
 ifdef FEATURE_SPARC_V9
-CC_V8PLUS = -xarch=v8plus
-AS_V8PLUS = -xarch=v8plus
+# For SunStudio 11, use -xarch=v8plus.  For SunStudio 12, that is
+# deprecated; use -m32 -xarch=sparc.
+CC_V8PLUS = -m32 -xarch=sparc
+AS_V8PLUS = -m32 -xarch=sparc
 endif
 
 CC = cc -xlibmieee -O



More information about the cmucl-commit mailing list