From b3e1f1b13249868bef6a7c0895bcf2953eeabe44 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 15 Jul 2024 21:11:40 -0700 Subject: [lldb] Fix help syntax for add-dsym (target symbols add) (#98976) The help output incorrectly states that this command takes a shared library name () while really it takes a path to a symbol file. rdar://131777043 --- lldb/source/Commands/CommandObjectTarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectTarget.cpp') diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 80181a9..d594330 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -4252,7 +4252,7 @@ public: m_option_group.Append(&m_current_stack_option, LLDB_OPT_SET_2, LLDB_OPT_SET_2); m_option_group.Finalize(); - AddSimpleArgumentList(eArgTypeShlibName); + AddSimpleArgumentList(eArgTypeFilename); } ~CommandObjectTargetSymbolsAdd() override = default; -- cgit v1.1