当前位置:网站首页>华为鲲鹏arm服务器下使用webrtc和boost踩坑记--编译篇
华为鲲鹏arm服务器下使用webrtc和boost踩坑记--编译篇
2022-08-04 05:31:00 【睏哥RTC】
一. webrtc编译
由于申请的鲲鹏机器在国内,下载webrtc下不了,只能用日本的一台x86下载和交叉编译
1、安装depot tools
国外:git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
国内:git clone https://source.codeaurora.org/quic/lc/chromium/tools/depot_tools
把depot_tools目录加入PATH:export PATH=`pwd`/depot_tools:"$PATH"
2. 下源码:
fetch --nohooks webrtc
cd src && git checkout -b m59 branch-heads/59 && cd ..
gclient sync
4. 下arm64的编译环境
build/linux/sysroot_scripts/install-sysroot.py --arch=arm64
5. 编译
gn gen out/Release-device-arm64 --args='is_debug=false is_component_build=false use_sysroot=false use_custom_libcxx=false treat_warnings_as_errors=false rtc_include_tests=false rtc_use_h264=true proprietary_codecs=true ffmpeg_branding="Chrome" use_openh264=true target_os="linux" target_cpu="arm64"'
ninja -C out/Release-device-arm64
6.合并静态库
在out/Release-device-arm64下编辑 libwebrtc_full.ar 文件,内容为:
CREATE libwebrtc_full.a
ADDLIB obj/third_party/boringssl/libboringssl.a
ADDLIB obj/third_party/protobuf/libprotobuf_full.a
ADDLIB obj/webrtc/libwebrtc.a
ADDLIB obj/webrtc/system_wrappers/libfield_trial_default.a
ADDLIB obj/webrtc/system_wrappers/libmetrics_default.a
ADDLIB obj/webrtc/libwebrtc_common.a
SAVE
END
然后执行: ar -M < libwebrtc_full.ar 生成 libwebrtc_full.a
二、在鲲鹏下编译boost库
./bootstrap.sh --prefix=/usr/local
./b2 -j8 variant=release define=_GLIBCXX_USE_CXX11_ABI=1 stage
添加_GLIBCXX_USE_CXX11_ABI=1是因为webrtc的M66版本内部用的_GLIBCXX_USE_CXX11_ABI=1(因为使用webrtc的程序不加这个就链接不上webrtc),所以给boost库也加了这个参数
边栏推荐
- LeetCode_Dec_1st_Week
- Socket编程详解
- [开发杂项][调试]debug into kernel
- tmux概念和使用
- jdbc:mysql://localhost:3306/student?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8时报错
- arm-2-基础阶段
- const int * a 与 int * const a 的定义与区别
- Copy Siege Lion 5-minute online experience MindIR format model generation
- LeetCode_22_Apr_4th_Week
- CSDN spree -- college round table spree
猜你喜欢
迅雷关闭自动更新
Amazon Cloud Technology Build On-Amazon Neptune's Knowledge Graph-Based Recommendation Model Building Experience
C语言结构体(必须掌握版)
Completely remove MySQL tutorial
集合---ArrayList的底层
Windows10重置MySQL用户密码
Pytest common plug-in
MOOSE平台使用入门攻略——如何运行官方教程的例子
MNIST handwritten digit recognition, sorted by from two to ten
Design and implementation of legal aid platform based on asp.net (with project link)
随机推荐
抽象类、内部类和接口
通用解决端口占用问题
LeetCode_Dec_1st_Week
Pytest common plug-in
arm-2-基础阶段
tmux概念和使用
[English learning][sentence] good sentence
makefile基础学习
Stream API
Fabric v1.1 环境搭建
target has libraries with conflicting names: libcrypto.a and libssl.a.
文件权限管理 ugo
亚马逊云科技 Build On 2022 - AIot 第二季物联网专场实验心得
MySQL存储过程学习笔记(基于8.0)
Question 1000: Input two integers a and b, calculate the sum of a+b, this question is multiple sets of test data
亚马逊云科技Build On-Amazon Neptune基于知识图谱的推荐模型构建心得
C语言数组的深度分析
彻底删除MySQL教程
C语言静态变量static的分析
Shell脚本执行的三种方式