1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 09:21:50 -05:00

configure: remove use of -vec-report0 from CFLAGS with icc

... as it apparently isn't (always) supported.
Reported-by: Alain Miniussi
Fixes #5096
Closes #5191
This commit is contained in:
Daniel Stenberg 2020-04-06 17:07:38 +02:00
parent ae57e27b3e
commit efa830f9f6
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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)