Hi, On Sun, 2004-11-14 at 13:00, [EMAIL PROTECTED] wrote: > Hi Gerrit > > Thanks for reply! > I am using the those in dist/win/supportlibs.zip. As contained readme > suggests, I add the stlport directory to the BEGINNING of the include > list. Then I got the following errors: > > BaseLib warning LNK4075: ignoring '/EDITANDCONTINUE' due to > '/INCREMENTAL:NO' specification > BaseLib error LNK2019: unresolved external symbol "__declspec(dllimport) > public: virtual __thiscall _STL::basic_ios<char,class > _STL::char_traits<char> >::~basic_ios<char,class _STL::char_traits<char> > >(void)" ([EMAIL PROTECTED]@[EMAIL PROTECTED]@@@_STL@@[EMAIL PROTECTED]) > referenced in function "public: void __thiscall > osg::Log::resetRefTime(void)" ([EMAIL PROTECTED]@osg@@QAEXXZ) > BaseLib error LNK2019: unresolved external symbol "__declspec(dllimport) > public: virtual __thiscall _STL::basic_ios<char,class > _STL::char_traits<char> >::~basic_ios<char,class _STL::char_traits<char> > >(void)" ([EMAIL PROTECTED]@[EMAIL PROTECTED]@@@_STL@@[EMAIL PROTECTED]) > referenced in function "public: void __thiscall > osg::Log::resetRefTime(void)" ([EMAIL PROTECTED]@osg@@QAEXXZ)
looks like the stl port lib is not linked as the VSBuild/VS7 projects are set up to build against the native MS stl implementation. Just add stlport_vc71.lib to your linker input files should do the trick. regards, gerrit ------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _______________________________________________ Opensg-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensg-users
