diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 20:00:27 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 20:00:27 (GMT) |
commit | 488adf66709afb339f35f6fb46779984487d0b49 (patch) | |
tree | 1d93a4c65fd0f335e5d31b4d0f4a00078aacae0d /c++ | |
parent | e1cd6bcb61b5ec39bcfea7a4ceea37c75b0a1d63 (diff) | |
download | hdf5-488adf66709afb339f35f6fb46779984487d0b49.zip hdf5-488adf66709afb339f35f6fb46779984487d0b49.tar.gz hdf5-488adf66709afb339f35f6fb46779984487d0b49.tar.bz2 |
[svn-r2936] Purpose:
Bug
Description:
Solaris needs the ``-instances=global'' flag to make templates
open to everyone.
Solution:
Added
Platforms tested:
Sun (Arabica)
Diffstat (limited to 'c++')
-rw-r--r-- | c++/config/solaris2.x | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/config/solaris2.x b/c++/config/solaris2.x index 1ff0005..517bce6 100644 --- a/c++/config/solaris2.x +++ b/c++/config/solaris2.x @@ -17,13 +17,13 @@ fi # Try solaris native compiler flags if test -z "$cxx_flags_set"; then - CFLAGS="-erroff=%none" + CXXFLAGS="-instances=global" LIBS="$LIBS -lsocket" - DEBUG_CFLAGS=-g + DEBUG_CXXFLAGS=-g DEBUG_CPPFLAGS= - PROD_CFLAGS="-O -s" + PROD_CXXFLAGS="-O -s" PROD_CPPFLAGS= - PROFILE_CFLAGS=-xpg + PROFILE_CXXFLAGS=-xpg PROFILE_CPPFLAGS= cxx_flags_set=yes fi |