虚拟机:Parallels Destop 16
本机:Mac 10.15.7
1、先说环境准备,因为PD是共享宿主机硬盘直接用的话他的硬盘格式跟Mac一样
所以需要跟mac一样创建一个大小写敏感的镜像,然后将源码放进去就可以了。
2、target Generated: android.hardware.usb-V1.1-java
这个错在百度搜基本搜不出来,后面在google group搜到的
具体原因:文件系统为未知格式,源码里没有做处理需要修改system/tools/hidl/Coordinator.cpp
看下代码对比图:
1、搜索while ((ent = readdir(dir)) != NULL) {
2、将
if (ent->d_type != DT_REG) {
continue;
替换为
if (ent->d_type == DT_UNKNOWN) {
struct stat sb;
const auto filename = packagePath + std::string(ent->d_name);
if (stat(filename.c_str(), &sb) == -1) {
fprintf(stderr, "ERROR: Could not stat %s\n", filename.c_str());
return -errno;
}
if ((sb.st_mode & S_IFMT) != S_IFREG) {
continue;
}
} else if (ent->d_type != DT_REG) {
continue;
}
保存、编译,美滋滋。
好了,打完收工。