Changes:
- Supports Microsoft Visual C++ 7.1 Compiler.
- PCH support is activated for MSVC 7.1 compiler.
- Wizard assumes that Multi-threaded Dynamic C and C++ Runtimes are being used. If you are using wx lib statically linked with C Runtime Library (CRT) you should make couple of changes in the libraries added. I'll discuss it later in this post.
- Wizard generated projects will fail during linking if it doesn't find msvcprt[d].lib
wxbase28d.lib(baselib_datetime.obj) : error LNK2001: unresolved external symbol _timezone
OLDNAMES.lib(timezone.obj) : error LNK2001: unresolved external symbol _timezone
OLDNAMES.lib(timezone.obj) : error LNK2001: unresolved external symbol __timezone
To solve this, do the following; Go to Project & Build Options menu, then go to Linker tab. Remove msvcrt[d].lib from Linker Libraries section and add libcmt[d].lib. Also remove /NODEFAULTLIB:libcmt[d].lib from Linker Options section.Please download the wizard files from the following link.
http://biplab.quotaless.com/wxwidgets_wizard_Rev5.zip
If your installation does not have msvcprt[d].lib then visit the following websites to get more details on how to create it.
http://www.delta3d.org/article.php?story=20050721180227305&mod
http://root.cern.ch/root/Procedure/Procedure%20to%20install%20the%20free%20Microsoft%20Visual%20C.htm
Enjoy Coding!
No comments:
Post a Comment