使用 Visual Studio 静态链接 Libtorrent

Linking Libtorrent statically with Visual Studio

我正在尝试使用 Visual Studio 2013 静态地 link Libtorrent,但是在构建 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。我已经使用以下参数构建了提升:

 "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 认为它是共享的而不是静态的?

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

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

否则,即使您以某种方式编译了整个程序,您也会遇到一些严重的运行时错误,因为您的程序的一部分将使用运行时的静态版本,而另一部分将使用共享版本。