summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2003-03-20 01:59:07 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2003-03-20 01:59:07 (GMT)
commitb2bc00b9ffde9c63e40bc33fdf9c5699c01d13fa (patch)
tree421e6239a1d3f107ac88facc500cdd109265e5e6 /c++
parentb9d9111ecc1501c8ea75996bae1949326de4db0d (diff)
downloadhdf5-b2bc00b9ffde9c63e40bc33fdf9c5699c01d13fa.zip
hdf5-b2bc00b9ffde9c63e40bc33fdf9c5699c01d13fa.tar.gz
hdf5-b2bc00b9ffde9c63e40bc33fdf9c5699c01d13fa.tar.bz2
[svn-r6508] Purpose:
Adding new platform support Description: Added the config file to support the C++ API on hpux11.00 with the compiler aCC. Platforms tested: HPUX 11.00 (kelgia) Linux 2.2x (eirene) IRIX 6.5.11 (modi4) SunOS 5.7 (arabica) - by Elena Misc. update: Will update MANIFEST and release_docs/RELEASE for new features.
Diffstat (limited to 'c++')
-rw-r--r--c++/config/hpux11.0024
1 files changed, 24 insertions, 0 deletions
diff --git a/c++/config/hpux11.00 b/c++/config/hpux11.00
new file mode 100644
index 0000000..0485e2d
--- /dev/null
+++ b/c++/config/hpux11.00
@@ -0,0 +1,24 @@
+# -*- 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.
+
+if test -z "$CXX"; then
+ CXX=aCC
+ CXX_BASENAME=aCC
+fi
+
+if test -z "$cxx_flags_set"; then
+# +Z for PIC, +A for using archived libraries
+ CXXFLAGS="+Z +A"
+ CFLAGS="-g +O2"
+ DEBUG_CXXFLAGS=-g
+ DEBUG_CPPFLAGS=
+ PROD_CXXFLAGS="-O -s"
+ PROD_CPPFLAGS=
+ PROFILE_CPPFLAGS=
+ cxx_flags_set=yes
+fi