Linking Problem, Boost and MSVC
This is not very scientific, but when it comes to linking with MSVC I have discovered that you get unresolved linking errors unless all the libraries are not linked with the same "code generation". Project, Settings, C++, Code Generation. and then use run-time library. I set it to use Multithreaded-DLL. sometimes warnings still occur but it seems to work. I have been unable to get boost to compile using JAM files so therefore i use the VC IDE like show in the tutorial. Also if anyone is intrested i wrapped jrtp library using boost. http://pyjrtplib.sourceforge.net/ John
John Janecek <jjanecek@telusplanet.net> writes:
This is not very scientific, but when it comes to linking with MSVC I have discovered that you get unresolved linking errors unless all the libraries are not linked with the same "code generation".
Part of the reason for the Boost.Build system is to help ensure that sort of thing is set up properly.
Project, Settings, C++, Code Generation. and then use run-time library.
I set it to use Multithreaded-DLL.
sometimes warnings still occur but it seems to work.
I have been unable to get boost to compile using JAM files
What's the problem?
so therefore i use the VC IDE like show in the tutorial.
Also if anyone is intrested i wrapped jrtp library using boost.
What is it? -- Dave Abrahams Boost Consulting www.boost-consulting.com
John Janecek <jjanecek@telusplanet.net> writes:
Also if anyone is intrested i wrapped jrtp library using boost.
Care to write up a patch for the projects page at http://www.boost.org/libs/python/doc/projects.html? -- Dave Abrahams Boost Consulting www.boost-consulting.com
participants (2)
-
David Abrahams -
John Janecek