I can’t seem to get the wxwidgets core dll to link no matter what. Compiling goes fine up until a certain point, then the call to link that is supposed to produce wxmsw28uh_core_vc.dll fails with an unresolved external symbol error:
link /DLL /NOLOGO /OUT:…\lib\vc_dll\wxmsw28uh_core_vc.dll /pdb:"…
…\lib\vc_dll\wxmsw28uh_core_vc.pdb" /LIBPATH:…\lib\vc_dll @C:\Users\mike
\AppData\Local\Temp\nmB37A.tmp
Creating library …\lib\vc_dll\wxmsw28uh_core.lib and object …\lib\vc_
dll\wxmsw28uh_core.exp
coredll_dcpsg.obj : error LNK2019: unresolved external symbol "public: __thiscal
l wxGenericPageSetupDialog::wxGenericPageSetupDialog(class wxWindow *,class wxPa
geSetupDialogData *)" (??0wxGenericPageSetupDialog@@QAE@PAVwxWindow@@PAVwxPageSe
tupDialogData@@@Z) referenced in function "public: void __thiscall wxGenericPage
SetupDialog::`default constructor closure’(void)" (??_FwxGenericPageSetupDialog@
@QAEXXZ)
…\lib\vc_dll\wxmsw28uh_core_vc.dll : fatal error LNK1120: 1 unresolved exter
nals
NMAKE : fatal error U1077: ‘link’ : return code ‘0x460’
Stop.
For reference, my INCLUDE, LIB, and PATH variables look like this:
LIB = %WXWIN%\lib\vc_dll;%WXWIN%\contrib\lib;%WXWIN%\build\msw\vc_mswuhdll;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE
INCLUDE = %WXWIN%\lib\vc_dll\mswuh;%WXWIN%\include;%WXWIN%\contrib\include;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include
PATH = C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\bin;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE;%WXWIN%\lib\vc_dll;C:\Windows\system32;C:\Windows…
Any help would be greatly appreciated.
-Mike