如何使用Windows 7 64位在eclipse上使用android配置ffmpeg?

时间:2016-01-25 15:08:49

标签: android eclipse windows ffmpeg android-ndk

我正在使用ffmpeg版本2.8.5(最新版本) 和ndk版本r10e(最新版本) 为android编译ffmpeg 我正在使用这个脚本bulid_android.sh

#!/usr/bin/env bash
NDK=D:/AndroidNDK/android-ndk-r10e
SYSROOT=$NDK/platforms/android-18/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_64
function build_one
{
./configure \
    --arch=arm \
    --target-os=android \
    --enable-runtime-cpudetect \
    --enable-pic \
    --disable-shared \
    --enable-static \
    --extra-cflags='-march=armv6' \
    --extra-ldflags="$ADDI_LDFLAGS" \
    --enable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver\
    --disable-network \
    --enable-cross-compile \
    --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
    --sysroot=$SYSROOT \
    $ADDITIONAL_CONFIGURE_FLAG
make clean
make -j4
make install
}

CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_one

我使用msys输入此cmd

chmod +x build_android.sh

和这个

./build_android.sh

我收到此错误:

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

帮我解决这个问题?

0 个答案:

没有答案