Changes between Version 3 and Version 4 of How to quickly compile libx264


Ignore:
Timestamp:
12/05/2012 12:27:55 PM (7 months ago)
Author:
burek
Comment:

Added notes about yasm

Legend:

Unmodified
Added
Removed
Modified
  • How to quickly compile libx264

    v3 v4  
    1515# sudo ldconfig 
    1616}}} 
     17 
     18P.S.S 
     19If you get a message like this: 
     20{{{ 
     21Found yasm 0.x.x.xxxx 
     22Minimum version is yasm-1.0.0 
     23If you really want to compile without asm, configure with --disable-asm. 
     24}}} 
     25that 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: 
     26 
     27{{{ 
     28# cd /my/path/where/i/keep/compiled/stuff 
     29# git clone git://github.com/yasm/yasm.git 
     30# cd yasm 
     31# ./configure --enable-static --enable-shared 
     32# make 
     33# make install 
     34# ldconfig 
     35}}} 
     36and after that, just repeat the configure/make/make install steps for libx264 and it should be fine this time.