2004-01-07 04:54:55 +08:00
|
|
|
# -*- shell-script -*-
|
2005-10-21 22:54:41 +08:00
|
|
|
#
|
|
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
|
|
# the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
# of the source code distribution tree; Copyright.html can be found at the
|
2005-10-29 04:28:20 +08:00
|
|
|
# root level of an installed copy of the electronic HDF5 document set and
|
2005-10-21 22:54:41 +08:00
|
|
|
# is linked from the top-level documents page. It can also be found at
|
|
|
|
# http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
|
|
|
|
|
|
|
|
|
2004-01-07 04:54:55 +08:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
# The default compiler is `gcc'
|
|
|
|
if test "X-" = "X-$CC"; then
|
|
|
|
CC=gcc
|
|
|
|
CC_BASENAME=gcc
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Figure out compiler flags
|
|
|
|
. $srcdir/config/gnu-flags
|
|
|
|
|
|
|
|
# The default Fortran 90 compiler
|
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
2005-03-08 01:57:27 +08:00
|
|
|
if test "X-" = "X-$FC"; then
|
2004-10-09 10:39:07 +08:00
|
|
|
# Assume Absoft compiler
|
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
2005-03-08 01:57:27 +08:00
|
|
|
FC=xlf
|
|
|
|
FC_BASENAME=xlf
|
2004-10-09 10:39:07 +08:00
|
|
|
else
|
2005-10-08 01:56:38 +08:00
|
|
|
|
|
|
|
# Neither xlf nor f95 have a working "version" command.
|
|
|
|
# If FC is set, try to guess which one is being used by examining
|
|
|
|
# the last element in the path to the compiler.
|
|
|
|
|
|
|
|
TEMP_BASENAME=`basename $FC`
|
|
|
|
if test "xlf" = "${TEMP_BASENAME}"; then
|
|
|
|
FC_BASENAME=xlf
|
|
|
|
else
|
|
|
|
FC_BASENAME=f95
|
|
|
|
fi
|
2004-10-09 10:39:07 +08:00
|
|
|
fi
|
2004-01-07 04:54:55 +08:00
|
|
|
|
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
2005-03-08 01:57:27 +08:00
|
|
|
case $FC_BASENAME in
|
2004-07-28 02:53:53 +08:00
|
|
|
xlf)
|
2004-10-09 10:39:07 +08:00
|
|
|
F9XSUFFIXFLAG="-qsuffix=f=f90 -qfree=f90"
|
2006-05-02 06:34:19 +08:00
|
|
|
FCFLAGS="$FCFLAGS ${F9XSUFFIXFLAG}"
|
|
|
|
H5_FCFLAGS="$H5_FCFLAGS -qmoddir=./ "
|
2004-10-09 10:39:07 +08:00
|
|
|
FSEARCH_DIRS="-I./ -I../src"
|
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
2005-03-08 01:57:27 +08:00
|
|
|
DEBUG_FCFLAGS="-g"
|
|
|
|
PROD_FCFLAGS="-O"
|
|
|
|
PROFILE_FCFLAGS="-g"
|
2004-10-09 10:39:07 +08:00
|
|
|
f9x_flags_set=yes
|
|
|
|
;;
|
|
|
|
|
2004-07-28 02:53:53 +08:00
|
|
|
f95)
|
2004-10-09 10:39:07 +08:00
|
|
|
|
|
|
|
F9XSUFFIXFLAG=""
|
2004-07-28 02:53:53 +08:00
|
|
|
# We force compiler to use upper case for external names
|
|
|
|
# (just in case since this should be a default EIP)
|
2006-10-17 06:24:33 +08:00
|
|
|
H5_FCFLAGS="$H5_FCFLAGS"
|
2004-10-09 10:39:07 +08:00
|
|
|
FSEARCH_DIRS=""
|
[svn-r10158] Purpose:
Automake version upgrade
Description:
Upgraded automake version from 1.6.2 to 1.9.5.
Changed bin/reconfigure script to use automake 1.9.5.
Changed configure.in and Makefiles to use new FCFLAGS and FC variables
instead of FFLAGS and F9X.
Automake and configure should now do the lion's share of the work
supporting Fortran 9X; macros in acsite.m4 are now mostly unused (will
be cleaned later).
Altered how configure handles pmake; now root-level Makefile.in is
processed by bin/reconfigure to have a .MAKEFLAGS target, since
automake no longer allows us to define unused variables.
Configure now always checks for C++ compiler even if it is not
used, since automake thinks this is the Right Thing To Do and
will break otherwise.
Platforms tested:
Sol, copper, heping, mir, sleipnir, eirene, pommier, kelgia, modi4.
2005-03-08 01:57:27 +08:00
|
|
|
DEBUG_FCFLAGS="-g"
|
|
|
|
PROD_FCFLAGS="-O"
|
|
|
|
PROFILE_FCFLAGS="-g -pg"
|
2004-10-09 10:39:07 +08:00
|
|
|
f9x_flags_set=yes
|
2005-10-08 01:56:38 +08:00
|
|
|
|
|
|
|
# f95 doesn't support shared libraries
|
|
|
|
echo ' warning: shared libraries are not supported for f95!'
|
|
|
|
echo ' disabling shared libraries'
|
|
|
|
enable_shared="no"
|
2004-10-09 10:39:07 +08:00
|
|
|
;;
|
2004-07-28 02:53:53 +08:00
|
|
|
|
|
|
|
esac
|