nvParse problem

Started by
4 comments, last by duhroach 21 years ago
Howdy. I''m having trouble getting the nvparse.lib working in my application. I include the .lib in my linker, and include the nvparse.h and nvparse.cpp files in my project, but it generates "unresolved external symbol" references everywhere. Does anyone know what''s wrong? or can point me to a working demo of it so i can see what someone else has done? thanks ~Main
==Colt "MainRoach" McAnlisGraphics Engineer - http://mainroach.blogspot.com
Advertisement
*bump*

==
Colt "MainRoach" McAnlis
Programmer
www.badheat.com/sinewave
==Colt "MainRoach" McAnlisGraphics Engineer - http://mainroach.blogspot.com
Perhaps you should post the actual errors.

How appropriate. You fight like a cow.

  LIBC.lib(crt0dat.obj) : error LNK2005: _exit already defined in MSVCRT.lib(MSVCRT.dll)LIBC.lib(crt0dat.obj) : error LNK2005: __exit already defined in MSVCRT.lib(MSVCRT.dll)LIBC.lib(crt0init.obj) : error LNK2005: ___xc_z already defined in MSVCRT.lib(cinitexe.obj)LIBC.lib(crt0init.obj) : error LNK2005: ___xc_a already defined in MSVCRT.lib(cinitexe.obj)LIBC.lib(crt0init.obj) : error LNK2005: ___xi_z already defined in MSVCRT.lib(cinitexe.obj)LIBC.lib(crt0init.obj) : error LNK2005: ___xi_a already defined in MSVCRT.lib(cinitexe.obj)LINK : warning LNK4098: defaultlib "MSVCRT" conflicts with use of other libs; use /NODEFAULTLIB:libraryLINK : warning LNK4098: defaultlib "LIBC" conflicts with use of other libs; use /NODEFAULTLIB:libraryLIBC.lib(crt0.obj) : error LNK2001: unresolved external symbol _mainexe/demobase.exe : fatal error LNK1120: 1 unresolved externals  


Has anyone else ran into this?
~Main

==
Colt "MainRoach" McAnlis
Programmer
www.badheat.com/sinewave
==Colt "MainRoach" McAnlisGraphics Engineer - http://mainroach.blogspot.com
Make sure you''re linking to the same version of the crt that they build nvparse with.
be sure you have linked the right build of nvparse,
do not link a multithreaded nvparse with a single threaded
application, i had a similar problem.
or you can rebuild nvparse, the source is for example
in the CgToolkit or openGL SDK fron nvidia.

This topic is closed to new replies.

Advertisement