llvm-project/lldb/source
Greg Clayton aa51684318 Patch for "process load" by Filipe Cabecinhas.
Filipe was attempting to do a:

(lldb) process load ~/path/foo.dylib

But the process load command wasn't resolving the path. We have to be careful
about resolving the path here because we want to do it in terms of the platform
we are using. the "~/" can mean a completely different path if you are remotely
debugging on another machine as another user. So to support this, platforms now
can resolve remote paths:

bool
Platform::ResolveRemotePath (const FileSpec &platform_path,
                             FileSpec &resolved_platform_path);

The host/local platform will just resolve the path.
                             

llvm-svn: 137307
2011-08-11 16:25:18 +00:00
..
API Added the ability to remove orphaned module shared pointers from a ModuleList. 2011-08-11 02:48:45 +00:00
Breakpoint Move the handling of breakpoint conditions from the Private event loop to the StopInfoBreakpoint::DoActions, which happens as the 2011-08-09 02:12:22 +00:00
Commands Patch for "process load" by Filipe Cabecinhas. 2011-08-11 16:25:18 +00:00
Core Fix the broken build that happened with my last checkin. 2011-08-11 04:30:39 +00:00
Expression Fixed a problem that prevented access to members 2011-08-10 21:05:52 +00:00
Host While tracking down memory consumption issue a few things were needed: the 2011-08-10 02:10:13 +00:00
Interpreter CFString.py now shows contents in a more NSString-like way (e.g. you get @"Hello" instead of "Hello") 2011-08-09 23:50:01 +00:00
Plugins Added the ability to remove orphaned module shared pointers from a ModuleList. 2011-08-11 02:48:45 +00:00
Symbol While tracking down memory consumption issue a few things were needed: the 2011-08-10 02:10:13 +00:00
Target Patch for "process load" by Filipe Cabecinhas. 2011-08-11 16:25:18 +00:00
Utility Modified the LocateMacOSXFilesUsingDebugSymbols(...) function to locate 2011-07-19 03:57:15 +00:00
Makefile Patch from Jean-Daniel Dupas: 2010-07-12 23:14:00 +00:00
lldb-log.cpp some editing of data visualization error messages to make them more meaningful 2011-07-22 17:03:19 +00:00
lldb.cpp Patch by David Forsythe to build lldb on FreeBSD! 2011-08-02 20:52:42 +00:00