mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
f79ab3b26b
commit
97f4486769
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user