将Libtorrent与Visual Studio静态链接

时间:2015-02-21 13:46:06

标签: c++ boost visual-studio-2013 libtorrent-rasterbar

我试图将Libtorrent与Visual Studio 2013静态链接,但是在构建Libtorrent然后编译我的项目后,我一直收到这个错误:

 LINK : fatal error LNK1104: cannot open file 'libboost_system-vc120-mt-1_55.lib'

由于我是静态构建的,我没有 libboost_system-vc120-mt-1_55.lib ,而是我有 libboost_system-vc120-mt-s-1_55。 LIB 。我使用以下参数构建了boost:

 "toolset=msvc-12.0 variant=release link=static runtime-link=static --with-date_time --with-system --with-thread"

和Libtorrent这些:

 "toolset=msvc-12.0 boost=source boost-link=static geoip=off encryption=tommath link=static dht=on logging=none statistics=off i2p=on variant=release"

我错过了什么,因为建立的Libtorrent认为它是共享的而不是静态的?

1 个答案:

答案 0 :(得分:2)

您在构建runtime-link=static时指定了boost。这意味着您需要libtorrent和您的应用程序(以及您可能使用的任何其他库)同时静态链接到C ++运行时库。

因此,您需要将runtime-link=static添加到libtorrent的构建命令行,并为您的应用选择适合VC ++的编译器选项(/MT命令行选项或相应的IDE中Runtime Library下的Code Generation选项。

否则,即使你以某种方式完成整个编译,你也会得到一些惊人的运行时错误,因为你的程序的一部分将使用运行时的静态版本,而另一个将使用共享的。