美文网首页
linux之编译吧webRTC

linux之编译吧webRTC

作者: waterge | 来源:发表于2018-02-12 10:55 被阅读0次

今天主要带来的是webrtc build on linux

废话不多说,因为环境之前编译过webrtc 的安卓端,需要先把编译的文件夹删掉,不然空间不够用的。

先来看一下

还是原来的clone webrtc 的下载器

git clonehttps://chromium.googlesource.com/external/webrtc.git

还有编译脚本文件夹

git clone https://github.com/pristineio/webrtc-build-scripts.git

进入到编译文件夹中

# Source all the routines

source linux/build.sh

root@iZrj9i90l0ap2bura14rrjZ:/water/webrtc/webrtc-build-scripts# source linux/build.sh

/water/webrtc/webrtc-build-scripts/linux/webrtc directory not found, creating...

directory created at /water/webrtc/webrtc-build-scripts/linux/webrtc

# Install any dependencies needed

install_dependencies

遇到的错误

sudo: ./linux/install-chromeos-fonts.py: command not found

ERROR: The installation of the Chrome OS default fonts failed.

This is expected if your repo is installed on a remote file system.

It is recommended to install your repo on a local file system.

You can skip the installation of the Chrome OS default founts with

the command line option: --no-chromeos-fonts.

我这边直接注释掉font有关的安装就,记住不要再运行install_dependencies 不然你修改的脚本还是会重新生成的,直接运行对应的脚本就好了

Skipping installation of Chrome OS fonts.

Installing locales.

Generating locales...

  da_DK.UTF-8... done

Generation complete.

Generating locales...

  fr_FR.UTF-8... done

Generation complete.

Generating locales...

  he_IL.UTF-8... done

Generation complete.

Generating locales...

  zh_TW.UTF-8... done

Generation complete.

# Pull WebRTC

get_webrtc(30分钟)

# Build apprtc

build_apprtc

相关文章

  • linux之编译吧webRTC

    今天主要带来的是webrtc build on linux 废话不多说,因为环境之前编译过webrtc 的安卓端,...

  • WebRTC arm-linux库编译

    安装交叉编译工具 WebRTC的工程已经支持arm-linux平台库的编译 编译环境ubuntu14.04 然后执...

  • Windows端ZLMediaKit编译与webrtc推拉流测试

    之前编译过linux端的ZLMediaKit,做过webrtc的推拉流测试。这次编译Windows端的ZLMedi...

  • WebRTC研究 (一) 编译源码

    @[TOC](WebRTC研究 (一) 编译源码) 1. WebRTC 源码编译 1.1 IOS平台编译 1.1....

  • Ubuntu 下编译 WebRTC

    -- Ubuntu 下编译 WebRTC Ubuntu 下编译 WebRTC 一、Ubuntu 系统环境准备 1、...

  • WebRTC导入Android Studio

    在《WebRTC之Android编译》[https://mp.weixin.qq.com/s/6DWubdMJBU...

  • webrtc

    源码编译 编译最新版webrtc源码和编译好的整个项目10多个Gwebrtc源webrtc技术实践depot_to...

  • WebRTC之Android编译

    前言 在前面关于WebRTC的相关学习笔记中,笔者记录的多是一些理论相关的知识,比如各种协议之类的。虽说有纸上谈兵...

  • Google WebRtc 编译

    Google WebRtc 编译 前段时间有同学留言如何编译 webrtc,写给需要的你,关注微信公众号 他晓,进...

  • 在 Mac 上为 Android 编译 WebRTC

    在 Mac 上为 Android 编译 WebRTC 的基本流程和在任意平台上编译任何其它目标平台的 WebRTC...

网友评论

      本文标题:linux之编译吧webRTC

      本文链接:https://www.haomeiwen.com/subject/ijertftx.html