[svn-r29142] Updated the Intel files in config to use the new NO_SYMBOLS flags

and modified the failsafe configure flags in ibm-aix to use the
new scheme.
This commit is contained in:
Dana Robinson
2016-02-17 13:15:58 -05:00
parent 52705fa6f0
commit b3df4e9c8d
3 changed files with 44 additions and 13 deletions
+41 -8
View File
@@ -59,9 +59,25 @@ if test "X-" = "X-$f9x_flags_set"; then
FCFLAGS="$FCFLAGS ${F9XSUFFIXFLAG}"
H5_FCFLAGS="$H5_FCFLAGS ${F9XSUFFIXFLAG}"
FSEARCH_DIRS="-I./ -I../src"
DEBUG_FCFLAGS="-g"
PROD_FCFLAGS="-O"
PROFILE_FCFLAGS="-g -pg"
# Produciton
PROD_FCFLAGS=
# Debug
DEBUG_FCFLAGS=
# Symbols
SYMBOLS_FCFLAGS="-g"
NO_SYMBOLS_FCFLAGS=
# Profiling
PROFILE_FCFLAGS="-pg"
# Optimization
HIGH_OPT_FCFLAGS="-O"
DEBUG_OPT_FCFLAGS=
NO_OPT_FCFLAGS=
f9x_flags_set=yes
fi
@@ -91,13 +107,30 @@ case $CC_BASENAME in
;;
*)
# Undetermined compiler
# Use very generic flags
H5_CFLAGS="$H5_CFLAGS -ansi"
DEBUG_CFLAGS="-g"
DEBUG_CPPFLAGS=
PROD_CFLAGS="-O"
PROD_CPPFLAGS=
# Produciton
PROD_CFLAGS=
# Debug
DEBUG_CFLAGS=
# Symbols
SYMBOLS_CFLAGS="-g"
NO_SYMBOLS_CFLAGS=
# Profiling
PROFILE_CFLAGS="-pg"
PROFILE_CPPFLAGS=
# Optimization
HIGH_OPT_CFLAGS="-O"
DEBUG_OPT_CFLAGS=
NO_OPT_CFLAGS=
# Flags are set
cc_flags_set=yes
;;
esac
+1
View File
@@ -80,6 +80,7 @@ if test "X-ifort" = "X-$f9x_vendor"; then
# Symbols
SYMBOLS_FCFLAGS="-g"
NO_SYMBOLS_FCFLAGS=
# Profiling
# Use this for profiling with gprof
+2 -5
View File
@@ -70,23 +70,20 @@ if test "X-icc" = "X-$cc_vendor"; then
# Default to C99 standard.
H5_CFLAGS="${H5_CFLAGS:--std=c99 $arch} -Wcheck -Wall"
# Production is set to default; see settings for specific version further down
# Production
PROD_CFLAGS=
PROD_CPPFLAGS=
# Debug
# NDEBUG is handled explicitly in configure
DEBUG_CFLAGS=
DEBUG_CPPFLAGS=
# Symbols
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
NO_SYMBOLS_CFLAGS=
# Profiling
# Use this for profiling with gprof
PROFILE_CFLAGS="-p"
PROFILE_CPPFLAGS=
# Optimization
HIGH_OPT_CFLAGS="-O"