2003-04-03 00:50:58 +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.
|
|
|
|
|
|
|
|
|
2003-04-03 00:50:58 +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.
|
|
|
|
|
2003-12-14 02:46:10 +08:00
|
|
|
# Use Intel C compiler by default (if it's available).
|
2006-08-29 19:19:11 +08:00
|
|
|
# Use mpicc for parallel by default.
|
|
|
|
if test "X$CC" = "X"; then
|
|
|
|
if test "X-$enable_parallel" = "X-yes"; then
|
|
|
|
CC=mpicc
|
|
|
|
CC_BASENAME=mpicc
|
|
|
|
elif which icc > /dev/null; then
|
|
|
|
CC=icc
|
|
|
|
CC_BASENAME=icc
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Define RUNPARALLEL if parallel mode is enabled or a parallel compiler used.
|
|
|
|
if test "X-$enable_parallel" = "X-yes" -o X-$CC_BASENAME = X-mpicc; then
|
|
|
|
RUNPARALLEL=${RUNPARALLEL="mpirun -np \$\${NPROCS:=3}"}
|
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.
|
2006-08-29 19:19:11 +08:00
|
|
|
if test X-$enable_fortran = X-yes -a "X-$FC" = "X-"; then
|
|
|
|
if test "X-$enable_parallel" = "X-yes"; then
|
|
|
|
FC=mpif90
|
|
|
|
else
|
|
|
|
FC="ifort"
|
|
|
|
fi
|
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-10-27 04:44:19 +08:00
|
|
|
# Check MPICH settings
|
|
|
|
. $srcdir/config/mpich
|
2006-02-17 00:51:47 +08:00
|
|
|
#Uncomment the next line if your system doesn't support MPI complex derived datatype.
|
|
|
|
#hdf5_mpi_complex_derived_datatype_works=${hdf5_mpi_complex_derived_datatype_works='no'}
|
|
|
|
#Comment out the following line if your system supports collective IO when some processes
|
|
|
|
#don't have any contributions to IOs.
|
|
|
|
hdf5_mpi_special_collective_io_works=${hdf5_mpi_special_collective_io_works='no'}
|
|
|
|
|