2020-04-05 23:50:08 +08:00
|
|
|
# -*- shell-script -*-
|
2016-01-27 14:23:40 +08:00
|
|
|
#
|
|
|
|
# Copyright by The HDF Group.
|
|
|
|
# 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
|
2017-04-18 03:32:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2016-01-27 14:23:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
# This file should be sourced into configure if the compiler is the
|
|
|
|
# GNU g++ compiler or a derivative. It is careful not to do anything
|
|
|
|
# if the compiler is not GNU; otherwise `cxx_flags_set' is set to `yes'
|
|
|
|
#
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
#
|
|
|
|
# For now, do not promote any warnings to errors.
|
|
|
|
#
|
|
|
|
PROMOTE_ERRORS_DFLT=no
|
|
|
|
|
|
|
|
#
|
|
|
|
# This filter rewrites -Werror= as -W, in that way demoting warnings
|
|
|
|
# promoted to errors back to warnings, if PROMOTE_ERRORS is no.
|
|
|
|
#
|
|
|
|
demote_errors()
|
|
|
|
{
|
|
|
|
if [ ${PROMOTE_ERRORS:-${PROMOTE_ERRORS_DFLT}} = no ]; then
|
|
|
|
sed 's,-Werror=,-W,g'
|
|
|
|
else
|
|
|
|
cat
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Prepend `$srcdir/config/gnu-warnings/` to the filename suffix(es) given as
|
|
|
|
# subroutine argument(s), remove comments starting with # and ending
|
|
|
|
# at EOL, replace spans of whitespace (including newlines) with spaces,
|
|
|
|
# and re-emit the file(s) thus filtered on the standard output stream.
|
|
|
|
#
|
|
|
|
load_gnu_arguments()
|
|
|
|
{
|
|
|
|
set -- $(for arg; do
|
2020-04-24 03:32:29 +08:00
|
|
|
sed 's,#.*$,,' $srcdir/config/gnu-warnings/${arg}
|
2020-04-05 23:50:08 +08:00
|
|
|
done)
|
|
|
|
IFS=' ' echo "$*"
|
|
|
|
}
|
|
|
|
|
2016-01-27 14:23:40 +08:00
|
|
|
# Get the compiler version in a way that works for g++
|
|
|
|
# unless a compiler version is already known
|
|
|
|
#
|
|
|
|
# cxx_vendor: The compiler name: g++
|
|
|
|
# cxx_version: Version number: 2.91.60, 2.7.2.1
|
|
|
|
#
|
2020-04-05 23:50:08 +08:00
|
|
|
if test "X-" = "X-$cxx_flags_set"; then
|
2016-01-27 14:23:40 +08:00
|
|
|
# PathScale compiler spits out gcc version string too. Need to
|
|
|
|
# filter it out.
|
|
|
|
# icc beginning with version 12 includes a "gcc version compatiblilty"
|
2020-04-05 23:50:08 +08:00
|
|
|
# string, causing the gcc H5_CXXFLAGS to be erroneously added. The line
|
2016-01-27 14:23:40 +08:00
|
|
|
# "grep -v 'icc version'" causes the discarding of any output
|
2020-04-05 23:50:08 +08:00
|
|
|
# containing 'icc version'. The cxx_version for icc is correctly determined
|
2016-01-27 14:23:40 +08:00
|
|
|
# and flags added in the intel-flags script.
|
|
|
|
cxx_version="`$CXX $CXXFLAGS $H5_CXXFLAGS -v 2>&1 | grep -v 'PathScale' |\
|
2020-02-28 07:06:41 +08:00
|
|
|
grep -v '^icc.*version' |\
|
2016-01-27 14:23:40 +08:00
|
|
|
grep 'gcc version' | sed 's/.*gcc version \([-a-z0-9\.]*\).*/\1/'`"
|
|
|
|
cxx_vendor=`echo $cxx_version |sed 's/\([a-z]*\).*/\1/'`
|
|
|
|
cxx_version=`echo $cxx_version |sed 's/[-a-z]//g'`
|
|
|
|
if test X = "X$cxx_vendor" -a X != "X$cxx_version"; then
|
2020-04-05 23:50:08 +08:00
|
|
|
cxx_vendor=g++
|
2016-01-27 14:23:40 +08:00
|
|
|
fi
|
|
|
|
if test "-" != "$cxx_vendor-$cxx_version"; then
|
2020-04-05 23:50:08 +08:00
|
|
|
echo "compiler '$CXX' is GNU $cxx_vendor-$cxx_version"
|
2016-01-27 14:23:40 +08:00
|
|
|
fi
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# Get the compiler version numbers
|
2016-01-27 14:23:40 +08:00
|
|
|
cxx_vers_major=`echo $cxx_version | cut -f1 -d.`
|
|
|
|
cxx_vers_minor=`echo $cxx_version | cut -f2 -d.`
|
|
|
|
cxx_vers_patch=`echo $cxx_version | cut -f3 -d.`
|
2020-04-21 05:03:08 +08:00
|
|
|
test -n "$cxx_vers_major" || cxx_vers_major=0
|
|
|
|
test -n "$cxx_vers_minor" || cxx_vers_minor=0
|
|
|
|
test -n "$cxx_vers_patch" || cxx_vers_patch=0
|
2016-01-27 14:23:40 +08:00
|
|
|
cxx_vers_all=`expr $cxx_vers_major '*' 1000000 + $cxx_vers_minor '*' 1000 + $cxx_vers_patch`
|
|
|
|
fi
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
if test "X-g++" = "X-$cxx_vendor"; then
|
|
|
|
|
|
|
|
###############################
|
|
|
|
# Architecture-specific flags #
|
|
|
|
###############################
|
|
|
|
|
2016-01-27 14:23:40 +08:00
|
|
|
arch=
|
|
|
|
case "$host_os-$host_cpu" in
|
|
|
|
# FreeBSD sets the information from "uname -m" to the general machine
|
|
|
|
# architecture, not the specific CPU for the machine, so even our
|
|
|
|
# Pentium II Xeon server is set to "i386". Once we know we are on a FreeBSD
|
|
|
|
# machine, use the "sysctl" command to get the CPU hardware model.
|
|
|
|
freebsd*-i386)
|
|
|
|
host_cpu_model=`sysctl -n hw.model`
|
|
|
|
case "$host_cpu_model" in
|
|
|
|
# Hmm.. this might not catch Celerons, but it won't hurt them either...
|
|
|
|
*Pro*|*II*|*III*|*IV*|*Athlon*)
|
|
|
|
# architecture-specific optimizations cause problems
|
|
|
|
# for some users who build binaries to be used on
|
|
|
|
# multiple architectures.
|
|
|
|
# arch="-march=i686"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
|
|
|
|
*-i686)
|
|
|
|
# architecture-specific optimizations cause problems
|
|
|
|
# for some users who build binaries to be used on
|
|
|
|
# multiple architectures.
|
|
|
|
# arch="-march=i686"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# C++-specific
|
2020-04-11 03:13:26 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $arch"
|
2020-04-05 23:50:08 +08:00
|
|
|
|
|
|
|
##############
|
|
|
|
# Production #
|
|
|
|
##############
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2016-02-17 10:16:27 +08:00
|
|
|
# NDEBUG is handled explicitly by the configure script
|
2020-04-05 23:50:08 +08:00
|
|
|
if test $cxx_vers_major -le 4; then
|
2016-02-17 10:16:27 +08:00
|
|
|
PROD_CXXFLAGS=
|
2020-04-05 23:50:08 +08:00
|
|
|
else
|
2016-02-17 10:16:27 +08:00
|
|
|
PROD_CXXFLAGS="-fstdarg-opt"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
#########
|
|
|
|
# Debug #
|
|
|
|
#########
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2016-02-17 10:16:27 +08:00
|
|
|
# NDEBUG is handled explicitly by the configure script
|
2020-04-05 23:50:08 +08:00
|
|
|
# -g is handled by the symbols flags
|
|
|
|
if test $cxx_vers_major -le 4; then
|
2016-02-17 10:16:27 +08:00
|
|
|
DEBUG_CXXFLAGS=
|
2020-04-05 23:50:08 +08:00
|
|
|
else
|
|
|
|
DEBUG_CXXFLAGS="-ftrapv -fno-common"
|
|
|
|
fi
|
|
|
|
|
2021-02-09 07:23:09 +08:00
|
|
|
########################
|
|
|
|
# Enhanced Diagnostics #
|
|
|
|
########################
|
|
|
|
|
2021-03-04 20:29:10 +08:00
|
|
|
if test $cxx_vers_major -ge 10; then
|
2021-02-09 07:23:09 +08:00
|
|
|
NO_DIAGS_CXXFLAGS="-fdiagnostics-urls=never -fno-diagnostics-color"
|
|
|
|
fi
|
|
|
|
DIAGS_CXXFLAGS=
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
###########
|
|
|
|
# Symbols #
|
|
|
|
###########
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2016-02-17 10:16:27 +08:00
|
|
|
NO_SYMBOLS_CXXFLAGS="-s"
|
|
|
|
SYMBOLS_CXXFLAGS="-g"
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
#############
|
|
|
|
# Profiling #
|
|
|
|
#############
|
|
|
|
|
2016-02-17 10:16:27 +08:00
|
|
|
PROFILE_CXXFLAGS="-pg"
|
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
################
|
|
|
|
# Optimization #
|
|
|
|
################
|
|
|
|
|
|
|
|
if test $cxx_vers_major -le 4; then
|
2016-02-17 10:16:27 +08:00
|
|
|
HIGH_OPT_CXXFLAGS="-O3"
|
|
|
|
DEBUG_OPT_CXXFLAGS=
|
2020-04-05 23:50:08 +08:00
|
|
|
else
|
2016-02-17 10:16:27 +08:00
|
|
|
HIGH_OPT_CXXFLAGS="-O3"
|
|
|
|
DEBUG_OPT_CXXFLAGS="-Og"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-02-17 10:16:27 +08:00
|
|
|
NO_OPT_CXXFLAGS="-O0"
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
############
|
|
|
|
# Warnings #
|
|
|
|
############
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# First load the C warnings then add CXX warnings (if needed)
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
###########
|
|
|
|
# General #
|
|
|
|
###########
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-05-19 03:28:51 +08:00
|
|
|
# Add various general warning flags in gnu-warnings for gcc versions 4.8 and later.
|
|
|
|
if test $cxx_vers_major -eq 4 -a $cxx_vers_minor -ge 8 -o $cxx_vers_major -ge 5; then
|
2020-04-21 05:03:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments cxx-general)"
|
2020-04-24 03:32:29 +08:00
|
|
|
H5_ECXXFLAGS="$H5_ECXXFLAGS $(load_gnu_arguments cxx-error-general)"
|
2020-11-26 01:50:21 +08:00
|
|
|
H5_NECXXFLAGS="$H5_NECXXFLAGS $(load_gnu_arguments cxx-noerror-general)"
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-12-22 02:57:18 +08:00
|
|
|
######################
|
|
|
|
# Developer warnings #
|
|
|
|
######################
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-05-19 03:28:51 +08:00
|
|
|
NO_DEVELOPER_WARNING_CXXFLAGS=$(load_gnu_arguments no-developer-general)
|
|
|
|
DEVELOPER_WARNING_CXXFLAGS=$(load_gnu_arguments developer-general)
|
|
|
|
|
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
#######################
|
|
|
|
# gcc 4 special cases #
|
|
|
|
#######################
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-05-19 03:28:51 +08:00
|
|
|
# GCC 4.8 through the end of GCC 4 series
|
|
|
|
if test $cxx_vers_major -eq 4 -a $cxx_vers_minor -ge 8; then
|
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 4.8-4.last)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
#############################
|
|
|
|
# Version-specific warnings #
|
|
|
|
#############################
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc >= 4.8
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 5 -o $cxx_vers_major -eq 4 -a $cxx_vers_minor -ge 8; then
|
2020-12-22 02:57:18 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments cxx-4.8)"
|
2020-04-24 03:32:29 +08:00
|
|
|
DEVELOPER_WARNING_CXXFLAGS="$DEVELOPER_WARNING_CXXFLAGS $(load_gnu_arguments developer-4.8)"
|
|
|
|
NO_DEVELOPER_WARNING_CXXFLAGS="$NO_DEVELOPER_WARNING_CXXFLAGS $(load_gnu_arguments no-developer-4.8)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc >= 4.9
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 5 -o $cxx_vers_major -eq 4 -a $cxx_vers_minor -ge 9; then
|
2020-04-05 23:50:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 4.9)"
|
2020-04-13 21:16:57 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments cxx-4.9)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc >= 5
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 5; then
|
2020-04-24 03:32:29 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments cxx-5)"
|
|
|
|
H5_ECXXFLAGS="$H5_ECXXFLAGS $(load_gnu_arguments cxx-error-5)"
|
2020-11-26 01:50:21 +08:00
|
|
|
H5_NECXXFLAGS="$H5_NECXXFLAGS $(load_gnu_arguments cxx-noerror-5)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc >= 6
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 6; then
|
2020-04-05 23:50:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 6)"
|
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc >= 7
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 7; then
|
2020-04-05 23:50:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 7)"
|
2020-04-24 03:32:29 +08:00
|
|
|
DEVELOPER_WARNING_CXXFLAGS="$DEVELOPER_WARNING_CXXFLAGS $(load_gnu_arguments developer-7)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc 8
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 8; then
|
2020-04-05 23:50:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 8)"
|
2020-04-24 03:32:29 +08:00
|
|
|
#H5_ECXXFLAGS="$H5_ECXXFLAGS $(load_gnu_arguments error-8)"
|
2020-11-26 01:50:21 +08:00
|
|
|
#H5_NECXXFLAGS="$H5_NECXXFLAGS $(load_gnu_arguments noerror-8)"
|
2020-04-24 03:32:29 +08:00
|
|
|
DEVELOPER_WARNING_CXXFLAGS="$DEVELOPER_WARNING_CXXFLAGS $(load_gnu_arguments developer-8)"
|
|
|
|
NO_DEVELOPER_WARNING_CXXFLAGS="$NO_DEVELOPER_WARNING_CXXFLAGS $(load_gnu_arguments no-developer-8)"
|
2020-04-05 23:50:08 +08:00
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
# gcc 9
|
2020-04-21 05:03:08 +08:00
|
|
|
if test $cxx_vers_major -ge 9; then
|
2020-04-05 23:50:08 +08:00
|
|
|
H5_CXXFLAGS="$H5_CXXFLAGS $(load_gnu_arguments 9)"
|
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
2020-04-05 23:50:08 +08:00
|
|
|
#################
|
|
|
|
# Flags are set #
|
|
|
|
#################
|
|
|
|
cxx_flags_set=yes
|
|
|
|
fi
|
2016-01-27 14:23:40 +08:00
|
|
|
|
|
|
|
# Clear cxx info if no flags set
|
|
|
|
if test "X$cxx_flags_set" = "X"; then
|
|
|
|
cxx_vendor=
|
|
|
|
cxx_version=
|
|
|
|
fi
|