diff options
author | Greg Clayton <gclayton@apple.com> | 2014-11-17 19:39:20 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-11-17 19:39:20 +0000 |
commit | 8012cadbf32335457b8a4ea85783850249ccb805 (patch) | |
tree | 4528f3cbc28b5193812febb3926688ed1d6042e6 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 41d03bc540c7240554fc8945a02fb1d03a78b626 (diff) | |
download | llvm-8012cadbf32335457b8a4ea85783850249ccb805.zip llvm-8012cadbf32335457b8a4ea85783850249ccb805.tar.gz llvm-8012cadbf32335457b8a4ea85783850249ccb805.tar.bz2 |
Fixed more fallout from running the test suite remotely on iOS devices.
Fixed include:
- Change Platform::ResolveExecutable(...) to take a ModuleSpec instead of a FileSpec + ArchSpec to help resolve executables correctly when we have just a path + UUID (no arch).
- Add the ability to set the listener in SBLaunchInfo and SBAttachInfo in case you don't want to use the debugger as the default listener.
- Modified all places that use the SBLaunchInfo/SBAttachInfo and the internal ProcessLaunchInfo/ProcessAttachInfo to not take a listener as a parameter since it is in the launch/attach info now
- Load a module's sections by default when removing a module from a target. Since we create JIT modules for expressions and helper functions, we could end up with stale data in the section load list if a module was removed from the target as the section load list would still have entries for the unloaded module. Target now has the following functions to help unload all sections a single or multiple modules:
size_t
Target::UnloadModuleSections (const ModuleList &module_list);
size_t
Target::UnloadModuleSections (const lldb::ModuleSP &module_sp);
llvm-svn: 222167
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index b5ca44f..897e390 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -260,7 +260,7 @@ protected: } StreamString stream; - Error error = target->Launch(debugger.GetListener(), m_options.launch_info, &stream); + Error error = target->Launch(m_options.launch_info, &stream); if (error.Success()) { |