Search found 2 matches
- Sun Aug 17, 2008 10:54 am
- Forum: General OptiTrack Support
- Topic: RigidBody library with g++
- Replies: 2
- Views: 1891
Re: RigidBody library with g++
Thank you for your suggestion, as you have guessed it was basic. Problem: Name mangling. g++ compiler under MinGW environment uses C++ name mangling scheme, while your compiler used C style name mangling. Thus my linker could not recognize function names in the NPRigidBody.dll file. I solved this by...
- Wed Aug 13, 2008 1:17 am
- Forum: General OptiTrack Support
- Topic: RigidBody library with g++
- Replies: 2
- Views: 1891
RigidBody library with g++
Hi, I newly started working on RigidBody SDK. I know the SDK and sample programs are tested under VC, but for various reasons I am working with mingw g++. This is my question. I can compile the following simple code using a C compiler(gcc) but cannot compile it using a C++ compiler(g++). #include <w...