On Thu, Mar 14, 2013 at 05:57:10PM +0000, Peter Maydell wrote: > -block-obj-$(CONFIG_WIN32) += coroutine-win32.o
"win32" > +block-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o ...backend name expanded into object file name... > +if test "$coroutine" = ""; then > + if test "$mingw32" = "yes"; then > + coroutine=windows "windows" Please change "windows" to "win32" so the Windows build works. Stefan