aboutsummaryrefslogtreecommitdiffhomepage
path: root/m4
diff options
context:
space:
mode:
authorGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-05-01 21:53:10 +0000
committerGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-05-01 21:53:10 +0000
commita8923cdd9a86a40f170a6215d1d142ae853a9914 (patch)
treec4a7608f52987e20c7632446688d486a30136696 /m4
parent2fd1208b34c2022e8f7768d5187bdad12c98d032 (diff)
More Sun CC hacks. Contributed by Monty Taylor.
Diffstat (limited to 'm4')
-rw-r--r--m4/acx_check_suncc.m433
1 files changed, 33 insertions, 0 deletions
diff --git a/m4/acx_check_suncc.m4 b/m4/acx_check_suncc.m4
new file mode 100644
index 00000000..6e8fc187
--- /dev/null
+++ b/m4/acx_check_suncc.m4
@@ -0,0 +1,33 @@
+dnl Check for the presence of the Sun Studio compiler.
+dnl If Sun Studio compiler is found, set appropriate flags.
+dnl Additionally, Sun Studio doesn't default to 64-bit by itself,
+dnl nor does it automatically look in standard Solaris places for
+dnl 64-bit libs, so we must add those options and paths to the search
+dnl paths.
+
+dnl TODO(kenton): This is pretty hacky. It sets CXXFLAGS, which the autoconf
+dnl docs say should never be overridden except by the user. It also isn't
+dnl cross-compile safe. We should fix these problems, but since I don't have
+dnl Sun CC at my disposal for testing, someone else will have to do it.
+
+AC_DEFUN([ACX_CHECK_SUNCC],[
+
+ AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"])
+
+ AS_IF([test "$SUNCC" = "yes"],[
+ isainfo_k=`isainfo -k`
+ AS_IF([test "$target_cpu" = "sparc"],[
+ MEMALIGN_FLAGS="-xmemalign=8s"
+ IS_64="-m64"
+ LDFLAGS="${LDFLAGS} -L/usr/lib/${isainfo_k} -L/usr/local/lib/${isainfo_k}"
+ ],[
+ AS_IF([test "$isainfo_k" = "amd64"],[
+ IS_64="-m64"
+ LDFLAGS="${LDFLAGS} -L/usr/lib/${isainfo_k} -L/usr/local/lib/${isainfo_k}"
+ ])
+ ])
+
+ CFLAGS="-g -xO4 -xlibmil -xdepend -Xa -mt -xstrconst ${IS_64} ${MEMALIGN_FLAGS} $CFLAGS"
+ CXXFLAGS="-g -xO4 -xlibmil -mt ${IS_64} ${MEMALIGN_FLAGS} -xlang=c99 -compat=5 -library=stlport4 -template=no%extdef $CXXFLAGS"
+ ])
+])