From c0cb0e82f5ffe01bf11e3732d5d9ec5e345a5526 Mon Sep 17 00:00:00 2001 From: chinchilla-forest <360265935@qq.com> Date: Thu, 7 Sep 2023 11:56:18 +0800 Subject: [PATCH] Update index.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加完depot_tools到PATH之后,需要在任意目录下运行 gclient ,它会自动update depot_tools一些组件,如果直接运行fetch命令,可能会缺乏一些组件报错 --- content/basic/webrtc-compilation/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/basic/webrtc-compilation/index.md b/content/basic/webrtc-compilation/index.md index 2c103ef..816f4fa 100644 --- a/content/basic/webrtc-compilation/index.md +++ b/content/basic/webrtc-compilation/index.md @@ -44,6 +44,8 @@ export PATH=/path/to/depot_tools:$PATH 然后执行如下命令,整个过程需要大约 40 分钟,请保持耐心 🙏 ```bash +#添加完depot_tools到PATH之后,需要在任意目录下运行 gclient ,它会自动update depot_tools一些组件,如果直接运行fetch命令,可能会缺乏一些组件报错 +$ gclient # 创建并切换到 ~/webrtc(也可以是自定义路径) $ mkdir ~/webrtc && cd "$_" # 拉取并同步 WebRTC 的最新代码