From: Brice A. <br...@fa...> - 2013-12-01 20:20:49
|
Your command line compilation is not correct : in order to build wxEMail as a dll, with wxWidgets lib compiled as a dll, you should provide both flags : WX_SHARED=1 SHARED=1 I know that this may be a bit confusing, but the full compilation line should be something like this : mingw32-make -f makefile.gcc WX_DIR=C:\wxWidgets-2.8.12 WX_DEBUG=0 WX_SHARED=1 WX_MONOLITHIC=0 WX_UNICODE=1 SHARED=1 Regards, Brice 2013/11/30 pao_drop <pao...@bl...> > Well, > 1) gcc -v yields 4.7.1 as a version. It also gives me a lot of info that I > am too naive to understand... > for this reason I have attached to this Email the detailed results of > this command (gcc-v_infos.txt). > > 2) I have performed the suggested modification, ie, replacing > > setDelimList(delims); > > by > > this->setDelimList(delims); > > and, lo and behold!, the program compiles much further on. But it now stops > on the errors that I mentionned in my initial Email (static > initializations in wxpop3.cpp). > I also have joined the new compiler output (zit.txt). > > I think that now we have finally reproduced the initial problem! > > > > ------------------------------------------------------------------------------ > Rapidly troubleshoot problems before they affect your business. Most IT > organizations don't have a clear picture of how application performance > affects their revenue. With AppDynamics, you get 100% visibility into your > Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics > Pro! > http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk > _______________________________________________ > wxCode-users mailing list > wxC...@li... > https://lists.sourceforge.net/lists/listinfo/wxcode-users > > |