1998-04-03 11:29:38 +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.
|
|
|
|
|
|
|
|
|
1998-04-03 11:29:38 +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.
|
1998-11-13 23:06:06 +08:00
|
|
|
#
|
|
|
|
# See BlankForm in this directory for details.
|
1997-08-16 00:40:24 +08:00
|
|
|
|
1999-03-05 04:22:42 +08:00
|
|
|
# The default compiler is `gcc'
|
|
|
|
if test "X-" = "X-$CC"; then
|
2003-07-29 05:38:04 +08:00
|
|
|
CC=gcc
|
|
|
|
CC_BASENAME=gcc
|
1999-03-05 04:22:42 +08:00
|
|
|
fi
|
|
|
|
|
2005-05-08 03:37:48 +08:00
|
|
|
# Add "_XOPEN_SOURCE" define to cpp flags, to quiet warnings
|
2003-02-17 23:54:15 +08:00
|
|
|
# from /usr/include/sys/cdefs.h
|
2005-05-24 04:39:54 +08:00
|
|
|
# (Unless we are using g++ as a C compiler)
|
|
|
|
if test "X-g++" != "X-$CC"; then
|
2006-04-26 05:19:14 +08:00
|
|
|
H5_CPPFLAGS="$H5_CPPFLAGS -D_XOPEN_SOURCE=600"
|
2005-05-24 04:39:54 +08:00
|
|
|
fi
|
2003-02-17 23:54:15 +08:00
|
|
|
|
2005-02-10 21:30:36 +08:00
|
|
|
# Figure out C compiler flags
|
|
|
|
. $srcdir/config/gnu-flags
|
|
|
|
|
|
|
|
# Figure out Intel C compiler flags
|
|
|
|
. $srcdir/config/intel-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
|
2005-02-10 21:30:36 +08:00
|
|
|
case $CC_BASENAME in
|
|
|
|
gcc*|pgcc*)
|
[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=gfortran40
|
|
|
|
FC_BASENAME=gfortran40
|
2005-02-10 21:30:36 +08:00
|
|
|
;;
|
|
|
|
icc*)
|
[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=ifort
|
|
|
|
FC_BASENAME=ifort
|
2005-02-10 21:30:36 +08:00
|
|
|
;;
|
|
|
|
mpicc*)
|
[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=mpif90
|
|
|
|
FC_BASENAME=mpif90
|
2005-02-10 21:30:36 +08:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2004-12-17 10:27:41 +08:00
|
|
|
# Figure out FORTRAN compiler flags
|
|
|
|
. $srcdir/config/gnu-fflags
|
|
|
|
|
2005-02-10 21:30:36 +08:00
|
|
|
# Figure out Intel F90 compiler flags
|
|
|
|
. $srcdir/config/intel-fflags
|
|
|
|
|
2002-01-03 03:05:30 +08:00
|
|
|
# Special setup to use pthread support if enable-threadsafe is on.
|
|
|
|
# Works with static executable only.
|
|
|
|
if test "X-" != "X-$enable_threadsafe"; then
|
2006-04-29 03:14:23 +08:00
|
|
|
H5_CFLAGS="$H5_CFLAGS -D_THREAD_SAFE"
|
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS -D_THREAD_SAFE"
|
2003-07-29 05:38:04 +08:00
|
|
|
LDFLAGS="$LDFLAGS -pthread"
|
2002-01-03 03:05:30 +08:00
|
|
|
fi
|
2005-01-14 06:01:52 +08:00
|
|
|
|
|
|
|
# Temporarily hard set this variable. The problem of loss of the last 2 bytes of mantissa
|
|
|
|
# turns out to be elusive. Hard set it until a better solution is found.
|
|
|
|
hdf5_cv_ullong_to_ldouble_precision_works=${hdf5_cv_ullong_to_ldouble_precision_works='no'}
|