@@ -3160,6 +3165,140 @@ rnb_err_t RNBRemote::HandlePacket_m(const char *p) {
return SendPacket(ostrm.str());
}
+/// Returns true if `str` starts with `prefix`.
+static bool starts_with(std::string_view str, std::string_view prefix) {
+ return str.size() >= prefix.size() &&
Author: Vladislav Dzhidzhoev
Date: 2025-10-08T20:17:54+02:00
New Revision: f8ba5343ae19651b148e53960597bdff0c877757
URL:
https://github.com/llvm/llvm-project/commit/f8ba5343ae19651b148e53960597bdff0c877757
DIFF:
https://github.com/llvm/llvm-project/commit/f8ba5343ae19651b148e53960597bdff0c87775
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `lldb-x86_64-win` running
on `as-builder-10` while building `lldb` at step 6 "cmake-configure".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/211/builds/2712
Here is the relevant piece of the build l
charles-zablit wrote:
> Please note that this patch has broken
> [lldb-remote-linux-win](https://lab.llvm.org/buildbot/#/builders/197).
>
> ```
> C:\buildbot\as-builder-10\lldb-x-aarch64\llvm-project\lldb\tools\driver\Driver.cpp(465):
> error C2065: 'LLDB_PYTHON_DLL_RELATIVE_PATH': undeclared