diff options
author | Stefan Weil | 2012-01-04 22:47:16 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2012-01-13 11:36:59 +0100 |
commit | bd947d30b6757067fa8f8407ef248fd8645383ee (patch) | |
tree | 748d898641b6f0cc7d94c4d81cb10ebd21995ec5 /configure | |
parent | cris: Update paths to match the move of tests/cris (diff) | |
download | qemu-bd947d30b6757067fa8f8407ef248fd8645383ee.tar.gz qemu-bd947d30b6757067fa8f8407ef248fd8645383ee.tar.xz qemu-bd947d30b6757067fa8f8407ef248fd8645383ee.zip |
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 <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |