Re: [Qemu-devel] [PATCH] disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings

2016-01-14 Thread Peter Maydell
On 14 January 2016 at 15:21, Alex Bennée wrote: > > Peter Maydell writes: > >> Commit 8acc216b956 attempted to silence some sign-compare >> warnings in libvixl by adding -Wno-sign-compare to the CFLAGS >> for the relevant objects. Unfortunately it was ineffective >> because it was placed before $

Re: [Qemu-devel] [PATCH] disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings

2016-01-14 Thread Alex Bennée
Peter Maydell writes: > Commit 8acc216b956 attempted to silence some sign-compare > warnings in libvixl by adding -Wno-sign-compare to the CFLAGS > for the relevant objects. Unfortunately it was ineffective > because it was placed before $(QEMU_CFLAGS), so the -Wall in > the general flags overro

[Qemu-devel] [PATCH] disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings

2016-01-14 Thread Peter Maydell
Commit 8acc216b956 attempted to silence some sign-compare warnings in libvixl by adding -Wno-sign-compare to the CFLAGS for the relevant objects. Unfortunately it was ineffective because it was placed before $(QEMU_CFLAGS), so the -Wall in the general flags overrode -Wno-sign-compare rather than vi