ABI 参考结束于链接错误“未定义符号”与 clang ,但 GCC 可以链接吗?

发布于 2024-12-14 06:08:01 字数 432 浏览 0 评论 0原文

我希望将一个库集成到我的 iphone 项目中。库源提供了一个使用 LLVM-GCC 构建 .a 的 makefile。我使用 clang 来构建我的应用程序。

当我在 xcode 下构建我的应用程序并将我自己的源代码与 .a 链接时,LLVM-GCC 成功构建并链接我的项目,但 clang 在链接时失败,并出现以下错误:

架构 armv7 的未定义符号: “___aeabi_idiv”

ld:未找到架构armv7的符号 clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)

有人知道问题的根源吗?我认为与 clang 相关的 ABI 没有实现 ARM 划分,而 GCC 使用另一个 ABI 来实现它。

我还没有低级优化编译的经验,所以有人可以帮助我理解这个问题吗?

我如何解决这个问题以使用 clang 构建我的应用程序?

I wish to integrate a library into my iphone project. The library source provides a makefile which builds the .a with LLVM-GCC. I use clang to build my application.

When i build my application under xcode linking my own source with the .a, LLVM-GCC succeeds to build and link my project, but clang fails while linking with this error :

Undefined symbols for architecture armv7:
"___aeabi_idiv"

ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Does anyone has any idea of the origin of the problem ? I think the ABI associated to clang doesn't implement the ARM division, and GCC uses another ABI to implementing it.

I'm not yet experienced with low level optimization compilation, so can anyone help me to understand this problem ?

How can i fix this to build my app with clang ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文