@WebRTC windows下编译和引入
文章基于最新的webrtc master分支,其他分支未进行过测试。
环境准备
1、vs 2017
2、windows 10 sdk 10.0.19041
vs 2017默认安装时,不带上述sdk,可以到微软官网下载。
源码编译
- depot_tools安装
主要是安装后,配置环境变量,需要将depot_tools路径放到Path最前面;
再设置 DEPOT_TOOLS_WIN_TOOLCHAIN 的值为0 - 代理配置
cmd:
set http_proxy=http://localhost:1081
set https_proxy=http://localhost:1081
git bash:
git config --global http_proxy http://localhost:1081
git config --global http_proxy http://localhost:1081
1081是代理http的端口
我在测试时,发现localhost不能修改为127.0.0.1,修改后,会出现源码下载出错的问题 - 获取源码
mkdir webrtc
cd webrtc
fetch --nohooks webrtc
gclient