summaryrefslogtreecommitdiffstats
path: root/config/intel-flags
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2014-04-11 18:50:55 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2014-04-11 18:50:55 (GMT)
commit17a1f1a5976b98db1788200f0b015694f85cb008 (patch)
tree0334bcff5cac09f99eb858fdaa0011f182270dbd /config/intel-flags
parent29791cf160f67f4cccf293c57a5b9479407f7c1b (diff)
downloadhdf5-17a1f1a5976b98db1788200f0b015694f85cb008.zip
hdf5-17a1f1a5976b98db1788200f0b015694f85cb008.tar.gz
hdf5-17a1f1a5976b98db1788200f0b015694f85cb008.tar.bz2
[svn-r25017] Merge r24997 changes from trunk.
Added compiler versions for mpich to settings file and configure summary. For make installcheck, compile and run installed examples using the installed scripts. They were being compiled but not run. Add Fortran2003 examples to the run-ex-fortran script when fortran2003 is enabled. Set flag to -O3 in production mode for Intel compilers other than those with specified other settings. Gentoo patches: Remove unnecessary setting of LD_LIBRARY_PATH from configure. Prevent potential array subscript out of bounds error in perform/pio_engine.c and sio_engine.c. Tested with h5committest on jam, koala, ostrich and platypus.
Diffstat (limited to 'config/intel-flags')
-rw-r--r--config/intel-flags11
1 files changed, 6 insertions, 5 deletions
diff --git a/config/intel-flags b/config/intel-flags
index 1d01d7f..3187daf 100644
--- a/config/intel-flags
+++ b/config/intel-flags
@@ -92,12 +92,8 @@ fi
#
# Please follow the pattern below by adding new versions at the top, copying
# the information from the previous version and adding modifications to that.
+# The default at the bottom will apply if no earlier version matches.
case "$cc_vendor-$cc_version" in
- icc-11* | icc-12*)
- # -s became obsolete; we also fixed bugs that allow us to enable higher level
- # of optimization starting with 1.8.7
- PROD_CFLAGS="-O3"
- ;;
icc-10*)
PROD_CFLAGS="-O1 -Wl,-s"
;;
@@ -105,6 +101,11 @@ case "$cc_vendor-$cc_version" in
# v8.0 -O3 infinite loops when compiling test/tselect.c. Use -O2.
PROD_CFLAGS="-O2 -Wl,-s"
;;
+ icc-*)
+ # -s became obsolete; we also fixed bugs that allow us to enable higher level
+ # of optimization starting with 1.8.7
+ PROD_CFLAGS="-O3"
+ ;;
esac
# Clear cc info if no flags set