6) And then i get this reccurent error :
ld.exe||cannot find -lwxmsw28ud|
Thanks for the help,
-----
Hurk
The library wxmsw28ud is the Unicode Debug version of wxWidgets.
Your command below is wrong; because you are trying to use an DLL build SHARED must equal 1 instead of zero.
mingw32-make -f makefile.gcc SHARED=0 MONOLITHIC=1 UNICODE=1 BUILD=release
Try doing both of these
mingw32-make -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 UNICODE=1
mingw32-make -f makefile.gcc BUILD=debug SHARED=1 MONOLITHIC=1 UNICODE=1
Tim S
Hello all,
I hope it is okay to reply to this post since I am having problems compiling wxWidgets with Mingw. I am running Windows xp and the last thing I get when compiling with the commands given in the http://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Windows tutorial is:
windres --use-temp-file -i../../src/msw/version.rc -ogcc_mswudll\monodll_version
_rc.o --define __WXMSW__ --define _UNICODE --include-dir ..\..\lib\gcc
_dll\mswu --include-dir ../../include --define WXDLLNAME=wxmsw28u_gcc_custom --i
nclude-dir ../../src/tiff --include-dir ../../src/jpeg --include-dir ../../src/p
ng --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../
../src/expat/lib --define wxUSE_BASE=1 --define WXMAKINGDLL
gcc: _spawnvp: No such file or directory
windres: gcc exited with status 1
mingw32-make: *** [gcc_mswudll\monodll_version_rc.o] Error 1
Does anyone have any idea what this might be? I can't find the answer by googling. Thanks in advance.
Edit:DISREGARD My post!!! I was not setting the path correctly. I included only the mingw/bin directory while I also needed to include mingw/mingw32/bin directory in the path too.
Now it seems to have compiled. The result is the .dll in the \lib\ folder of my wxwidgets folder I presume? Oh I am so excited ! :)