首页 WebRTC编译过程

WebRTC编译过程

举报
开通vip

WebRTC编译过程WebRTC编译过程 WebRTC编译过程 (一).安装 depot_tools Windows 1. Download depot_tools.zip and decompress it. 或者TortoiseSVN更新: svn co 2.Add depot_tools to the end (not start!) of your PATH --->System Properties, Advanced properties, Environment Variables, modify the ...

WebRTC编译过程
WebRTC编译过程 WebRTC编译过程 (一).安装 depot_tools Windows 1. Download depot_tools.zip and decompress it. 或者TortoiseSVN更新: svn co 2.Add depot_tools to the end (not start!) of your PATH --->System Properties, Advanced properties, Environment Variables, modify the "Path" system variable. 系统重启即可。(最好关闭win7防火墙) Linux and Mac 提前先安装好git和subversion~ 安装git(不要自己去官网下载make,直接 sudo apt-get install git git-core 来安装 Git程序,或者到新立得软件包里面 输入 git然后安装) ubuntu下的SVN安装十分简单,sudo apt-get install subversion 1. Grab the checkout with one of: non-committers (to depot_tools): svn co : export PATH=$PATH:/home/grant/programfiles/depot_tools You may want to add this to your .bash_aliases file or your shell's equivalent so that you don’t need to reset your $PATH manually each time you open a new shell. (二).安装git windows版本,去git官网下,安装时选择添加环境变量。 此外,安装 Microsoft SDK 7.1 Microsoft DirectX SDK (务必保证: , Verify MSVC|Tools|Options|Projects and Solutions|VC++ Directories has Include: $(DXSDK_DIR)include and Lib: $(DXSDK_DIR)lib\x86. , Make sure the DirectX include directories appear first in the search path, otherwise you may get build errors. ) 然后如下所述: Create a working directory, enter it, and run: $ gclient config (不能添加.sixxs.org) 第一次会自动下载安装subversion和python. 此步会在新建的WebRTC目录下生成一个.gclient文件。 $ gclient sync --force 下载完毕后,即可生成各个Visual Studio2008 工程文件。 后续更新时也尽量采用gclient sync --force 而不是用subversion update. ++++++ 参考文献: c).创建webrtc工作目录,并在该目录下运行: gclient config gclient sync --force sync命令也会产生基于本地环境(Linux:make, OSX: XCode, Windows: Visual Studio)的build文件。 也可以用命令: gclient runhooks --force 对windows平台,在trunk目录下,已经有针对Visual Studio的工程文件: webrtc.sln 好了,打开它,这就可以编译了。 注:webrtc默认使用了C:/Program Files/Microsoft SDKs/Windows/v7.1/Samples/multimedia/directshow/baseclasses。我的机器上只有v7.0的sdk,于是构造了一个v7.1的目录,仅包含 Samples/multimedia/directshow/baseclasses。 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 参考 Chrome在Visual Studio 2005下的编译过程 可以了解google源代码的风格 在下载Chrome 代码前,需要安装下面几个软件: 1. 安装Visual Studio 2005. 2. 安装 Visual Studio 2005 Service Pack 1 . 3. 安装热补丁 Hotfix 947315 . 4. 如果操作系统是Vista ,还需要安装 Visual Studio 2005 Service Pack 1 Update for Windows Vista。 5. 安装 Windows 2008 SDK 。按照网上说法,如果是Visual Studio 2008 ,就不需要安装这个了。 6. 配置Windows 2008 SDK 。在开始 -> 程序 ->Microsoft Windows SDK v6.1 > Visual Studio Registration > Windows SDK Configurat ion Tool .。选择 make current 按钮,幸运的话,应该能一次成功。如果不能成功, Chrome 官方网站上有一个 手动配置 的帮助,大家可以参考。 下载 代码 Google为 Chrome 提供了一个部署工具 depot_tools ,包括下载代码、同步代码、上传代码等功能。这个工具采用Python 编写的,其中还包含了一些 Javascript 脚本。 Depot_tools 中包含了一个 gclient 工具,是我们需要关注的重点。 下载代码有几 种 方式: 1. Chrome官网上提供了一个 源代码包 ,可以直接下载下来。不过这个包并不是最新的包。我采用的是这种方法进行下载的,相对来说比较快。 2. 采用SVN 客户端工具进行下载,比如 TortoiseSVN 客户端工具, SVN 服务器地址是。 3. 采用google 提供的 depot_tools 工具。 ,, 下载和安装 depot_tools 。 ,, 把depot_tools 的安装目录设置到系统目录(系统 Path 环境变量 ) 中。 ,, 创建一个存放Chrome 代码的目录,比如 d:/chrome 。目录不要包含空格。 ,, 在命令行下,先将当前目录切换到chrome 代码的目录,例如上面的 (d:/chrome) 。 ,, 运行 gclient config 命令。Gclient 将会先下载svn 工具和 python 工具,然后调用 svn 进行代码同步。 注意, gclient 中下载svn 和 python 采用的是 javascript 实现。如果在需要设置 proxy 的环境中,则需要需要修改一下脚本。 ++++++++ 最后在线翻阅了chrome 的开发 group 论坛,才知道 Chrome 确实作了修改,原来代码中的那些 .sln 、.vcproj 文件全部抛弃了, google 自己开发了一个脚本工具 GYP 工具,这个工具也是采用python 编写的。 GYP 采用了自定义的一套规则,用于生成各种工程文件。我们可以看一下下面这个gyp 文件。 { 'includes': [ '../../build/common.gypi', ], 'targets': [ { 'target_name': 'memory_watcher', 'type': 'shared_library', 'msvs_guid': '3BD81303-4E14-4559-AA69-B30C3BAB08DD', 'dependencies': [ '../../base/base.gyp:base', ], 'defines': [ 'BUILD_MEMORY_WATCHER', ], 'include_dirs': [ '../..', ], 'sources': [ 'call_stack.cc', 'call_stack.h', 'dllmain.cc', 'hotkey.h', 'ia32_modrm_map.cc', 'ia32_opcode_map.cc', 'memory_hook.cc', 'memory_hook.h', 'memory_watcher.cc', 'memory_watcher.h', 'mini_disassembler.cc', 'preamble_patcher.cc', 'preamble_patcher.h', 'preamble_patcher_with_stub.cc', ], }, ], } 其实这个文件的内容和visual studio 2005 中的 .vcproj 文件虽然有比较大的差别, 但是描述的东西没有太大变化,更简单更简洁一些而已。无非描述了工程的文件,编译 设置等内容。 下面描述一下编译步骤: 1. 运行命令行工具。 2. 切换到Chrome 主目录下(我的电脑是 d:/chrome 目录)。 3. 执行gclient runhooks --force 。这个命令将会调用 GYP 工具, 对 Chrome.gyp 进行解析,生成各个Visual Studio2005 工程文件。 4. 双击chrome/chrome.sln 文件,即可打开 Visual Studio 2005 ,一共有 215 个工 程,非常庞大。 右键选择解决 方案 气瓶 现场处置方案 .pdf气瓶 现场处置方案 .doc见习基地管理方案.doc关于群访事件的化解方案建筑工地扬尘治理专项方案下载 ,选择生成解决方案,编译开始了。这个过程在我的本本里 是持续了2 个小时左右 +++++ 在我编译的过程中主要遇到的几个问 快递公司问题件快递公司问题件货款处理关于圆的周长面积重点题型关于解方程组的题及答案关于南海问题 : 1. 公司有Visual Studio2005 ,可是因为 Proxy 的原因, depot_tools 工具无法进 行,为了突破 proxy 的限制,花了不少力气。 2. Chrome工程组织方式发生了变化,但在官网上没有更新,网上其他的资料都是基 于旧的版本介绍,所以在适应新的 gyp 方式方面花了不少力气。 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 分析了一下gclient.bat,其实就是干两件事 1)下载 2)下载这个目录 原来里面有一段代码写反了,应该是先检查是否auto_updata: :: Shall skip automatic update? IF "%DEPOT_TOOLS_UPDATE%" == "0" GOTO :SKIP_UPDATE :: We can't sync if .\.svn\. doesn't exist. IF NOT EXIST "%~dp0.svn\." GOTO :SKIP_UPDATE 再去下载svn和python: :: Will download svn and python. :: If you don't want to install the depot_tools version of these tools, remove :: the 'force' option on the next command. The tools won't be installed only if :: not already in the PATH environment variable. call "%~dp0bootstrap\win\win_tools.bat" force if errorlevel 1 goto :EOF 估计是他们的程序员大脑犯困,搞错了。换个顺序,逻辑就对了 python那个可以自动下,就让他下吧。下好了之后貌似没出啥问题
本文档为【WebRTC编译过程】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
该文档来自用户分享,如有侵权行为请发邮件ishare@vip.sina.com联系网站客服,我们会及时删除。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。
本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。
网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
下载需要: 免费 已有0 人下载
最新资料
资料动态
专题动态
is_562397
暂无简介~
格式:doc
大小:34KB
软件:Word
页数:8
分类:
上传时间:2018-03-22
浏览量:14