Reputation: 21
I need to compile this fork of WebRTC for iOS https://github.com/pixiv/webrtc
I have followed the steps indicated here: https://github.com/pixiv/webrtc/releases.
but when i try to build the framework using python build_ios_libs.py --bitcode
it shows and error find_depot_tools file not found
I have cloned the repo to my computer with this command line; gh repo clone pixiv/webrtc
please help am i doing right or missing something?? Thanks
Upvotes: 0
Views: 210
Reputation: 591
You need google depot tools
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
and set the path to the tools
export PATH=$PATH:
pwd/depot_tools/
Upvotes: 1