Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto/cc/icc
diff options
context:
space:
mode:
Diffstat (limited to 'auto/cc/icc')
-rw-r--r--auto/cc/icc6
1 files changed, 6 insertions, 0 deletions
diff --git a/auto/cc/icc b/auto/cc/icc
index 1a4111b93..81b042748 100644
--- a/auto/cc/icc
+++ b/auto/cc/icc
@@ -114,11 +114,17 @@ case "$NGX_ICC_VER" in
# conversion from pointer to same-sized integral type,
# warning on offsetof()
CFLAGS="$CFLAGS -wd1684"
+ # floating-point equality and inequality comparisons are unreliable,
+ # warning on SvTRUE()
+ CFLAGS="$CFLAGS -wd1572"
;;
8.*)
# "cc" clobber ignored, warnings for Liunx's htonl()/htons()
CFLAGS="$CFLAGS -wd1469"
+ # floating-point equality and inequality comparisons are unreliable,
+ # warning on SvTRUE()
+ CFLAGS="$CFLAGS -wd1572"
;;
*)