diff --git a/adb/client/usb_libusb.cpp b/adb/client/usb_libusb.cpp index 46c3f58ec5..a0c36f0151 100644 --- a/adb/client/usb_libusb.cpp +++ b/adb/client/usb_libusb.cpp @@ -22,6 +22,7 @@ #include #include +#include #include #include #include @@ -30,7 +31,7 @@ #include #include -#include +#include #include #include diff --git a/adb/client/usb_linux.cpp b/adb/client/usb_linux.cpp index 1f376a4c93..f1d6779159 100644 --- a/adb/client/usb_linux.cpp +++ b/adb/client/usb_linux.cpp @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include diff --git a/adb/sysdeps/posix/network.cpp b/adb/sysdeps/posix/network.cpp index ecd1fd24ec..86166c0e2c 100644 --- a/adb/sysdeps/posix/network.cpp +++ b/adb/sysdeps/posix/network.cpp @@ -21,6 +21,7 @@ #include #include +#include #include "adb_unique_fd.h" diff --git a/base/errors_unix.cpp b/base/errors_unix.cpp index 296995efe2..48269b6750 100644 --- a/base/errors_unix.cpp +++ b/base/errors_unix.cpp @@ -17,6 +17,7 @@ #include "android-base/errors.h" #include +#include namespace android { namespace base { diff --git a/base/file.cpp b/base/file.cpp index 2f697a1cc1..81aef5758c 100644 --- a/base/file.cpp +++ b/base/file.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include #include diff --git a/base/logging.cpp b/base/logging.cpp index a31feefab2..d746cc4d78 100644 --- a/base/logging.cpp +++ b/base/logging.cpp @@ -23,6 +23,7 @@ #include #include #include +#include // For getprogname(3) or program_invocation_short_name. #if defined(__ANDROID__) || defined(__APPLE__) diff --git a/fastboot/fs.cpp b/fastboot/fs.cpp index c30ca1e4b3..fdc042ff36 100644 --- a/fastboot/fs.cpp +++ b/fastboot/fs.cpp @@ -117,7 +117,7 @@ static int generate_ext4_image(const char* fileName, long long partSize, static constexpr int block_size = 4096; const std::string exec_dir = android::base::GetExecutableDirectory(); - const std::string mke2fs_path = exec_dir + "/mke2fs"; + const std::string mke2fs_path = exec_dir + "/mke2fs.android"; std::vector mke2fs_args = {mke2fs_path.c_str(), "-t", "ext4", "-b"}; std::string block_size_str = std::to_string(block_size); diff --git a/libsparse/sparse_read.cpp b/libsparse/sparse_read.cpp index 4379635270..ccb565bb63 100644 --- a/libsparse/sparse_read.cpp +++ b/libsparse/sparse_read.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include #include diff --git a/libziparchive/zip_archive.cc b/libziparchive/zip_archive.cc index 5e5e7afd18..ebbc819a7a 100644 --- a/libziparchive/zip_archive.cc +++ b/libziparchive/zip_archive.cc @@ -29,6 +29,7 @@ #include #include #include +#include #include #include