https://github.com/JustinStitt closed
https://github.com/llvm/llvm-project/pull/162571
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -371,107 +424,107 @@ int main_platform(int argc, char *argv[]) {
signal(SIGPIPE, SIG_IGN);
signal(SIGHUP, signal_handler);
#endif
- int long_option_index = 0;
+
+ // Special handling for 'help' as first argument
+ if (argc > 0 && strcmp(argv[0], "help") == 0) {
+L
emaste wrote:
@aokblast for reference we build 32-bit FreeBSD arm packages in a 32-bit jail
on an arm64 host, on Ampere eMAG systems.
https://github.com/llvm/llvm-project/pull/162811
___
lldb-commits mailing list
[email protected]
https://li
https://github.com/cs01 edited https://github.com/llvm/llvm-project/pull/162730
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
sedymrak wrote:
> LGTM, just needs API tests for the `FindFirstType(...).size` cases
That makes sense. I do not have much experience with this but I can try.
https://github.com/llvm/llvm-project/pull/162278
___
lldb-commits mailing list
lldb-commits@l
https://github.com/charles-zablit approved this pull request.
LGTM, thanks! This used to be gated behind a `if(MSVC)` flag in `AddLLDB.cmake`
but that's a far better solution.
https://github.com/llvm/llvm-project/pull/162831
___
lldb-commits mailing l
jimingham wrote:
As far as registration goes, I think we should probably have a AppliesToThread
type API as part of the ScriptedStackFrameList API. Some of these providers
might very well know "All the frames I am going to recognize are named with
some recognizable pattern". Or they might wa