summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorcvs2svn <no_author@cvs2svn>2002-01-23 21:30:34 (GMT)
committercvs2svn <no_author@cvs2svn>2002-01-23 21:30:34 (GMT)
commit9627cb625db48ace93542ec136cfa85a28d1448e (patch)
treeb9fb21dfc64689cab0c48291a109b308c0538b76 /c++
parentc2bca116ddeaed0ff5aa938378e4dc1b5f460eb1 (diff)
downloadhdf5-9627cb625db48ace93542ec136cfa85a28d1448e.zip
hdf5-9627cb625db48ace93542ec136cfa85a28d1448e.tar.gz
hdf5-9627cb625db48ace93542ec136cfa85a28d1448e.tar.bz2
[svn-r4852] This commit was manufactured by cvs2svn to create branch 'hdf5_1_4'.
Diffstat (limited to 'c++')
-rw-r--r--c++/config/irix6.x34
1 files changed, 34 insertions, 0 deletions
diff --git a/c++/config/irix6.x b/c++/config/irix6.x
new file mode 100644
index 0000000..dad44c5
--- /dev/null
+++ b/c++/config/irix6.x
@@ -0,0 +1,34 @@
+# -*- shell-script -*-
+#
+# This file is part of the HDF5 build script. It is processed shortly
+# after configure starts and defines, among other things, flags for
+# the various compile modes.
+#
+# See BlankForm in this directory for details
+
+# The default compiler is `MIPSpro CC'
+if test -z "$CXX"; then
+ CXX=CC
+ CXX_BASENAME=CC
+fi
+
+# Try native compiler flags
+if test -z "$cxx_flags_set"; then
+# -LANG:std required for std use; -ptused causes templates used to be
+# instantiated
+ CPPFLAGS="-LANG:std -ptused"
+
+# libCio is a default library, since libtool before 1.5 doesn't fully
+# support C++ yet, default libraries must be explicitly specified.
+# A new macro is used for this temporary and specific task so it
+# won't polute the existing configuration
+ DEFAULT_LIBS="-lCio"
+
+ DEBUG_CXXFLAGS=-g
+ DEBUG_CPPFLAGS=
+ PROD_CXXFLAGS="-O -s"
+ PROD_CPPFLAGS=
+ PROFILE_CXXFLAGS=-xpg
+ PROFILE_CPPFLAGS=
+ cxx_flags_set=yes
+fi