summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-04-06 17:07:38 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-04-06 17:07:38 +0200
commit36a36ca480b215c685f93a20419bcacff890094c (patch)
tree9766f193ff834301f3988a20d81af253afac11c0
parent38fa610576f1e33a7ec9a4354abd11f44e2223f2 (diff)
downloadcurl-36a36ca480b215c685f93a20419bcacff890094c.tar.gz
configure: remove use of -vec-report0 from CFLAGS with iccbagder/icc-fixes
... as it apparently isn't (always) supported. Reported-by: Alain Miniussi Fixes #5096
-rw-r--r--m4/curl-compilers.m45
1 files changed, 0 insertions, 5 deletions
diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4
index 196b285be..e732a8722 100644
--- a/m4/curl-compilers.m4
+++ b/m4/curl-compilers.m4
@@ -1164,11 +1164,6 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [
tmp_CFLAGS="$tmp_CFLAGS -fno-strict-aliasing"
dnl Value-safe optimizations on floating-point data
tmp_CFLAGS="$tmp_CFLAGS -fp-model precise"
- dnl Only icc 10.0 or later
- if test "$compiler_num" -ge "1000"; then
- dnl Disable vectorizer diagnostic information
- tmp_CFLAGS="$tmp_CFLAGS -vec-report0"
- fi
;;
#
INTEL_WINDOWS_C)