编译adb,Android‘s adb standalone build with cmake

Posted AlphaABCD

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译adb,Android‘s adb standalone build with cmake相关的知识,希望对你有一定的参考价值。

环境

系统:Ubuntu20 LTS
x64

源码地址:
https://github.com/prife/adb

Step1: 源码编译boringssl

$ cd <this-project>
$ cd lib
$ git clone https://salsa.debian.org/android-tools-team/android-platform-external-boringssl.git boringssl
$ cd boringssl
$ rm -rf debian/out
$ make CFLAGS=-fPIC DEB_HOST_ARCH=amd64 -f debian/libcrypto.mk
$ make CXXFLAGS=-fPIC DEB_HOST_ARCH=amd64 -f debian/libssl.mk

adb-master/lib/boringssl/debian/out下会生成 libssl.so.0libcryto.so.0

Step2:修改 CMakelists.txt

adb-master\\src\\CMakeLists.txt
1、line 170

  $CMAKE_SOURCE_DIR/lib/boringssl/debian/out/libcrypto.so
  $CMAKE_SOURCE_DIR/lib/boringssl/debian/out/libssl.so

指定Step1中编译好的so库路径,原有的会出错

2、 line 176
改为:

`LINK_FLAGS "-Wl,-rpath=./"`

目的是 在adb和adbd运行时查找 libssl.so.0libcryto.so.0 时先在同一路径下寻找

以上是关于编译adb,Android‘s adb standalone build with cmake的主要内容,如果未能解决你的问题,请参考以下文章

编译adb,Android‘s adb standalone build with cmake

ADB

Android系统编译方法-编译源码命令(make)(lunch)(adb)

基于 Ubuntu 编译 windows 版 adb

Android 常用adb shell 命令(转)

python3.6如何向串口发送Android adb命令,求大神指点