ffmpeg cross compile 2

来源:互联网 发布:极限矩阵iplay 编辑:程序博客网 时间:2024/05/01 10:06

# !/bin/sh
ARGS=
ARGS="${ARGS} --arch=armv5t"
ARGS="${ARGS} --cross-prefix=arm_v5t_le-"
ARGS="${ARGS} --enable-cross-compile"
ARGS="${ARGS} --target-os=linux"
ARGS="${ARGS} --disable-optimizations"
ARGS="${ARGS} --enable-static"
#ARGS="${ARGS} "
#ARGS="${ARGS} "
#ARGS="${ARGS} "
#ARGS="${ARGS} "

echo "./configure ${ARGS}"
./configure ${ARGS}

 

Compile OK

 

原创粉丝点击