在 Mac OS X 上将带有或不带有 RTTI 的库与 GCC 混合使用?
我一直在解决一个问题,在我继续伤害自己之前,我想确认一下:
是否有可能有一个 GCC 项目使用使用或不使用 RTTI 编译的库?
例如,我有项目 A(未使用 RTTI 编译),它使用库 B(使用 RTTI 编译)和库 C(未使用 RTTI 编译)。理论上,所有这些都应该编译和链接没有问题吗?
I've been banging my head on an issue and before I continue injuring myself some more, I'd like to confirm:
Is it possible to have a GCC project that uses libraries that are compiled with and without RTTI?
So, for example, I have project A (compiled without RTTI) that uses library B (compiled with RTTI) and library C (compiled without RTTI). In theory, is all that supposed to compile and link with no problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据推测,二进制文件是使用(或不使用)
-fno-rtti
开关构建的?如果是这样,我看不出有什么理由不能工作——RTTI在任何情况下都只为具有虚函数的类提供,所以二进制格式或类似的东西没有重大变化。您遇到任何具体问题吗?Presumably the binaries were built with (or without) the
-fno-rtti
switch? If so, I can't see any reason why this should not work - RTTI is only provided for classes with virtual functions in any case, so there is no major change in binary format or anything like that. Are you experiencing any specific problems?