[Spice-commits] m4/spice-compile-warnings.m4
Uri Lublin
uril at kemper.freedesktop.org
Sun Mar 15 05:03:30 PDT 2015
m4/spice-compile-warnings.m4 | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit b2c48e7ebabb14977b0be31ed1ca5f916ff58636
Author: Uri Lublin <uril at redhat.com>
Date: Sun Feb 15 17:11:58 2015 +0200
m4: WARN FLAGS: Drop -Wenum-compare
My RHEL-6 gcc (4.4.7) complains a lot about it:
cc1: warning: command line option "-Wenum-compare" is
valid for C++/ObjC++ but not for C
For older gcc version (e.g. 4.4.7), man gcc says
-Wenum-compare is "C++ and Objective-C++ only".
For newer gcc (e.g. 4.9.2), man gcc says
"In C this warning is enabled by -Wall."
diff --git a/m4/spice-compile-warnings.m4 b/m4/spice-compile-warnings.m4
index 31f2a9c..ee85429 100644
--- a/m4/spice-compile-warnings.m4
+++ b/m4/spice-compile-warnings.m4
@@ -23,6 +23,9 @@ AC_DEFUN([SPICE_COMPILE_WARNINGS],[
dontwarn="$dontwarn -Wc++-compat"
dontwarn="$dontwarn -Wabi"
dontwarn="$dontwarn -Wdeprecated"
+ # For older gcc versions, -Wenum-compare is "C++ and Objective-C++ only"
+ # For newer gcc versions, -Wenum-compare is "enabled by -Wall"
+ dontwarn="$dontwarn -Wenum-compare"
# Don't care about ancient C standard compat
dontwarn="$dontwarn -Wtraditional"
# Don't care about ancient C standard compat
More information about the Spice-commits
mailing list