[svn-r19131] Description:

Reduce compiler optimizations for v10.6, to work around bug with static
constant char *'s.

Tested on:
    Linux/32 2.4 (jam) w/PGI
This commit is contained in:
Quincey Koziol 2010-07-27 08:09:55 -05:00
parent 95330f3e60
commit ad2f3285b3

View File

@ -72,6 +72,10 @@ if test "X-pgcc" = "X-$cc_vendor"; then
# Production
case "$cc_vendor-$cc_version" in
# Tweak down compiler optimizations for v10.6, it has a bug
pgcc-10.6*)
PROD_CFLAGS="-O1 -s"
;;
# Tweak down compiler optimizations for v9.x
pgcc-9.*)
PROD_CFLAGS="-O1 -s"