SFBAudioEngine 的编译问题
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来愚蠢的框架没有被加载。您需要确保它位于计算机上的以下路径:
并确保在运行您的应用程序之前该文件存在:
It looks like the dumb framework is not being loaded. You need to make sure it's located at this path on your computer:
And make sure this file exists before running your app:
只需将 Frameworks 文件夹放入
SFBAudioEngine
文件夹中即可。 检查是否有 @ r路径详细信息Just put the Frameworks folder inside the
SFBAudioEngine
folder. check for @rpath details