summaryrefslogtreecommitdiffstats
path: root/config/pgi-flags
diff options
context:
space:
mode:
Diffstat (limited to 'config/pgi-flags')
-rw-r--r--config/pgi-flags12
1 files changed, 4 insertions, 8 deletions
diff --git a/config/pgi-flags b/config/pgi-flags
index a6dcba3..f6878e6 100644
--- a/config/pgi-flags
+++ b/config/pgi-flags
@@ -73,31 +73,28 @@ if test "X-pgcc" = "X-$cc_vendor"; then
# Production
case "$cc_vendor-$cc_version" in
pgcc-10.6*)
- PROD_CFLAGS="-s"
+ PROD_CFLAGS=
;;
pgcc-9.*)
- PROD_CFLAGS="-s"
+ PROD_CFLAGS=
;;
*)
- PROD_CFLAGS="-fast -s"
+ PROD_CFLAGS="-fast"
;;
esac
- PROD_CPPFLAGS=
# Debug
# NDEBUG is handled explicitly by the configure script
DEBUG_CFLAGS="-Mbounds"
- DEBUG_CPPFLAGS=
# Symbols
SYMBOLS_CFLAGS="-g"
- SYMBOLS_CPPFLAGS=
+ NO_SYMBOLS_CFLAGS="-s"
# Profiling
PROFILE_CFLAGS="-Mprof=func,line"
# Use this for profiling with gprof
#PROFILE_CFLAGS="-pg"
- PROFILE_CPPFLAGS=
# Optimization
case "$cc_vendor-$cc_version" in
@@ -118,7 +115,6 @@ if test "X-pgcc" = "X-$cc_vendor"; then
# Flags are set
cc_flags_set=yes
-
fi
# Clear cc info if no flags set