本文主要是介绍linux交叉编译VLC的webPlugin--npapi-vlc/npapi-vlc的交叉编译,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
linux交叉编译npapi-vlc
1.下载依赖包和安装依赖
$ sudo apt-get install -y gcc-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64-tools
$ sudo apt-get install -y lua5.2 libtool automake autoconf autopoint make gettext
$ sudo apt-get install -y qt4-dev-tools qt5-default
$ sudo apt-get install -y git subversion cmake cvs wine-dev yasm
$ sudo apt-get install -y zip p7zip nsis bzip2
下载vlc-contrib-x86_64-w64-mingw32-latest.tar.bz2
http://download.videolan.org/pub/videolan/contrib/x86_64-w64-mingw32/ 把此解压到一个文件夹注意:
安装过程中可能会出现Configuring ttf-mscorefonts-installer的配置页面,按tab后,一路回车即可
在任意地方执行一下命令。执行命令,将部分dll库移走备份
#!/bin/sh
# This script enforces statically linking of libgcc, libstdc++-6, and libpthread,
# without needing to rebuild gcc and mingw-w64 from scratch.
# -static-libgcc -static-libstdc++ flags can not be used in a libtool build system,
# as libtool removes flags that it doesn't understand.move() {[ -f $1 ] || return 1mkdir -p old/mv -v $* old/return 0
}for x in i686 x86_64
dolibrary_path_list=`$x-w64-mingw32-gcc -v /dev/null 2>&1 | grep ^LIBRARY_PATH|cut -d= -f2|sort|uniq`IFS=':'for i in $library_path_listdocd $imove libstdc++-6.dll libstdc++.dll.a libgcc_s.a libgcc_s_sjlj-1.dll && ln -s libgcc_eh.a libgcc_s.amove libpthread.dll.a libwinpthread.dll.amove libwinpthread-1.dll[ -d ../bin ] && cd ../bin && move libwinpthread-1.dlldone
doneexit 0
2.设置环境
设置依赖包路径
export PKG_CONFIG_LIBDIR=/。。。。。。。/i686-w64-mingw32/lib/pkgconfig
设置vlc头文件和库路径
export LIBVLC_CFLAGS=-I/。。。。。。/vlc-3.0.0-git/sdk/include
export LIBVLC_LIBS=-L/。。。。。。。。/vlc-3.0.0-git/sdk/lib -llibvlc -llibclvcore
3.执行编译命令
./autogen.sh
./configure --host=i686-w64-mingw32 --prefix=/。。。。。。。。/npapi-vlc1/out
make && make install
注意
在执行make时需要根据提示错误修改源码或者修改makefile中的LIBVLC_CFLAGS /LIBVLC_LIBS 保证路径的正确。修改完makefile不需要从新执行configure这步在执行nake是有下载npapi-sdk 不会执行成功。需要手动下载并修改名称为npapi-sdk 。并注释掉npapi中Makefile.in 中 的
# svn export http://npapi-sdk.googlecode.com/svn/trunk/headers npapi-sdk-svn -r HEAD
# mv npapi-sdk-svn npapi-sdk
4.在out中就应该会出现npvlc.dll
一个修改好的可用与交叉边缘成win的npapi-vlc的包
http://download.csdn.net/download/u011573853/10051039
参考资料
http://blog.csdn.net/a_sungirl/article/details/42520411
http://download.videolan.org/pub/videolan/contrib/i686-w64-mingw32/
https://m.aliyun.com/yunqi/articles/44515
这篇关于linux交叉编译VLC的webPlugin--npapi-vlc/npapi-vlc的交叉编译的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!