Skip to content
Snippets Groups Projects
Commit 31577257 authored by rtoy's avatar rtoy
Browse files

Use appropriate flags for SunStudio 12.

parent e4ba8f5e
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,10 @@ include Config.sparc_common ...@@ -14,8 +14,10 @@ include Config.sparc_common
# instructions, even if we don't use the 64-bit registers. # instructions, even if we don't use the 64-bit registers.
ifdef FEATURE_SPARC_V9 ifdef FEATURE_SPARC_V9
CC_V8PLUS = -xarch=v8plus # For SunStudio 11, use -xarch=v8plus. For SunStudio 12, that is
AS_V8PLUS = -xarch=v8plus # deprecated; use -m32 -xarch=sparc.
CC_V8PLUS = -m32 -xarch=sparc
AS_V8PLUS = -m32 -xarch=sparc
endif endif
CC = cc -xlibmieee -O CC = cc -xlibmieee -O
......
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