Ubuntu下编译安装WebRTC
svn checkout http://webrtc.googlecode.com/svn/trunk/
下载完成后, WebRTC下会得到一个默认名为trunk的文件夹,里头就是WebRTC源码了,只是源码而已,并没有编译的相应工程文件。
然后 gclient config https://webrtc.googlecode.com/svn/trunk (生成.gconfig文件)
gclient sync –force (同步项目文件,要下载1个多G的文件,网速不好的,可以去玩一盘dota回来)
gclient runhooks –force (生产Linux的MakeFile文件)
下来Make开始编译,编译的过程中碰到很多依赖库没有安装,下面做了记录
安装了下面的三个库:
apt-get install libasound2-dev
apt-get install libpulse-dev
apt-get install libx11-dev
root@zhangsj-mac:/home/webrtc_svn/trunk# make
CXX(target) out/Debug/obj.target/video_render_module/webrtc/modules/video_render/linux/video_x11_channel.o
In file included from webrtc/modules/video_render/linux/video_x11_channel.cc:11:0:
webrtc/modules/video_render/linux/video_x11_channel.h:20:33: 致命错误: X11/extensions/XShm.h:没有那个文件或目录编译中断。
make: *** [out/Debug/obj.target/video_render_module/webrtc/modules/video_render/linux/video_x11_channel.o] 错误 1
在安装一个库
root@zhangsj-mac:/home/webrtc_svn/trunk# apt-get install libxext-dev
最后在Make, 成功。
2014年7月更新: Ubuntu 14.04编译WebRTC For Android代码 http://www.linuxidc.com/Linux/2014-10/108084.htm
更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2