Boost Test 动态链接还是静态链接?
我们使用与我们的应用静态链接的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信 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).