SFBAudioEngine 的编译问题

发布于 2024-12-29 20:58:42 字数 670 浏览 1 评论 0原文

我想在 ios 中播放 Flac 文件并从以下位置下载代码: SFBAudioEngine

我添加了mac os 的框架并且它构建成功,但是当我运行应用程序时它崩溃并给出

dyld: Library not loaded: @rpath/dumb.framework/Versions/A/dumb
Referenced from: /Users/Library/Developer/Xcode/DerivedData/SFBAudioEngine-frrtbwxsqekjtmekpdfikqaqcsso/Build/Products/Debug/SimplePlayer.app/Contents/MacOS/SimplePlayer
Reason: image not found

当我尝试为 ios 应用程序构建时它给出错误

Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/libtool failed with exit code 1

请帮助我运行这个应用程序。

I want to play Flac files in ios and downloaded code from: SFBAudioEngine

I added frameworks for mac os and it build successfully but when I run app it crashes and gives

dyld: Library not loaded: @rpath/dumb.framework/Versions/A/dumb
Referenced from: /Users/Library/Developer/Xcode/DerivedData/SFBAudioEngine-frrtbwxsqekjtmekpdfikqaqcsso/Build/Products/Debug/SimplePlayer.app/Contents/MacOS/SimplePlayer
Reason: image not found

And When I am trying to make build for ios app It is giving error

Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/libtool failed with exit code 1

Please help me to run this app .

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

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

发布评论

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

评论(2

黑色毁心梦 2025-01-05 20:58:42

看起来愚蠢的框架没有被加载。您需要确保它位于计算机上的以下路径:

@rpath/dumb.framework

并确保在运行您的应用程序之前该文件存在:

@rpath/dumb.framework/Versions/A/dumb

It looks like the dumb framework is not being loaded. You need to make sure it's located at this path on your computer:

@rpath/dumb.framework

And make sure this file exists before running your app:

@rpath/dumb.framework/Versions/A/dumb
眉黛浅 2025-01-05 20:58:42

只需将 Frameworks 文件夹放入 SFBAudioEngine 文件夹中即可。 检查是否有 @ r路径详细信息

Just put the Frameworks folder inside the SFBAudioEngine folder. check for @rpath details

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