I guess I didn't make myself clear. I **was** trying to build the JPEG library with **VC 8**. The link errors were with the jpeg-6b project.
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Tomlinson Sent: Wednesday, June 28, 2006 11:13 AM To: osg users Subject: RE: [osg-users] Visual C++ 8.X 3rdParty binaries The pre built are for VC 7.1 I believe You should not be trying to use VC 6.X or VC 7.1x libs/DLLs with VC 8.x, among many binary incompatibilities std::string was totally re-written and not compatable. The only safish way to use VC 6.x or VC 7.1x is to wrap everything in a C wrapper and not use strings... So really you will have to have to build them from source for VC8.x Best Regards Gordon -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ben Cain Sent: Wednesday, June 28, 2006 12:05 PM To: 'osg users' Subject: RE: [osg-users] Visual C++ 8.X 3rdParty binaries I typically just download the prebuilt dependencies. So, its possibly due to doing something stupid (e.g. not specifying correct compiler options). Nonetheless ... As an example ... trying to build the JPEG library, I'm getting link errors. I followed the directions in ...\3rdParty\jpeg-6b\install.doc (section: Microsoft Windows, Microsoft Developer Studio). Here's a few of the link errors: 1>------ Build started: Project: jpegtran, Configuration: Debug Win32 ------ 1>Linking... 1>jpegtran.obj : error LNK2019: unresolved external symbol _jpeg_simple_progression referenced in function _parse_switches 1>jpegtran.obj : error LNK2019: unresolved external symbol _jpeg_destroy_decompress referenced in function _main 1>jpegtran.obj : error LNK2019: unresolved external symbol _jpeg_finish_decompress referenced in function _main 1>jpegtran.obj : error LNK2019: unresolved external symbol _jpeg_destroy_compress referenced in function _main [...] 1>jpegtran - 21 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Weiblen Sent: Wednesday, June 28, 2006 12:15 AM To: osg users Subject: Re: [osg-users] Visual C++ 8.X 3rdParty binaries Hi, I built the current 3rdParty archive, but I don't have VS8. What problems are you having? -- mew Ben Cain wrote: > Hello, > > When will the pre-built 3^rd Party Win32 binaries be available for > Visual C++ 8.X? > > I've not been able to get the dependencies to completely build under > Visual C++ 8.X. Is anyone else having the same problem? _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/ _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/ _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/ _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
