Re: [Qemu-devel] [PATCHv2 RFC] makefile: detect corrupted elf files

2013-05-22 Thread Stefan Weil
Am 22.05.2013 00:07, schrieb Michael S. Tsirkin: Once in a while make gets killed and doesn't clean up partial object files after it. Result is nasty errors from link. This hack checks object is well formed before linking, and rebuilds it if not. Signed-off-by: Michael S. Tsirkin

Re: [Qemu-devel] [PATCHv2 RFC] makefile: detect corrupted elf files

2013-05-22 Thread Michael S. Tsirkin
On Wed, May 22, 2013 at 08:32:52AM +0200, Stefan Weil wrote: Am 22.05.2013 00:07, schrieb Michael S. Tsirkin: Once in a while make gets killed and doesn't clean up partial object files after it. Result is nasty errors from link. This hack checks object is well formed before linking, and

[Qemu-devel] [PATCHv2 RFC] makefile: detect corrupted elf files

2013-05-21 Thread Michael S. Tsirkin
Once in a while make gets killed and doesn't clean up partial object files after it. Result is nasty errors from link. This hack checks object is well formed before linking, and rebuilds it if not. Signed-off-by: Michael S. Tsirkin m...@redhat.com --- v1 actually prints some noise on stderr,