iOS模拟器live555库的编译

发布于 2025-01-05 06:08:10 字数 136 浏览 1 评论 0原文

我已经为 iOS 设备编译了 live555 库

./genMakefiles iphoneos 
make

,但无法为 iOS 模拟器编译它。 有人有任何想法如何做到这一点吗? 谢谢。

I've compiled live555 library with

./genMakefiles iphoneos 
make

for iOS device, but I can't compile that for iOS simulator.
Is anybody has any ideas how to do that?
Thanks.

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

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

发布评论

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

评论(1

千寻… 2025-01-12 06:08:10

问题是,当您为 iphoneos 编译时,您正在为 ARM 处理器编译库。运行 iOS 模拟器时,您在 intel x86 处理器上运行它,因此它将产生类似“找不到 i386/x86_64 的符号”的错误。

如果您想在模拟器上运行它,请尝试运行“./genMakefiles macosx”

如果您知道如何操作,则可以根据您要构建的内容指定要链接的生成库文件的版本。也就是说,如果在 ios 设备上运行,它将链接到 .a 文件,或者在模拟器上运行时它将链接到 .dylib 文件,

我希望有帮助

The problem is that when you compile for iphoneos you are compiling the library for an arm processor. When running the iOS simulator you are running it on an intel x86 processor so it will produce errors along the lines of "symbols not found for i386/x86_64"

If you want to run it on the simulator then try running "./genMakefiles macosx"

If you know how to then you can specify which versions of the generated library files to link depending on what you're building for. Namely that it will link to the .a files if running on an ios device, or it will link the .dylib files when running on simulator

I hope that helps

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