iPhone SDK 4.3 libav编译问题
我遇到了奇怪的问题。我安装了 iPhone SDK 4.3 和 xCode 4,现在无法从 ffmpeg 为 ARMv6 架构编译 libav。这是我编译它的脚本(它适用于 iPhone SDK 4.2):
./configure \
--disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile \
--enable-encoder=rawvideo \
--enable-decoder=h264 \
--enable-decoder=mpeg4 \
--enable-encoder=mjpeg \
--enable-muxer=rawvideo \
--enable-demuxer=h264 \
--enable-parser=h264 \
--enable-cross-compile \
--arch=c \
--target-os=darwin \
--enable-libopencore-amrnb --enable-libopencore-amrwb \
--cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-gcc-4.2.1 \
--as='gas-preprocessor/gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer /usr/bin/arm-apple-darwin10-gcc-4.2.1' \
--sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk \
--cpu=arm1176jzf-s --extra-cflags='-arch armv6' --extra-ldflags='-arch armv6'
make clean
make
结果我得到了库文件,但是当我使用 lipo -info 命令检查它时,它显示该库是为 i386 架构编译的。
也许有人遇到过这样的问题?请帮助我。
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新的帖子
这是一个更新的脚本,删除了armv6,添加了armv7s,使用iOS 6.0 SDK,并修复了
lipo
工具的更改问题。确保您拥有来自 gas-preprocessor.pl/usr/local/bin
中的“nofollow">github:原始帖子
这将为armv6、armv7和i386架构构建ffmpeg静态库并将它们组合起来进入 iOS 4.3(iPhoneOS4.3 和 iPhoneSimulator4.3)的 fat(通用)文件:
Updated Post
Here is an updated script that removes armv6, adds armv7s, uses the iOS 6.0 SDK, and fixes issues with changes to the
lipo
tool. Make sure you have the latestgas-preprocessor.pl
from github in/usr/local/bin
:Original Post
This will build ffmpeg static libraries for armv6, armv7, and i386 architectures and combine them into fat (universal) files for iOS 4.3 (iPhoneOS4.3 and iPhoneSimulator4.3):