From: klaas.holwerda <kho...@xs...> - 2005-12-26 17:21:06
|
A solution, Following is the contents of the settings dialog under tab Link. ( called project options. ) If i cut and paste the last one ( from wxLua.dsw ) into the one from apps.dsw/app_wxlua. And make a change to force a build, it works. Same trick for app_wxluaedit ( but of course add wxedit.lib too ), makes that one work. Even not forcing a rebuild, but just relink, gives the problem. Is it caused by?: /nodefaultlib:"MSVCRT.lib" Adding this options, and doing a rebuild of e.g. app_wxlua, makes it work. Removing it again, gives the problem again, so i think this is the solution. No back to wxArt2D to see if it is the same there ;-) And the option i was asking for is called /VERBOSE:LIB i think ;-) Klaas wxluasocket.lib wxluadebug.lib wxbind.lib wxlua.lib lua.lib wxmsw26d_stc.lib wxmsw26d_xrc.lib wxmsw26d_html.lib wxmsw26d_media.lib wxmsw26d_adv.lib wxbase26d_net.lib wxbase26d_xml.lib wxmsw26d_core.lib wxbase26d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /subsystem:windows /incremental:yes /pdb:"..\..\..\bin/wxlua.pdb" /debug /machine:I386 /out:"..\..\..\bin\wxlua.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\..\..\lib\vc_lib" wxluadebug.lib wxluasocket.lib wxlua.lib wxbind.lib lua.lib wxmsw26d_stc.lib wxmsw26d_html.lib wxbase26d_net.lib wxmsw26d_xrc.lib wxmsw26d_adv.lib wxbase26d_xml.lib wxmsw26d_core.lib wxbase26d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /subsystem:windows /incremental:yes /pdb:"..\..\..\bin/wxlua.pdb" /debug /machine:I386 /nodefaultlib:"MSVCRT.lib" /out:"..\..\..\bin\wxlua.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\..\..\lib\vc_lib" /VERBOSE:LIB klaas.holwerda wrote: > Hi John, > |