使用 VS2008 构建的 .lib 由使用 VS2005 构建的二进制文件使用
什么会阻止我在使用 Visual Studio 2005 编译的程序中链接到使用 Visual Studio 2008 构建的第三方 .lib?谢谢
What could prevent me from linking with a third-party .lib built with Visual Studio 2008 in a program that I compile with Visual Studio 2005? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更新:这仅适用于 DLL,这是最初的问题。对于静态库,一切希望都破灭了。
我将尝试总结一些事实:
(即,包括其成员)定义的数据类型
对于指针成员,如果指针永远不会取消引用,则规则会放宽。
现在是棘手的部分:
CoTaskMemAlloc()
/CoTaskMemFree()
除外。struct
都是不安全的。Update: This applies to DLLs only, which was the original question. With static libraries, all hope is lost.
I'll try to summarize a few facts:
Thus it is safe to call functions and methods, passing data types that are entirely (that is, including their members) defined
For pointer members, the rule is relaxed if the pointer is never dereferenced.
Now the tricky part:
CoTaskMemAlloc()
/CoTaskMemFree()
.struct
containing STL types is unsafe.