2004-01-07 04:54:55 +08:00
|
|
|
# -*- shell-script -*-
|
2005-10-21 22:54:41 +08:00
|
|
|
#
|
2007-02-15 06:29:52 +08:00
|
|
|
# Copyright by The HDF Group.
|
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
|
2007-02-15 06:29:52 +08:00
|
|
|
# http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from help@hdfgroup.org.
|
2005-10-21 22:54:41 +08:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2013-03-25 13:28:47 +08:00
|
|
|
# The default compiler is `clang'.
|
|
|
|
# No support for OS older than darwin 10.X.
|
2004-01-07 04:54:55 +08:00
|
|
|
if test "X-" = "X-$CC"; then
|
2013-03-25 13:28:47 +08:00
|
|
|
case "$host_os" in
|
|
|
|
darwin10.*) # Snow Leopard. Use gcc/g++ because clang++ is not available.
|
|
|
|
CC=gcc
|
|
|
|
CC_BASENAME=gcc
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
CC=clang
|
|
|
|
CC_BASENAME=clang
|
2014-10-02 12:30:53 +08:00
|
|
|
|
|
|
|
# Production
|
|
|
|
PROD_CFLAGS="-O3"
|
2014-10-08 00:35:58 +08:00
|
|
|
PROD_CPPFLAGS=
|
2014-10-02 12:30:53 +08:00
|
|
|
|
|
|
|
# Debug
|
|
|
|
DEBUG_CFLAGS="-g -O0"
|
2014-10-08 00:35:58 +08:00
|
|
|
DEBUG_CPPFLAGS=
|
2014-10-02 12:30:53 +08:00
|
|
|
|
|
|
|
# Profile
|
|
|
|
# Use this for profiling with gprof
|
|
|
|
# Just "-g" for now. More later.
|
|
|
|
PROFILE_CFLAGS="-g"
|
2014-10-08 00:35:58 +08:00
|
|
|
PROFILE_CPPFLAGS=
|
2013-03-25 13:28:47 +08:00
|
|
|
;;
|
|
|
|
esac
|
2004-01-07 04:54:55 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Figure out compiler flags
|
|
|
|
. $srcdir/config/gnu-flags
|
2012-10-10 13:03:36 +08:00
|
|
|
# temp patch: if GCC 4.2.1 is used in Lion or Mountain Lion systems, do not
|
|
|
|
# use -O option as it causes failures in test/dt_arith.
|
|
|
|
case "$host_os" in
|
|
|
|
darwin1[12].*) # lion & mountain lion
|
|
|
|
#echo cc_vendor=$cc_vendor'-'cc_version=$cc_version
|
|
|
|
case "$cc_vendor-$cc_version" in
|
|
|
|
gcc-4.2.1)
|
|
|
|
# Remove any -O flags
|
|
|
|
#echo PROD_CFLAGS=$PROD_CFLAGS
|
|
|
|
PROD_CFLAGS="`echo $PROD_CFLAGS | sed -e 's/-O[0-3]*//'`"
|
|
|
|
#echo new PROD_CFLAGS=$PROD_CFLAGS
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2009-10-13 12:57:31 +08:00
|
|
|
|
|
|
|
. $srcdir/config/intel-flags
|
[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
|
2009-10-13 12:57:31 +08:00
|
|
|
case $CC_BASENAME in
|
2013-03-23 06:05:57 +08:00
|
|
|
clang)
|
|
|
|
# clang has no fortran compiler. Use gfortran.
|
|
|
|
FC=gfortran
|
|
|
|
FC_BASENAME=gfortran
|
|
|
|
;;
|
2009-10-13 12:57:31 +08:00
|
|
|
gcc*)
|
|
|
|
FC=gfortran
|
|
|
|
FC_BASENAME=gfortran
|
|
|
|
;;
|
|
|
|
icc*)
|
|
|
|
FC=ifort
|
|
|
|
FC_BASENAME=ifort
|
|
|
|
;;
|
|
|
|
esac
|
2004-10-09 10:39:07 +08:00
|
|
|
fi
|
2009-10-13 12:57:31 +08:00
|
|
|
|
2013-03-23 06:05:57 +08:00
|
|
|
if test "X-" = "X-$CXX"; then
|
|
|
|
case $CC_BASENAME in
|
|
|
|
clang)
|
|
|
|
CXX=clang++
|
|
|
|
CXX_BASENAME=clang++
|
|
|
|
;;
|
|
|
|
gcc)
|
|
|
|
CXX=g++
|
|
|
|
CXX_BASENAME=g++
|
|
|
|
;;
|
|
|
|
icc)
|
|
|
|
CXX=icpc
|
|
|
|
CXX_BASENAME=icpc
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2014-10-08 00:35:58 +08:00
|
|
|
case $CXX_BASENAME in
|
|
|
|
clang++)
|
|
|
|
PROD_CXXFLAGS="-O3"
|
|
|
|
DEBUG_CXXFLAGS="-g -O0"
|
|
|
|
# Use this for profiling with gprof
|
|
|
|
# Just "-g" for now. More later.
|
|
|
|
PROFILE_CXXFLAGS="-g"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
# compiler version strings
|
|
|
|
case $CC in
|
2013-03-23 06:05:57 +08:00
|
|
|
clang)
|
|
|
|
cc_version_info=`$CC $CFLAGS $H5_CFLAGS --version 2>&1 |\
|
|
|
|
grep 'Apple' | sed 's/(.*//'`
|
|
|
|
;;
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
*gcc*)
|
|
|
|
cc_version_info=`$CC $CFLAGS $H5_CFLAGS --version 2>&1 | grep -v 'PathScale' |\
|
|
|
|
grep 'GCC' | sed 's/.*\((GCC) [-a-z0-9\. ]*.*\)/\1/'`
|
|
|
|
;;
|
|
|
|
|
2010-10-09 04:57:17 +08:00
|
|
|
*icc*)
|
|
|
|
cc_version_info=`$CC $CCFLAGS $H5_CCFLAGS -V 2>&1 | grep 'Version' |\
|
|
|
|
sed 's/\(Intel.* Compiler\).*\( Version [a-z0-9\.]*\).*\( Build [0-9]*\)/\1\2\3/'`
|
|
|
|
;;
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
*)
|
|
|
|
echo "No match to get cc_version_info for $CC"
|
|
|
|
;;
|
|
|
|
esac
|
2013-02-08 08:09:24 +08:00
|
|
|
# Figure out Fortran compiler flags and version strings
|
2010-07-09 10:52:14 +08:00
|
|
|
case $FC in
|
|
|
|
*gfortran*)
|
2013-02-08 08:09:24 +08:00
|
|
|
. $srcdir/config/gnu-fflags
|
2010-07-09 10:52:14 +08:00
|
|
|
fc_version_info=`$FC $FCFLAGS $H5_FCFLAGS --version 2>&1 |\
|
|
|
|
grep 'GCC' | sed 's/\(.*(GCC) [-a-z0-9\. ]*\).*/\1/'`
|
|
|
|
;;
|
2010-10-09 04:57:17 +08:00
|
|
|
|
|
|
|
*ifc*|*ifort*)
|
2013-02-08 08:09:24 +08:00
|
|
|
. $srcdir/config/intel-fflags
|
2010-10-09 04:57:17 +08:00
|
|
|
fc_version_info=`$FC $FCFLAGS $H5_FCFLAGS -V 2>&1 | grep 'Version' |\
|
|
|
|
sed 's/\(Intel.* Compiler\).*\( Version [a-z0-9\.]*\).*\( Build [0-9]*\)/\1\2\3/'`
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2013-02-08 08:09:24 +08:00
|
|
|
echo "No match to get fc_version_info and flags for $FC"
|
2010-10-09 04:57:17 +08:00
|
|
|
;;
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
# get c++ version info
|
|
|
|
case $CXX in
|
2013-03-23 06:05:57 +08:00
|
|
|
clang++)
|
|
|
|
cxx_version_info=`$CXX $CXXFLAGS $H5_CXXFLAGS --version 2>&1 |\
|
|
|
|
grep 'Apple' | sed 's/(.*//'`
|
|
|
|
;;
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
*g++*)
|
|
|
|
cxx_version_info=`$CXX $CXXFLAGS $H5_CXXFLAGS --version 2>&1 |\
|
|
|
|
grep 'GCC' | sed 's/.*\((GCC) [-a-z0-9\. ]*.*\)/\1/'`
|
|
|
|
;;
|
2010-10-09 04:57:17 +08:00
|
|
|
|
|
|
|
*icpc*)
|
|
|
|
cxx_version_info=`$CXX $CXXFLAGS $H5_CXXFLAGS -V 2>&1 | grep 'Version' |\
|
|
|
|
sed 's/\(Intel.* Compiler\).*\( Version [a-z0-9\.]*\).*\( Build [0-9]*\)/\1\2\3/'`
|
|
|
|
;;
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
*)
|
|
|
|
echo "No match to get cxx_version_info for $CXX"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|