I'm installed most necessary components to build ffmpeg and x264. Here's the process:

Launched msys, went ahead and moved the x264 source folder, ran the following configure with make and make install after:

./configure --enable-static --enable-shared --enable-win32thread

Worked like a charm, had my .dll's, the .a link file.

Moved over to ffmpeg's folder, downloaded the source from zeranoe's build website, ran the following procedure:

export CPPFLAGS="$CPPFLAGS -IC:/MinGW/msys/1.0/local/include"
export LDFLAGS="$LDFLAGS -LC:/MinGW/msys/1.0/local/lib" 
./configure --enable-shared --enable-decoder=h264 --enable-w32threads --enable-gpl --enable-libx264 --extra-libs=C:/MinGW/msys/1.0/local/lib/libx264.a --extra-cflags=-IC:/MinGW/msys/1.0/local

I do the make, and it fails after 5 minutes: http://pastie.org/3290141

link|improve this question

76% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.