From 9720591043003a5262c8f3e1c1720771bc77488b Mon Sep 17 00:00:00 2001 From: nagachika Date: Sun, 5 Jul 2020 07:03:14 +0900 Subject: merge revision(s) 75802bcff1b941818832f0145071f7ce9c843d8d: configure: suppress icc warnings Every time a pointer to/from VALUE conversion happens, these two warnings are issued: - warning #1684: conversion from pointer to same-sized integral type (potential portability problem) - warning #2312: pointer cast involving 64-bit pointed-to type Thank you, but we are well aware of the "potential portability problem". Let us ignore them all. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f1ed36bb96..ccf47a1da9 100644 --- a/configure.ac +++ b/configure.ac @@ -530,7 +530,7 @@ AS_CASE(["$GCC:${warnflags+set}:${extra_warnflags:+set}:"], -Wsuggest-attribute=format \ -Wsuggest-attribute=noreturn \ -Wunused-variable \ - -diag-disable=175,188,2259 \ + -diag-disable=175,188,1684,2259,2312 \ $extra_warnflags \ ; do AS_IF([test "$particular_werror_flags" != yes], [ -- cgit v1.2.3