diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-10-16 00:17:03 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-10-16 00:17:03 (GMT) |
commit | 091fb5951ca8845a1679b8dc474a63ade63260a9 (patch) | |
tree | 30d9e505e61f69fe199888e6c873f1dbf5ddad6c /config/powerpc-ibm-aix5.x | |
parent | 0753ed302ad37c22620e7317765bfde3339835e8 (diff) | |
download | hdf5-091fb5951ca8845a1679b8dc474a63ade63260a9.zip hdf5-091fb5951ca8845a1679b8dc474a63ade63260a9.tar.gz hdf5-091fb5951ca8845a1679b8dc474a63ade63260a9.tar.bz2 |
[svn-r17659] Changed the default fortran compilers from xlf and mpxlf_r to
xlf90 and mpxlf90_r respectively. The fortran 90 compilers support
free format source files. This allows the removal of -k so that
the default compiler command is cleaner.
Tested: AIX Up at LLNL.
(Note: mpxlf90_r does not work but this could have been an undetected
old problem.)
Diffstat (limited to 'config/powerpc-ibm-aix5.x')
-rw-r--r-- | config/powerpc-ibm-aix5.x | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index e7bb90f..11a55fa 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -128,9 +128,9 @@ ac_cv_sizeof_uint_fast64_t=${ac_cv_sizeof_uint_fast64_t=8} if test "X-" = "X-$FC"; then if test "X-$enable_parallel" = "X-yes"; then - FC=mpxlf_r + FC=mpxlf90_r else - FC=xlf + FC=xlf90 fi fi @@ -141,8 +141,8 @@ fi # to ensure the flag is present for both configure as well as for the build. if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="-qsuffix=f=f90" - FCFLAGS="$FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./ -k" - H5_FCFLAGS="$H5_FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./ -k" + FCFLAGS="$FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./" + H5_FCFLAGS="$H5_FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./" FSEARCH_DIRS="-I./ -I../src" DEBUG_FCFLAGS="-O" PROD_FCFLAGS="-O" |