Kompilieren Sie WebRTC unter Ubuntu 16.04

Depot_tools installieren

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git

export PATH=$PATH:`pwd`/depot_tools

export GIT_SSL_NO_VERIFY=1

synchroner Code

mkdir webrtc-checkout
cd webrtc-checkout
fetch --nohooks webrtc
gclient sync

Installieren Sie die Kompilierungsumgebung

./src/build/install-build-deps.sh

Ninja-Projektordner erstellen

gn gen out/Default

kompilieren

ninja -C out/Default   

Guess you like

Origin blog.csdn.net/qq_31231915/article/details/122580159