Wrapped up the work I am going to do for now for the "add-dsym" or "target symfile...
authorGreg Clayton <gclayton@apple.com>
Thu, 27 Sep 2012 22:26:11 +0000 (22:26 +0000)
committerGreg Clayton <gclayton@apple.com>
Thu, 27 Sep 2012 22:26:11 +0000 (22:26 +0000)
commitb5f0feabae967ab27efa82ad1a54536fc5671d22
tree9b5a1b5aaf6379c843d554f81819972fae0d804d
parentdaa1c74da8e30a2c2dfab0ad64ade8f2cd25a773
Wrapped up the work I am going to do for now for the "add-dsym" or "target symfile add" command.

We can now do:

Specify a path to a debug symbols file:
(lldb) add-dsym <path-to-dsym>

Go and download the dSYM file for the "libunc.dylib" module in your target:
(lldb) add-dsym --shlib libunc.dylib

Go and download the dSYM given a UUID:
(lldb) add-dsym --uuid <UUID>

Go and download the dSYM file for the current frame:
(lldb) add-dsym --frame

llvm-svn: 164806
12 files changed:
lldb/include/lldb/Core/UUID.h
lldb/include/lldb/Interpreter/OptionGroupBoolean.h
lldb/include/lldb/Interpreter/OptionValueFileSpec.h
lldb/include/lldb/Interpreter/OptionValueUUID.h
lldb/source/API/SBTarget.cpp
lldb/source/Commands/CommandObjectTarget.cpp
lldb/source/Core/UUID.cpp
lldb/source/Host/macosx/Symbols.cpp
lldb/source/Interpreter/OptionGroupBoolean.cpp
lldb/source/Interpreter/OptionValueFileSpec.cpp
lldb/source/Interpreter/OptionValueUUID.cpp
lldb/source/Interpreter/Property.cpp