Hi.
Could someone explain me in details how could I build crosstest binaries on Linux (Debian) to run them on WinXP? Now I've done the following: - clean up my wine tree with 'make clean'; - installed mingw32 package - use configure parameters from http://wiki.winehq.org/CompilingDLLsUsingMingw - use 'make crosstest' from tree top.
After building wine tools I've got:
make[1]: Entering directory `/home/mrlarch/wine/dlls' make[2]: Entering directory `/home/mrlarch/wine/dlls/d3dx9_36' ../../tools/winebuild/winebuild -w --def -o d3dx9_36.def --export ./d3dx9_36.spec false -k -l libd3dx9.a -d d3dx9_36.def make[2]: *** [libd3dx9.a] Error 1 make[2]: Leaving directory `/home/mrlarch/wine/dlls/d3dx9_36' make[1]: *** [d3dx9_36/libd3dx9.a] Error 2 make[1]: Leaving directory `/home/mrlarch/wine/dlls' make: *** [dlls/__crosstest__] Error 2
What should I do with that?
Am Samstag, den 12.07.2008, 18:13 +0400 schrieb Nikolay Sivov:
Hi.
Could someone explain me in details how could I build crosstest binaries on Linux (Debian) to run them on WinXP? Now I've done the following: - clean up my wine tree with 'make clean'; - installed mingw32 package - use configure parameters from http://wiki.winehq.org/CompilingDLLsUsingMingw - use 'make crosstest' from tree top.
After building wine tools I've got:
make[1]: Entering directory `/home/mrlarch/wine/dlls' make[2]: Entering directory `/home/mrlarch/wine/dlls/d3dx9_36' ../../tools/winebuild/winebuild -w --def -o d3dx9_36.def --export ./d3dx9_36.spec false -k -l libd3dx9.a -d d3dx9_36.def
[...]
What should I do with that?
Read your configure log. mingw was obviously not found, and false (a command that always fails) was written instead to the makefile.
Regards, Michael Karcher
Michael Karcher wrote:
Am Samstag, den 12.07.2008, 18:13 +0400 schrieb Nikolay Sivov:
Hi.
Could someone explain me in details how could I build crosstest binaries on Linux (Debian) to run them on WinXP? Now I've done the following: - clean up my wine tree with 'make clean'; - installed mingw32 package - use configure parameters from http://wiki.winehq.org/CompilingDLLsUsingMingw - use 'make crosstest' from tree top.
After building wine tools I've got:
make[1]: Entering directory `/home/mrlarch/wine/dlls' make[2]: Entering directory `/home/mrlarch/wine/dlls/d3dx9_36' ../../tools/winebuild/winebuild -w --def -o d3dx9_36.def --export ./d3dx9_36.spec false -k -l libd3dx9.a -d d3dx9_36.def
[...]
What should I do with that?
Read your configure log. mingw was obviously not found, and false (a command that always fails) was written instead to the makefile.
Regards, Michael Karcher
Thanks, it works now.