diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2025-02-22 11:11:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-22 11:11:40 -0600 |
commit | ae28a375d0d700ea73052828f5d7fbbb5f5159b2 (patch) | |
tree | 93d2edd0d5e8e9bbe8446cc680b0dbde8ab6c0a6 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | e21a1737f3523488a04169096fa27d0914a142a7 (diff) | |
download | llvm-ae28a375d0d700ea73052828f5d7fbbb5f5159b2.zip llvm-ae28a375d0d700ea73052828f5d7fbbb5f5159b2.tar.gz llvm-ae28a375d0d700ea73052828f5d7fbbb5f5159b2.tar.bz2 |
[lldb] Document <run-args> behavior in process launch help (#128215)
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index 7444e46..654dfa8 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -118,8 +118,9 @@ public: CommandObjectProcessLaunch(CommandInterpreter &interpreter) : CommandObjectProcessLaunchOrAttach( interpreter, "process launch", - "Launch the executable in the debugger.", nullptr, - eCommandRequiresTarget, "restart"), + "Launch the executable in the debugger. If no run-args are " + "specified, the arguments from target.run-args are used.", + nullptr, eCommandRequiresTarget, "restart"), m_class_options("scripted process", true, 'C', 'k', 'v', 0) { m_all_options.Append(&m_options); |