-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
能否提供mac和ios的动态库 #46
Comments
macOS提供了dylib,没必要做成framework. iOS后续会加,会编译成FFmpeg.framework |
感谢回复。我在使用dylib的时候遇到了一个问题,在复制进app的时候 |
可能你用法不正确,运行时库带主版本号的是正常的,链接用libffmpeg.dylib,放到app里用libffmpeg.4.dylib,重命名也好cp -L也好。 |
好吧,我再研究一下。Xcode的Copy Files没法处理替身,只能另想办法了。 |
你试下最新的ios包,带了libffmpeg.4.dylib。iOS不能在framework外有dylib,不然会被拒绝上架。可以尝试下这个方法:新建个FFmpeg.framework文件夹,把libffmpeg.4.dylib复制进去,在FFmpeg.framework里运行 |
你好,我发现手动用dylib制作的framework无法通过签名,提示找不到路径 另外据我了解,mac版本要上架也是只能用framework的。 |
Showing Recent Errors Only |
@cherishloveyou try the latest master build |
Undefined symbols for architecture arm64: |
add -lxml2 to link flags |
Yes, seems it work! |
libxml2 is used by dash. you can build yourself and disable dash |
为了避免LGPL协议的问题,能否提供mac和ios平台的动态库(framework)?同为LGPL协议的OpenAL soft就提供了这个编译选项。
The text was updated successfully, but these errors were encountered: