我需要编译Boost Libraries 1.53
才能将它们与 Visual Studio 2012 一起使用。
到目前为止,我尝试过这种方式:
.\boostrap
.\bjam.exe --toolset=msvc-11.0 --address-model=64
编译过程终止没有任何问题,但是当我尝试编译依赖于该库的 Visual Studio 项目时,我收到以下错误:
>libboost_thread-vc110-mt-1_53.lib(thread.obj) : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64'
你能给我一些关于如何解决这个问题的提示吗?
谢谢你。