Error executing build.sh in ffmpeg-android

I downloaded ffmpeg-android from the link: http://bambuser.com/opensource

I followed the steps indicated in the README file available in this downloaded folder.

I tried to compile ffmpeg with both Android NDK r5 and r6, but I got the same error as below:

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 SVN. If the latest version fails, report the problem to the ffmpeg-user@mplayerhq.hu 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. 

Cygwin Version: 1.7.9

Please help me in resolving.

+1
source share
1 answer

I got the same error message, but on 64 bit Ubuntu. NDK was compiled for 32-bit, so I had to install ia32-libs. Worked by installing:

sudo apt-get install ia32-libs

If this does not help, you can also try to make sure that the Android SDK and Java are installed.

+1
source

Source: https://habr.com/ru/post/887612/


All Articles