aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-08-11 11:38:43 +0300
committerEli Zaretskii2018-08-11 11:38:43 +0300
commiteb026a8d1b3c0cafb987fe5ef132ff078ec79f87 (patch)
tree469dd19435f6974b2d0c5d366af62f2777a0e381
parent5e42c349a0533602c23bf651d6b28eca25e95a46 (diff)
downloademacs-eb026a8d1b3c0cafb987fe5ef132ff078ec79f87.tar.gz
emacs-eb026a8d1b3c0cafb987fe5ef132ff078ec79f87.zip
Don't use -Wabi compiler option
* configure.ac: Add -Wabi to the list of disabled warning options. For the details, see http://lists.gnu.org/archive/html/emacs-devel/2018-08/msg00123.html.
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c6101d63538..9542d441d74 100644
--- a/configure.ac
+++ b/configure.ac
@@ -961,6 +961,7 @@ AS_IF([test $gl_gcc_warnings = no],
961 nw="$nw -Wsync-nand" # irrelevant here, and provokes ObjC warning 961 nw="$nw -Wsync-nand" # irrelevant here, and provokes ObjC warning
962 nw="$nw -Wunsafe-loop-optimizations" # OK to suppress unsafe optimizations 962 nw="$nw -Wunsafe-loop-optimizations" # OK to suppress unsafe optimizations
963 nw="$nw -Wbad-function-cast" # These casts are no worse than others. 963 nw="$nw -Wbad-function-cast" # These casts are no worse than others.
964 nw="$nw -Wabi" # Not useful, perceived as noise
964 965
965 # Emacs doesn't care about shadowing; see 966 # Emacs doesn't care about shadowing; see
966 # <https://lists.gnu.org/r/emacs-diffs/2011-11/msg00265.html>. 967 # <https://lists.gnu.org/r/emacs-diffs/2011-11/msg00265.html>.