Code::Blocks Forums

User forums => Help => Topic started by: Peter on March 15, 2013, 06:42:59 am

Title: ld.exe cannot find -lwxmsw28ud
Post by: Peter on March 15, 2013, 06:42:59 am
I'm try to work with wxWidgets.

I get this Message,

ld.exe    cannot find -lwxmsw28ud

what it mean?

I use MinGW
Title: Re: ld.exe cannot find -lwxmsw28ud
Post by: MortenMacFly on March 15, 2013, 07:14:47 am
ld.exe    cannot find -lwxmsw28ud
The linker (ld.exe) cannot fin the library (-l) named "wxmsw28ud". Usually the actual file name is libwxmsw28ud.a.

Please read yourself into basic programming and learn how a compiler/linker works. Then grab yourself the tutorial for GCC, then pipe what you've learned into the IDE. (Not to forget: Read yourself into wxWidgets, especially what flavours are possible).

These things are out of the scope of this forum, btw!
Title: Re: ld.exe cannot find -lwxmsw28ud
Post by: Peter on March 15, 2013, 09:01:51 am
Thank you