[Lldb-commits] [lldb] a2f542b - [lldb][debugserver] update --help to list all the options (#154853)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 22 00:05:16 PDT 2025
Author: Jason Molenda
Date: 2025-08-22T00:05:13-07:00
New Revision: a2f542b7a51cc3d8fb31541dbd0bbf2b497ceaa9
URL: https://github.com/llvm/llvm-project/commit/a2f542b7a51cc3d8fb31541dbd0bbf2b497ceaa9
DIFF: https://github.com/llvm/llvm-project/commit/a2f542b7a51cc3d8fb31541dbd0bbf2b497ceaa9.diff
LOG: [lldb][debugserver] update --help to list all the options (#154853)
These are almost all for internal-developer-users only so "look at
debugserver.cpp" wasn't unreasonable, but we rarely add any new options
so a simple list of all recognized options isn't a burden to throw in
the help method.
Added:
Modified:
lldb/tools/debugserver/source/debugserver.cpp
Removed:
################################################################################
diff --git a/lldb/tools/debugserver/source/debugserver.cpp b/lldb/tools/debugserver/source/debugserver.cpp
index f41a9e00ec948..2c32fe98cf1ba 100644
--- a/lldb/tools/debugserver/source/debugserver.cpp
+++ b/lldb/tools/debugserver/source/debugserver.cpp
@@ -792,6 +792,39 @@ void show_usage_and_exit(int exit_code) {
DEBUGSERVER_PROGRAM_NAME);
RNBLogSTDERR(" %s /path/file --attach=<process_name>\n",
DEBUGSERVER_PROGRAM_NAME);
+ RNBLogSTDERR("\n");
+ RNBLogSTDERR(" -a | --attach <pid>\n");
+ RNBLogSTDERR(" -w | --waitfor <name>\n");
+ RNBLogSTDERR(" -A | --arch <arch>\n");
+ RNBLogSTDERR(" -g | --debug\n");
+ RNBLogSTDERR(" -K | --kill-on-error\n");
+ RNBLogSTDERR(" -v | --verbose\n");
+ RNBLogSTDERR(" -V | --version\n");
+ RNBLogSTDERR(" -k | --lockdown\n");
+ RNBLogSTDERR(" -t | --applist\n");
+ RNBLogSTDERR(" -l | --log-file\n");
+ RNBLogSTDERR(" -f | --log-flags\n");
+ RNBLogSTDERR(" -x | --launch <auto|posix-spawn|fork-exec|springboard>\n");
+ RNBLogSTDERR(" -d | --waitfor-duration <seconds>\n");
+ RNBLogSTDERR(" -i | --waitfor-interval <usecs>\n");
+ RNBLogSTDERR(" -r | --native-regs\n");
+ RNBLogSTDERR(" -s | --studio-path <path>\n");
+ RNBLogSTDERR(" -I | --stdin-path <path>\n");
+ RNBLogSTDERR(" -O | --stdout-path <path>\n");
+ RNBLogSTDERR(" -E | --stderr-path <path>\n");
+ RNBLogSTDERR(" -n | --no-stdio\n");
+ RNBLogSTDERR(" -S | --setsid\n");
+ RNBLogSTDERR(" -D | --disable-aslr\n");
+ RNBLogSTDERR(" -W | --working-dir <dir>\n");
+ RNBLogSTDERR(" -p | --platform <arg?>\n");
+ RNBLogSTDERR(" -u | --unix-socket <unix socket name>\n");
+ RNBLogSTDERR(" -2 | --fd <file descriptor number>\n");
+ RNBLogSTDERR(" -P | --named-pipe <pipe>\n");
+ RNBLogSTDERR(" -R | --reverse-connect\n");
+ RNBLogSTDERR(" -e | --env <env>\n");
+ RNBLogSTDERR(" -F | --forward-env <env>\n");
+ RNBLogSTDERR(" -U | --unmask-signals\n");
+
exit(exit_code);
}
More information about the lldb-commits
mailing list