Are there precompiled .libs for boost on 64 bit VC++ 2010?
+2
A:
I don't think there are. It takes about 3Gb on my machine. Why you can't compile it from Boost sources?
Kirill V. Lyadvinsky
2010-08-04 10:44:42
A:
I've found complete set of them at http://boost.teeks99.com/. Starting with Boost 1.43, they include VS2010.
By complete, he means complete. VS2003, VS2005, VS2008, VS2010. 32/64 bit + all standard build options. Do the full install, then delete the versions you don't need.
Very painless install. All thanks to whomever is doing the the work.
photo_tom
2010-08-04 15:02:12
Thanks! I downloaded it, but now I get the following linker errors:1>main.obj : error LNK2001: unresolved external symbol __imp_GetTickCount1>libboost_thread-vc100-mt-1_43.lib(thread.obj) : error LNK2001: unresolved external symbol __imp_GetTickCount1>libboost_thread-vc100-mt-1_43.lib(thread.obj) : error LNK2001: unresolved external symbol __imp_GetTickCount1>MSVCRT.lib(gs_support.obj) : error LNK2001: unresolved external symbol __imp_GetTickCount1>main.obj : error LNK2001: unresolved external symbol __imp_GetProcessHeapKernel32.lib is in the linker path.
2010-08-06 08:43:54
@user410600 - Sorry, but I need to ask the obvious question first, have you included the boost libs on the "additional dependencies" line in link property settings and have you added directory to link search path?
photo_tom
2010-08-06 14:06:18
I found the mistake: I used Windows SDK 7.0A instead of 7.1.
2010-08-10 10:09:53