Re: [Qemu-devel] [PATCH] sparse: Fix build with sparse on .S files

2015-01-22 Thread Paolo Bonzini
On 22/01/2015 10:53, Christian Borntraeger wrote: > rules.mak has a rule for .S files using CPP. This will result in > errors like > CPP s390-ccw/start.asm > cc: error: unrecognized command line option '-Wbitwise' > > Lets also redefine CPP in case of --enable-sparse. > > Signed-off-by: Ch

[Qemu-devel] [PATCH] sparse: Fix build with sparse on .S files

2015-01-22 Thread Christian Borntraeger
rules.mak has a rule for .S files using CPP. This will result in errors like CPP s390-ccw/start.asm cc: error: unrecognized command line option '-Wbitwise' Lets also redefine CPP in case of --enable-sparse. Signed-off-by: Christian Borntraeger --- configure | 1 + 1 file changed, 1 inserti

Re: [Qemu-devel] [PATCH] [sparse] fix build

2014-10-15 Thread Gerd Hoffmann
On Mi, 2014-10-15 at 12:10 +0200, Gerd Hoffmann wrote: > Signed-off-by: Gerd Hoffmann Oops, leftover patch file, please ignore this one. sorry, Gerd

[Qemu-devel] [PATCH] [sparse] fix build

2014-10-15 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 9802e89..060c42a 100755 --- a/configure +++ b/configure @@ -4939,6 +4939,7 @@ echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $con

[Qemu-devel] [PATCH] sparse: fix build

2014-10-15 Thread Gerd Hoffmann
c++ compiler isn't wrapped with cgcc, resulting in gcc complaining about the sparse compiler flags which it doesn't know in case qemu is built with --enable-sparse. Signed-off-by: Gerd Hoffmann --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 9ac2600.