From: Stefan Weil Date: Wed, 4 Jan 2012 21:47:16 +0000 (+0100) Subject: configure: Modify detection of supported warning options X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bd947d30b6757067fa8f8407ef248fd8645383ee;p=qemu-xen-4.6-testing.git configure: Modify detection of supported warning options Reversing the order of the warning options and -Werror is important when clang is used instead of gcc. It changes nothing for gcc. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/configure b/configure index eb9a01d65..467e87bf0 100755 --- a/configure +++ b/configure @@ -1105,7 +1105,7 @@ cat > $TMPC << EOF int main(void) { return 0; } EOF for flag in $gcc_flags; do - if compile_prog "$flag -Werror" "" ; then + if compile_prog "-Werror $flag" "" ; then QEMU_CFLAGS="$QEMU_CFLAGS $flag" fi done