Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: zyfarmy on November 13, 2007, 08:37:28 am

Title: ld.exe: cannot find -lwxmsw28ud
Post by: zyfarmy on November 13, 2007, 08:37:28 am
i am a new one for c::b
when i building a test program with WxWinget ,i have a problem like subject;i compiling Wxwinget with "mingw32-make -f makefile.gcc  MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=release" how i should do?
Title: Re: ld.exe: cannot find -lwxmsw28ud
Post by: Jenna on November 13, 2007, 10:29:19 am
It seems you try to compile the debug target,because the linker searches for "wxmsw28ud".
If you choose the release target, it should compile/link without error.

Nevertheless the best way is to also build a debug-version of wxWidgets with the following instructions
Code
mingw32-make -f makefile.gcc  MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=debug clean
mingw32-make -f makefile.gcc  MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=debug
as mentioned in the Nightly Cookbook (http://wiki.codeblocks.org/index.php?title=Nightly_Cookbook#wxWidgets).
Title: Re: ld.exe: cannot find -lwxmsw28ud
Post by: zyfarmy on November 13, 2007, 02:01:36 pm
thank you I had solve this problem