I can compile WxWidgets on mu old laptop (win Xp, 32 bit) but not in my 64 bit win 7 box
I installed codeblocks and no problems
I downloaded wxWidgets-3.0.0 tar.gz and now I am truing to compil it as i ddid in the xp box.
mingw32-make.exe -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 UNICODE=1 CFLAGS="-m32" CXXFLAGS="-m32" L
DFLAGS="-m32"
...
gw32/bin/ld.exe: i386:x86-64 architecture of input file `gcc_mswudll\monodll_ver
sion_rc.o' is incompatible with i386 output
collect2.exe: error: ld returned 1 exit status
makefile.gcc:5202: recipe for target '..\..\lib\gcc_dll\wxmsw30u_gcc_custom.dll'
failed
mingw32-make.exe: *** [..\..\lib\gcc_dll\wxmsw30u_gcc_custom.dll] Error 1
Then I overwiten WINDRES using the one from xp box and
mingw32-make.exe -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 UNICODE=1 CFLAGS="-m32" CXXFLAGS="-m32" L
DFLAGS="-m32"
c:/tdm-gcc-64/bin/../lib/gcc/x86_64-w64-mingw32/4.8.1/../../../../x86_64-w64-min
gw32/bin/ld.exe: i386:x86-64 architecture of input file `gcc_mswuddll\monodll_ve
rsion_rc.o' is incompatible with i386 output
collect2.exe: error: ld returned 1 exit status
makefile.gcc:5202: recipe for target '..\..\lib\gcc_dll\wxmsw30ud_gcc_custom.dll
' failed
mingw32-make.exe: *** [..\..\lib\gcc_dll\wxmsw30ud_gcc_custom.dll] Error 1
Why is so hard to compile wxwidgets in a 64 bit box? Please, help me...
Imo