真是一個奇葩問題,對我來說是的,完全不知道是什么意思,但是他就是出現了。
找到了一個相關問題http://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20libx264
If you get a message like this:(如果你得到這樣的信息)
Found yasm 0.x.x.xxxx Minimum version is yasm-1.0.0 If you really want to compile without asm, configure with --disable-asm.
that means that you have an old version of yasm on your system, so you should update it. The quickest way to do so is like this:
(意思是說你有一個老版本的yasm(似乎是編譯器?)裝在你的系統里面,所以該升級他了。快速解決方法:)
# git clone git://github.com/yasm/yasm.git # cd yasm # ./autogen.sh # ./configure # make # make install