ubuntu10.04安装x264库

由于ubuntu默认安装的yasm版本太低,所以要先卸载

apt-get remove yasm

然后编译安装yasm

#tar xzvf yasm-1.2.0.tar.gz
#cd yasm-1.2.0
#./configure
#make
#make instal
接下来安装编译     x264
编译静态库
tar -xjf  x264.tar.bz2
cd x264
./configure --prefix=/static
make
make install
原文地址:https://www.cnblogs.com/number10/p/3931150.html