Boost Test 动态链接还是静态链接?

发布于 2024-09-05 23:48:46 字数 187 浏览 9 评论 0原文

我们使用与我们的应用静态链接的 Boost,但现在我想将 Boost Test 与外部测试运行程序一起使用,这需要测试本身通过使用所需的 BOOST_TEST_DYN_LINK 定义来与 Boost.Test 动态链接。

这是否会成为问题,或者 Boost Test 链接的方式与其他 Boost 库的链接方式完全无关?

We use Boost statically linked with our app but now I want to use Boost Test with an external test runner and that requires the tests themselves to link dynamically with Boost.Test through the use of the required BOOST_TEST_DYN_LINK define.

Is this going to be a problem or is the way Boost Test links completely unrelated to the way the other Boost libraries are linked?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-残月青衣踏尘吟 2024-09-12 23:48:46

我相信 Boost Test 不依赖于任何其他已编译的库,因此在静态链接其他 Boost 库的同时动态链接它应该不成问题。我们的链接规则不显示 Boost Test 对标头以外的任何内容的任何依赖性, boost.jam 文件(尽管后者已过时)。

I believe Boost Test does not depend on any other compiled libraries, so dynamically linking it while statically linking the other Boost libraries should not be a problem. Our linking rules don't show any dependency of Boost Test on anything other than headers, nor do the rules in the boost.jam file (though the latter is out of date).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文