Re: [Qemu-devel] [PATCH v4 18/49] tests/tcg: enable building for i386

2018-05-18 Thread Paolo Bonzini
On 17/05/2018 19:46, Alex Bennée wrote: > + > +# Specialist test runners > +.PHONY: pi_10.com > +pi_10.com: > + cp $(I386_SRC)/pi_10.com . > + > +run-runcom: runcom pi_10.com > + $(call quiet-command, $(QEMU) ./runcom ./pi_10.com > runcom.out, > "TEST", "$< on $(TARGET_NAME)") > + Why

[Qemu-devel] [PATCH v4 18/49] tests/tcg: enable building for i386

2018-05-17 Thread Alex Bennée
While you can construct a compile command that does work using the x86_64 host compiler that most people use this is flakey. Different distros handle this is different ways so we default to using a known good i386 compiler via docker. Signed-off-by: Alex Bennée