================ @@ -1197,6 +1197,34 @@ Status Platform::PutFile(const FileSpec &source, const FileSpec &destination, if (!source_file) return Status(source_file.takeError()); Status error; + + bool requires_upload = true; + { + uint64_t dest_md5_low, dest_md5_high; + bool success = CalculateMD5(destination, dest_md5_low, dest_md5_high); + if (!success) { + LLDB_LOGF(log, "[PutFile] couldn't get md5 sum of destination"); + } else { + auto local_md5 = llvm::sys::fs::md5_contents(source.GetPath()); + if (!local_md5) { + LLDB_LOGF(log, "[PutFile] couldn't get md5 sum of source"); + } else { + uint64_t local_md5_high, local_md5_low; + std::tie(local_md5_high, local_md5_low) = local_md5->words(); ---------------- bulbazord wrote:
LLDB uses c++17 so you can use structured binding for this. ``` const auto [local_md5_high, local_md5_low] = local_md5->words(); ``` https://github.com/llvm/llvm-project/pull/88812 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits