Smart, Gary wrote: > > I am trying to recompile the entire ffmpeg libraries using -fPIC to > generate *.so files instead of static *.a files. > > Has anyone succeeded doing this and, if so, can you advise me of the > best place to modify the (very complicated) Makefiles to this effect? >
I did this many times $ ./configure --enable-shared $ make And you'll get all .so-s. AFAIR, -fPIC switch presents also. You don't need to modify Makefile, run ./configure --help and study its output, it's highly probably that you'll find everything you need among its switches. -- View this message in context: http://www.nabble.com/Compiling-libav*-as-run-time-shared-libraries-on-Linux-tp20936894p20937555.html Sent from the libav-users mailing list archive at Nabble.com. _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
