diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-11-26 17:41:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-11-26 17:41:55 (GMT) |
commit | e10e292a42119b7c1589597b76649f89bcf0fc20 (patch) | |
tree | 51c3e3e466ed2fe578c5e4ed16968e855cc8f018 | |
parent | 7f496f19b839922e60ada7e18bf3ce849aa481e8 (diff) | |
download | hdf5-e10e292a42119b7c1589597b76649f89bcf0fc20.zip hdf5-e10e292a42119b7c1589597b76649f89bcf0fc20.tar.gz hdf5-e10e292a42119b7c1589597b76649f89bcf0fc20.tar.bz2 |
[svn-r17931] Enhancement:
Added the xlc-* and mpcc_r-* BASENAME patterns to be recognized as IBM
compilers so that the ibm compiler options can be added properly.
This allows non-system-default compiler command names (e.g. xlc-m.n.k.l)
be recognized.
(need to figure out a better way to recognize it is an IBM compiler
and its version information.)
Tested: LLNL AIX machine.
-rw-r--r-- | config/powerpc-ibm-aix5.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index ac70bac..96ad26a 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -43,7 +43,7 @@ fi # `--enable-debug' switch of configure. case $CC_BASENAME in - xlc|mpcc_r) + xlc|xlc-*|mpcc_r|mpcc_r-*) # Turn off shared lib option. It causes some test suite to fail. enable_shared="${enable_shared:-no}" # Use -D_LARGE_FILES by default to support large file size. |