Re: [Qemu-devel] [PATCH] configure: disable clang -Wstring-plus-int warning

2013-08-20 Thread Peter Maydell
Ping for qemu-trivial now 1.7 is open. thanks -- PMM On 5 August 2013 20:16, Peter Maydell wrote: > Some versions of clang will warn about adding integers to strings: > > disas/i386.c:4753:23: error: adding 'char' to a string does not append > to the string [-Werror,-Wstring-plus-int] >

Re: [Qemu-devel] [PATCH] configure: disable clang -Wstring-plus-int warning

2013-08-06 Thread Markus Armbruster
Peter Maydell writes: > Some versions of clang will warn about adding integers to strings: > > disas/i386.c:4753:23: error: adding 'char' to a string does not append > to the string [-Werror,-Wstring-plus-int] > oappend ("%es:" + intel_syntax); >~~~^~ >

[Qemu-devel] [PATCH] configure: disable clang -Wstring-plus-int warning

2013-08-05 Thread Peter Maydell
Some versions of clang will warn about adding integers to strings: disas/i386.c:4753:23: error: adding 'char' to a string does not append to the string [-Werror,-Wstring-plus-int] oappend ("%es:" + intel_syntax); ~~~^~ disas/i386.c:4753:23: note: use arra