diff options
author | blueswir1 | 2008-09-14 08:46:31 +0200 |
---|---|---|
committer | blueswir1 | 2008-09-14 08:46:31 +0200 |
commit | ac41a6206fe9e1506010cd0aa9cf56ed3b37ae19 (patch) | |
tree | 7e088d0dfc6d1bb2f80d92ce1f2495461db55020 | |
parent | Fix warnings that would be caused by gcc flag -Wwrite-strings (diff) | |
download | qemu-ac41a6206fe9e1506010cd0aa9cf56ed3b37ae19.tar.gz qemu-ac41a6206fe9e1506010cd0aa9cf56ed3b37ae19.tar.xz qemu-ac41a6206fe9e1506010cd0aa9cf56ed3b37ae19.zip |
Enable gcc flag -Wwrite-strings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5207 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | Makefile.target | 3 | ||||
-rwxr-xr-x | configure | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target index 91967ec65d..ac99df13d9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -73,7 +73,8 @@ endif PROGS=$(QEMU_PROG) # We require -O2 to avoid the stack setup prologue in EXIT_TB -OP_CFLAGS := -Wall -Wundef -Wendif-labels -O2 -g -fno-strict-aliasing +OP_CFLAGS := -O2 -g -fno-strict-aliasing +OP_CFLAGS += -Wall -Wundef -Wendif-labels -Wwrite-strings # cc-option # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0) @@ -346,7 +346,8 @@ for opt do done # default flags for all hosts -CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -O2 -g -fno-strict-aliasing" +CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing" +CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings" LDFLAGS="$LDFLAGS -g" if test "$werror" = "yes" ; then CFLAGS="$CFLAGS -Werror" |