summaryrefslogtreecommitdiffstats
path: root/config/gnu-flags
diff options
context:
space:
mode:
Diffstat (limited to 'config/gnu-flags')
-rw-r--r--config/gnu-flags5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/gnu-flags b/config/gnu-flags
index a79cc72..eef38ad 100644
--- a/config/gnu-flags
+++ b/config/gnu-flags
@@ -156,6 +156,11 @@ case "$cc_vendor-$cc_version" in
gcc-3.*)
PROD_CFLAGS="-O3"
;;
+ gcc-4.8.*)
+ # temp patch: when GCC 4.8.x is used for Linux, dt_arith fails if -O*
+ # is used. Remove any -O* flags. (AKC HDFFV-8500)
+ PROD_CFLAGS="`echo $PROD_CFLAGS | sed -e 's/-O[0-3]*//'`"
+ ;;
gcc-4.*)
PROD_CFLAGS="-O3"
;;