On Thu, 28 Aug 2003 00:55:30 -0700 (PDT) DH <crazyinsomniac@...> wrote:
> How come you're looking for wxmsw24HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH.lib?
It's the so-called "hybrid" build. [1]
> I tracked it down to Win32_MSVC.pm sub get_contrib_lib {
> It's D on my machine(maybe it's user configurable?),
> so I changed it (can't compile with --debug otherwise)
You need to build wxWindows with makefiles and pass FINAL=hybrid to nmake
instead of FINAL=0. In addition, you need to modify src/makevc.env, lines
215 and 216 to read like this:
DEBUG_FLAGS= /Zi /D__WXDEBUG__ /D__NO_VC_CRTDBG__
LINK_DEBUG_FLAGS=-debug:full -debugtype:cv
I thought I modified wxWindows' makefiles to make this easier (just
passing FINAL=hybrid DEBUGINFO=1) but apparently I only dreamed about it.
Regards
Mattia
[1] if you use the debug build you are likely to experience random crashes
because Perl.exe and perl5X.dll are linked to msvcrt.dll, while wxWindows
and wxPerl are linked to msvcrtd.dll
|