2003-04-03 00:50:58 +08:00
|
|
|
# -*- 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.
|
|
|
|
|
2003-12-14 02:46:10 +08:00
|
|
|
# Use Intel C compiler by default (if it's available).
|
2004-11-24 04:48:06 +08:00
|
|
|
if test "X$CC" = "X" && which icc > /dev/null; then
|
|
|
|
CC=icc
|
|
|
|
CC_BASENAME=icc
|
2003-04-03 00:50:58 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
# Compiler flags. The CPPFLAGS values should not include package debug
|
|
|
|
# flags like `-DH5G_DEBUG' since these are added with the
|
2004-12-29 22:26:20 +08:00
|
|
|
# `--enable-debug' switch of configure.
|
2003-04-03 00:50:58 +08:00
|
|
|
|
|
|
|
case $CC_BASENAME in
|
2004-08-27 03:03:33 +08:00
|
|
|
ecc|icc)
|
2004-12-04 02:08:14 +08:00
|
|
|
. $srcdir/config/intel-flags
|
2004-07-16 06:45:29 +08:00
|
|
|
;;
|
|
|
|
|
|
|
|
gcc)
|
|
|
|
. $srcdir/config/gnu-flags
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
CFLAGS="$CFLAGS -ansi"
|
|
|
|
DEBUG_CFLAGS="-g"
|
|
|
|
DEBUG_CPPFLAGS=
|
|
|
|
PROD_CFLAGS="-O"
|
|
|
|
PROD_CPPFLAGS=
|
|
|
|
PROFILE_CFLAGS="-pg"
|
|
|
|
PROFILE_CPPFLAGS=
|
|
|
|
;;
|
2003-07-29 05:38:04 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
# The default Fortran 90 compiler
|
|
|
|
|
2003-08-05 02:27:57 +08:00
|
|
|
# Use Intel Fortran compiler by default.
|
[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-$FC" = "X-"; then
|
|
|
|
FC="ifort"
|
2003-08-05 02:27:57 +08:00
|
|
|
fi
|
|
|
|
|
[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 in
|
2004-11-24 04:48:06 +08:00
|
|
|
*efc|*ifort)
|
2003-07-29 05:38:04 +08:00
|
|
|
# this is for efc v7. Older efc do not work with these.
|
|
|
|
# -Vaxlib is for non-standard fortran calls like exit().
|
[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
|
|
|
MORE_FCFLAGS='-fpp -DDEC$=DEC_ -DMS$=MS_ -Vaxlib'
|
|
|
|
FCFLAGS="$FCFLAGS $MORE_FCFLAGS"
|
2003-07-29 05:38:04 +08:00
|
|
|
f9x_flags_set=yes
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
f9x_flags_set=yes
|
|
|
|
;;
|
2003-04-03 00:50:58 +08:00
|
|
|
esac
|
2003-07-29 05:38:04 +08:00
|
|
|
|
|
|
|
# The following is not right and need work.
|
|
|
|
if test "X$f9x_flags_set" = "X"; then
|
|
|
|
F9XSUFFIXFLAG=""
|
|
|
|
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
|
|
|
FCFLAGS="$FCFLAGS"
|
|
|
|
DEBUG_FCFLAGS=""
|
|
|
|
PROD_FCFLAGS=""
|
|
|
|
PROFILE_FCFLAGS=""
|
2003-07-29 05:38:04 +08:00
|
|
|
f9x_flags_set=yes
|
|
|
|
fi
|
2004-08-06 07:02:26 +08:00
|
|
|
|
|
|
|
# The Default settings for C++
|
2005-05-26 23:29:45 +08:00
|
|
|
# Intel changed C++ compiler's name from "icc" to "icpc" in version 8.1
|
2004-08-06 07:02:26 +08:00
|
|
|
if test -z "$CXX"; then
|
2005-05-26 23:29:45 +08:00
|
|
|
CXX=icpc
|
|
|
|
CXX_BASENAME=icpc
|
2004-08-06 07:02:26 +08:00
|
|
|
fi
|
|
|
|
|
2004-08-27 03:03:33 +08:00
|
|
|
# A patch to make g++ getting the default settings.
|
|
|
|
# CXX_BASENAME should have been set in configure.
|
2004-12-04 02:08:14 +08:00
|
|
|
if test "X$CXX" = "Xg++"; then
|
2004-08-27 03:03:33 +08:00
|
|
|
CXX_BASENAME=g++
|
2004-12-04 02:08:14 +08:00
|
|
|
fi
|
2004-08-27 03:03:33 +08:00
|
|
|
|
2004-08-06 07:02:26 +08:00
|
|
|
|
|
|
|
case $CXX_BASENAME in
|
2004-08-27 03:03:33 +08:00
|
|
|
ecc|icc) # Intel compilers
|
|
|
|
# Default to C99 standard.
|
|
|
|
CXXFLAGS="${CXXFLAGS:--std=c99}"
|
|
|
|
DEBUG_CXXFLAGS="-g -w2 -Wall"
|
|
|
|
DEBUG_CPPFLAGS=
|
|
|
|
PROD_CXXFLAGS="" #Default optimization O2 is used
|
|
|
|
PROD_CPPFLAGS=
|
|
|
|
PROFILE_CXXFLAGS="-pg"
|
|
|
|
PROFILE_CPPFLAGS=
|
|
|
|
;;
|
2004-08-06 07:02:26 +08:00
|
|
|
g++)
|
|
|
|
CXXFLAGS="$CXXFLAGS -Wsign-compare" #Only works for some versions
|
|
|
|
DEBUG_CXXFLAGS="-g -fverbose-asm"
|
|
|
|
DEBUG_CPPFLAGS=
|
|
|
|
PROD_CXXFLAGS="-O3 -fomit-frame-pointer"
|
|
|
|
PROD_CPPFLAGS=
|
|
|
|
PROFILE_CXXFLAGS="-pg"
|
|
|
|
PROFILE_CPPFLAGS=
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
# Default to C99 standard.
|
2004-08-19 23:58:07 +08:00
|
|
|
CXXFLAGS="${CXXFLAGS:--std=c99}"
|
2004-08-27 03:03:33 +08:00
|
|
|
DEBUG_CXXFLAGS="-g"
|
2004-08-06 07:02:26 +08:00
|
|
|
DEBUG_CPPFLAGS=
|
2004-08-27 03:03:33 +08:00
|
|
|
PROD_CXXFLAGS="-O"
|
2004-08-06 07:02:26 +08:00
|
|
|
PROD_CPPFLAGS=
|
|
|
|
PROFILE_CXXFLAGS="-pg"
|
|
|
|
PROFILE_CPPFLAGS=
|
|
|
|
;;
|
|
|
|
esac
|
2005-07-13 03:16:39 +08:00
|
|
|
# We know that for mpich 1.2.5 and previous version, complicated derived datatype is
|
|
|
|
# supported, we need to set the macro to hdf5_mpi_complex_derived_datatype_works to no.
|
|
|
|
# Notice that this fix will only work if the compiler name is mpicc and mpi package is
|
|
|
|
# mpich 1.x.x.
|
|
|
|
if [ -z "$hdf5_mpi_complex_derived_datatype_works" -a $CC_BASENAME = mpicc ]; then
|
|
|
|
ccversion=`$CC -v 2>&1 | sed -e 's/.*for //p'`
|
|
|
|
ccversion1=`echo $ccversion | cut -f1 -d.`
|
|
|
|
ccversion2=`echo $ccversion | cut -f2 -d.`
|
|
|
|
ccversiontemp=`echo $ccversion | cut -f3 -d.`
|
|
|
|
ccversion3=`echo $ccversiontemp | cut -c1`
|
|
|
|
ccversionval=`expr $ccversion1 \* 100 + $ccversion2 \* 10 + $ccversion3`
|
|
|
|
if [ $ccversionval -lt 126 ]; then
|
|
|
|
hdf5_mpi_complex_derived_datatype_works='no'
|
|
|
|
fi
|
|
|
|
fi
|
2004-08-06 07:02:26 +08:00
|
|
|
|