在 Mac OS X 上将带有或不带有 RTTI 的库与 GCC 混合使用?

发布于 2024-09-04 08:45:01 字数 169 浏览 5 评论 0原文

我一直在解决一个问题,在我继续伤害自己之前,我想确认一下:

是否有可能有一个 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 技术交流群。

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

发布评论

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

评论(1

╰ゝ天使的微笑 2024-09-11 08:45:02

据推测,二进制文件是使用(或不使用)-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?

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