diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-06-01 07:03:03 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-06-01 07:03:03 (GMT) |
commit | f16711cc5eae92d3e2277358ea73ddbb3e30b40d (patch) | |
tree | 376e76b8c49719631b949cf737eaf348aea637c9 /config/ibm-aix | |
parent | 7eb4441658717332e475e317570b58eb2cbd6f9f (diff) | |
download | hdf5-f16711cc5eae92d3e2277358ea73ddbb3e30b40d.zip hdf5-f16711cc5eae92d3e2277358ea73ddbb3e30b40d.tar.gz hdf5-f16711cc5eae92d3e2277358ea73ddbb3e30b40d.tar.bz2 |
[svn-r18929] New feature:
Added ibm-flags to display the IBM XL compilers version information so that configure
can report them in the configure summary and the libhdf5.settings file.
For now, only the C compiler (xlc) versions are displayed.
Also moved the C compiler options setting from ibm-aix to ibm-flags.
Tested: NCSA Blue-print, both 32 and 64 bit modes.
Diffstat (limited to 'config/ibm-aix')
-rw-r--r-- | config/ibm-aix | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/config/ibm-aix b/config/ibm-aix index a884593..8b6a5a3 100644 --- a/config/ibm-aix +++ b/config/ibm-aix @@ -43,18 +43,7 @@ fi case $CC_BASENAME in xlc|xlc-*|mpcc_r|mpcc_r-*) - # Turn off shared lib option. It causes some test suite to fail. - enable_shared="${enable_shared:-no}" - # Make sure this is applied to other API compile options such as C++. - AM_CFLAGS="$AM_CFLAGS" - H5_CFLAGS="-qlanglvl=stdc99 $H5_CFLAGS" - DEBUG_CFLAGS="-g -qfullpath" - DEBUG_CPPFLAGS= - # -O causes test/dtypes to fail badly. Turn it off for now. - PROD_CFLAGS="" - PROD_CPPFLAGS= - PROFILE_CFLAGS="-g -qfullpath -pg" - PROFILE_CPPFLAGS= + . $srcdir/config/ibm-flags ;; gcc) |