mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
427ff7da28
Bug Fix/Code Cleanup/Doc Cleanup/Optimization/Branch Sync :-) Description: Generally speaking, this is the "signed->unsigned" change to selections. However, in the process of merging code back, things got stickier and stickier until I ended up doing a big "sync the two branches up" operation. So... I brought back all the "infrastructure" fixes from the development branch to the release branch (which I think were actually making some improvement in performance) as well as fixed several bugs which had been fixed in one branch, but not the other. I've also tagged the repository before making this checkin with the label "before_signed_unsigned_changes". Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel & fphdf5 FreeBSD 4.10 (sleipnir) w/threadsafe FreeBSD 4.10 (sleipnir) w/backward compatibility Solaris 2.7 (arabica) w/"purify options" Solaris 2.8 (sol) w/FORTRAN & C++ AIX 5.x (copper) w/parallel & FORTRAN IRIX64 6.5 (modi4) w/FORTRAN Linux 2.4 (heping) w/FORTRAN & C++ Misc. update:
139 lines
3.0 KiB
Bash
139 lines
3.0 KiB
Bash
# -*- 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.
|
|
|
|
# Use Intel C compiler by default (if it's available).
|
|
if test "X$CC" = "X" && which icc > /dev/null; then
|
|
CC=icc
|
|
CC_BASENAME=icc
|
|
fi
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Compiler flags. The CPPFLAGS values should not include package debug
|
|
# flags like `-DH5G_DEBUG' since these are added with the
|
|
# `--enable-debug' switch of configure.
|
|
|
|
case $CC_BASENAME in
|
|
ecc|icc)
|
|
. $srcdir/config/intel-flags
|
|
;;
|
|
|
|
gcc)
|
|
. $srcdir/config/gnu-flags
|
|
;;
|
|
|
|
*)
|
|
CFLAGS="$CFLAGS -ansi"
|
|
DEBUG_CFLAGS="-g"
|
|
DEBUG_CPPFLAGS=
|
|
PROD_CFLAGS="-O"
|
|
PROD_CPPFLAGS=
|
|
PROFILE_CFLAGS="-pg"
|
|
PROFILE_CPPFLAGS=
|
|
;;
|
|
esac
|
|
|
|
# The default Fortran 90 compiler
|
|
|
|
#
|
|
# HDF5 integers
|
|
#
|
|
# R_LARGE is the number of digits for the bigest integer supported.
|
|
# R_INTEGER is the number of digits in INTEGER
|
|
#
|
|
# (for the Linux architechture)
|
|
#
|
|
|
|
R_LARGE=18
|
|
R_INTEGER=9
|
|
|
|
# Use Intel Fortran compiler by default.
|
|
if test "X-$F9X" = "X-"; then
|
|
F9X="ifort"
|
|
fi
|
|
|
|
case $F9X in
|
|
*efc|*ifort)
|
|
# this is for efc v7. Older efc do not work with these.
|
|
# -Vaxlib is for non-standard fortran calls like exit().
|
|
MORE_FFLAGS='-fpp -DDEC$=DEC_ -DMS$=MS_ -Vaxlib'
|
|
FFLAGS="$FFLAGS $MORE_FFLAGS"
|
|
HSIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
HSSIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
HID_T='SELECTED_INT_KIND(R_INTEGER)'
|
|
SIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
OBJECT_NAMELEN_DEFAULT_F=-1
|
|
f9x_flags_set=yes
|
|
;;
|
|
|
|
*)
|
|
HSIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
HSSIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
HID_T='SELECTED_INT_KIND(R_INTEGER)'
|
|
SIZE_T='SELECTED_INT_KIND(R_LARGE)'
|
|
OBJECT_NAMELEN_DEFAULT_F=-1
|
|
f9x_flags_set=yes
|
|
;;
|
|
esac
|
|
|
|
# The following is not right and need work.
|
|
if test "X$f9x_flags_set" = "X"; then
|
|
F9XSUFFIXFLAG=""
|
|
FSEARCH_DIRS=""
|
|
FFLAGS="$FFLAGS"
|
|
DEBUG_FFLAGS=""
|
|
PROD_FFLAGS=""
|
|
PROFILE_FFLAGS=""
|
|
f9x_flags_set=yes
|
|
fi
|
|
|
|
# The Default settings for C++
|
|
if test -z "$CXX"; then
|
|
CXX=icc
|
|
CXX_BASENAME=icc
|
|
fi
|
|
|
|
# A patch to make g++ getting the default settings.
|
|
# CXX_BASENAME should have been set in configure.
|
|
if test "X$CXX" = "Xg++"; then
|
|
CXX_BASENAME=g++
|
|
fi
|
|
|
|
|
|
case $CXX_BASENAME in
|
|
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=
|
|
;;
|
|
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.
|
|
CXXFLAGS="${CXXFLAGS:--std=c99}"
|
|
DEBUG_CXXFLAGS="-g"
|
|
DEBUG_CPPFLAGS=
|
|
PROD_CXXFLAGS="-O"
|
|
PROD_CPPFLAGS=
|
|
PROFILE_CXXFLAGS="-pg"
|
|
PROFILE_CPPFLAGS=
|
|
;;
|
|
esac
|
|
|
|
|