diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-06-18 05:02:23 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-06-18 05:02:23 (GMT) |
commit | 8c701c23c93d6b608e4cc4a7b298d88b150e148a (patch) | |
tree | 4dee41d7c3246cdf4d0b690f5975cba9826a592d /c++/config | |
parent | 3d0317ad119df4aa1c963bcbf6f4de8cf44c3d6e (diff) | |
download | hdf5-8c701c23c93d6b608e4cc4a7b298d88b150e148a.zip hdf5-8c701c23c93d6b608e4cc4a7b298d88b150e148a.tar.gz hdf5-8c701c23c93d6b608e4cc4a7b298d88b150e148a.tar.bz2 |
[svn-r7047] Purpose:
Improvement
Description:
If $CXX is not defined, configure will try a list of possible
C++ compiler name. That is not always desireable.
Solution:
Change configure to combine all powerpc-ibm-aix* to one version.
Add xlC as the default $CXX value.
Platforms tested:
Tested in Copper only since the change affect AIX machine only.
Misc. update:
Diffstat (limited to 'c++/config')
-rw-r--r-- | c++/config/powerpc-ibm-aix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/c++/config/powerpc-ibm-aix b/c++/config/powerpc-ibm-aix new file mode 100644 index 0000000..f9086a0 --- /dev/null +++ b/c++/config/powerpc-ibm-aix @@ -0,0 +1,10 @@ +# -*- 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. + +# Use AIX supplied C++ compiler by default. +CXX=${CXX=xlC} |