c++ - ffmpeg generate libs only -
i'm trying build ffmpeg static libraries used in vc++. fedora machine i'm able build ffmpeg using following configure option.
/configure --pkg-config=mingw32-pkg-config --prefix=$install_root --disable-static --enable-memalign-hack --arch=x86 --target-os=mingw32 --cross-prefix=i686-w64-mingw32- --enable-shared
after generating dlls, i've tried using lib.exe
tool generate libs.
lib /machine:i386 /def:avcodec-56.def /out:avcodec.lib
i'm getting lib files size of lib file small indicates need dll during runtime. need single lib file can statically linked 1 of vc++ project , project dll required. question how generate lib files only? (not lib , dll)
any appreciated. thanks.
Comments
Post a Comment