使用 g++ 构建 adb 时无法识别_Nonnull

Can't recognize _Nonnull when building adb with g++

本文关键字:识别 Nonnull g++ 构建 adb 使用      更新时间:2023-10-16

我正在尝试从 AOSP android 7.1.2 源代码构建 adb,并使用 g++ (Ubuntu 5.4.0-6ubuntu1~16.04.5( 5.4.0 20160609编译它,方法是根据 Android.mk 慢慢添加包含和库,并随时修复编译器的投诉。到目前为止,我得到了下面的命令,但我不确定如何解决下面的错误:

adb-1.0.36/system/core$ g++ -o ./adb/adb_client{,.cpp} -Wall -Wextra -Werror -Wno-unused-parameter -Wno-missing-field-initializers -Wvla -DADB_REVISION='1.0.36' -std=c++14 -I./base/include/ -I./include -lrt -ldl -lpthread -fvisibility=hidden
In file included from ./adb/adb_client.cpp:20:0:
./adb/adb_client.h:28:67: error: expected ‘,’ or ‘...’ before ‘error’
 int adb_connect(const std::string& service, std::string* _Nonnull error);
                                                               ^
./adb/adb_client.h:29:68: error: expected ‘,’ or ‘...’ before ‘error’
 int _adb_connect(const std::string& service, std::string* _Nonnull error);
                                                                ^
./adb/adb_client.h:37:66: error: expected ‘,’ or ‘...’ before ‘result’
 bool adb_query(const std::string& service, std::string* _Nonnull result,
                                                              ^
./adb/adb_client.h:41:66: error: expected ‘,’ or ‘...’ before ‘serial’
 void adb_set_transport(TransportType type, const char* _Nullable serial);
                                                              ^
./adb/adb_client.h:44:49: error: expected ‘,’ or ‘...’ before ‘type’
 void adb_get_transport(TransportType* _Nullable type, const char* _Nullable* _Nullable serial);
                                             ^
./adb/adb_client.h:50:45: error: expected ‘,’ or ‘...’ before ‘hostname’
 void adb_set_tcp_name(const char* _Nullable hostname);
                                         ^
./adb/adb_client.h:55:61: error: expected ‘,’ or ‘...’ before ‘*’ token
 int adb_send_emulator_command(int argc, const char* _Nonnull* _Nonnull argv,
                                                         ^
./adb/adb_client.h:60:47: error: expected ‘,’ or ‘...’ before ‘error’
 bool adb_status(int fd, std::string* _Nonnull error);
                                           ^
./adb/adb_client.h:63:54: error: expected ‘,’ or ‘...’ before ‘command’
 std::string format_host_command(const char* _Nonnull command, TransportType type,
                                                  ^
./adb/adb_client.h:67:47: error: expected ‘,’ or ‘...’ before ‘feature_set’
 bool adb_get_feature_set(FeatureSet* _Nonnull feature_set, std::string* _Nonnull error);
                                           ^

似乎_Nonnull_Nullable是在 ./adb/sysdeps.h 中定义的

58 // Clang-only nullability specifiers
57 #define _Nonnull
59 #define _Nullable

似乎 AOSP 7.1.2 是 gcc 4.8 附带的。另外,我注意到 -Wexit-time-destructors 似乎不是我正在使用的 g++ 的一部分,也不是 -compatibility_version

ltecoe@ltecoe:~/imx6solox-yocto-bsp/sources/meta-harris-tools/recipes-connectivity/adb/adb-1.0.36/system/core$ g++ -o ./adb/adb_client{,.cpp} -compatibility_version -Wall -Wextra -Werror -Wno-unused-parameter -Wno-missing-field-initializers -Wvla -DADB_REVISION='1.0.36' -std=c++14 -Wexit-time-destructors -I./base/include/ -I./include -lrt -ldl -lpthread
g++: error: unrecognized command line option ‘-compatibility_version’
g++: error: unrecognized command line option ‘-Wexit-time-destructors’

_Nonnull_Nullable是Clang的私钥。由于条件#ifdef _WIN32,未执行 2 行声明。

因此,为了在 Linux 上使用 g++ 编译它,请将这两个声明放到它们在全球范围内生效的其他地方。