[svn-r18637] Description:

Bring PGI compiler flags from 1.8 branch, reducing optimization level with
PGI C 9.x

Tested on:
    Linux/64 2.4 (amani) w/PGI C 9.x & 10.x
This commit is contained in:
Quincey Koziol 2010-04-27 14:20:57 -05:00
parent f79ab3b26b
commit 97f4486769

View File

@ -68,15 +68,18 @@ if test "X-pgcc" = "X-$cc_vendor"; then
#esac
# General
H5_CFLAGS="$H5_CFLAGS $arch -Minform,warn"
H5_CFLAGS="$H5_CFLAGS $arch -c99 -Minform=inform"
# Production
# Check for MPI wrapper being used and tweak down compiler options
if test "X-" == "X-$is_mpi"; then
PROD_CFLAGS="-fast -s -Mnoframe"
else
PROD_CFLAGS="-O2 -s"
fi
case "$cc_vendor-$cc_version" in
# Tweak down compiler optimizations for v9.x
pgcc-9.*)
PROD_CFLAGS="-O1 -s"
;;
*)
PROD_CFLAGS="-fast -s"
;;
esac
PROD_CPPFLAGS=
# Debug