用NDK编译FFmpeg时遇到的问题

参考    http://blog.csdn.net/gobitan/article/details/22750719

执行./build_android.sh时报错

arm-linux-androideabi-gcc is unable to create an executable file.
C compiler test failed.

If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
[email protected] mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solving the problem.


当遇到这个问题的时候

大部分是NDK支持平台错了

sudo uname --m

如果显示i686,你安装了32位操作系统
如果显示 x86_64,你安装了64位操作系统

下载的时候按下面

android-ndk64-r10b-linux-x86.tar

支持的是32位操作系统

android-ndk64-r10b-linux-x86_64.tar.bz2 

支持的是64位操作系统


你可能感兴趣的:(用NDK编译FFmpeg时遇到的问题)