C++ – Using Boost::asio in Winx64: I’m stuck, need to figure out how to build libboost_system_xxxx.lib for x64

64-bitboostcwindows

Unlike this question:

Linker Error while building application using Boost Asio in Visual Studio C++ 2008 Express

I need an x64 build of the lib files… I'm not even sure how to get started. I'm reading here:

http://www.boost.org/doc/libs/1_39_0/more/getting_started/windows.html

Or, more generally, how do I build boost for x64?

Best Answer

I'm not on Windows, but I guess adding address-model=64 to the bjam invocation should do the trick.

Related Topic