glaubitz added a comment.
This failure affects 32-bit PowerPC as well. Can we get this fixed?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102872/new/
https://reviews.llvm.org/D102872
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
glaubitz added a comment.
It seems we need this change on all architectures except arm, arm64, ppc64el,
s390x and x86_64. Those are the only ones which implement
NativeRegisterContextLinux_$ARCH.
See:
https://github.com/llvm/llvm-project/tree/main/lldb/source/Plugins/Process/Linux
CHANGES SI
mgorny created this revision.
mgorny added reviewers: labath, krytarowski, emaste, teemperor.
mgorny requested review of this revision.
Refactor ConnectToRemote() to improve readability and make future
changes easier:
1. Replace static buffers with std::string.
2. When handling errors, prefer rep
mgorny created this revision.
mgorny added reviewers: labath, krytarowski, emaste, teemperor.
mgorny requested review of this revision.
Support listening on serial port when serial:// protocol is being used
in place of host/port. This is not fully functional yet, as lldb-server
crashes when attem
lawrence_danna created this revision.
lawrence_danna added reviewers: jasonmolenda, JDevlieghere.
lawrence_danna requested review of this revision.
Herald added a project: LLDB.
The help string can be more helpful by explaining these are
aliases for 'process connect'
Repository:
rG LLVM Githu
lawrence_danna updated this revision to Diff 380257.
lawrence_danna added a comment.
clang-format
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111965/new/
https://reviews.llvm.org/D111965
Files:
lldb/source/Interpreter/CommandInterpreter.cpp
Author: Jonas Devlieghere
Date: 2021-10-17T19:12:24-07:00
New Revision: c900b0a6d5f7aba7d71c3f0d02eb27a2bc9c9448
URL:
https://github.com/llvm/llvm-project/commit/c900b0a6d5f7aba7d71c3f0d02eb27a2bc9c9448
DIFF:
https://github.com/llvm/llvm-project/commit/c900b0a6d5f7aba7d71c3f0d02eb27a2bc9c9448.d
labath added inline comments.
Comment at: lldb/include/lldb/Host/Terminal.h:21
public:
+ struct Data;
+
Move this into the protected section
Comment at: lldb/source/Host/common/Terminal.cpp:76
+ struct termios &fd_termios = data->m_termios;