https://bugs.winehq.org/show_bug.cgi?id=52538
--- Comment #7 from Josesk Volpe joseskvolpe@gmail.com --- (In reply to joaopa from comment #6)
Did you compile with mingw?
I do have mingw-w64-gcc package installed I followed the wiki to compile Wine and i've made this script to do everything automatically, but i'm not much sure it uses mingw :s
#!/bin/sh rm -r /home/joseskvolpe/yamahatest # remove the prefix cd wine64-build CC="ccache gcc" ../wine/configure --enable-win64 --disable-tests make -j3 cd ../wine32-build/ CC="ccache gcc -m32" PKG_CONFIG_PATH=/usr/lib ../wine/configure --with-wine64=../wine64-build --disable-tests make -j3
I use it on the first compile, then i comment the configure commands so i won't lost time configuring it again on the next bisect