diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-14 06:46:31 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-14 06:46:31 +0000 |
commit | ac41a6206fe9e1506010cd0aa9cf56ed3b37ae19 (patch) | |
tree | 7e088d0dfc6d1bb2f80d92ce1f2495461db55020 /Makefile.target | |
parent | 7ccfb2eb5f9d91bdb4139cb420a3b5f8deb2f6e8 (diff) |
Enable gcc flag -Wwrite-strings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5207 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 91967ec65..ac99df13d 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) |