summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/Host/linux/Host.cpp10
-rw-r--r--lldb/source/Plugins/DynamicLoader/Linux-DYLD/DynamicLoaderLinuxDYLD.cpp2
-rw-r--r--lldb/source/Utility/ARM_DWARF_Registers.cpp2
3 files changed, 13 insertions, 1 deletions
diff --git a/lldb/source/Host/linux/Host.cpp b/lldb/source/Host/linux/Host.cpp
index b0d43e87de6..4ebacc54c17 100644
--- a/lldb/source/Host/linux/Host.cpp
+++ b/lldb/source/Host/linux/Host.cpp
@@ -14,6 +14,7 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
+#include "lldb/Core/Error.h"
#include "lldb/Host/Host.h"
using namespace lldb;
@@ -33,3 +34,12 @@ Host::GetOSVersion(uint32_t &major,
status = sscanf(un.release, "%u.%u.%u", &major, &minor, &update);
return status == 3;
}
+
+Error
+Host::LaunchProcess (ProcessLaunchInfo &launch_info)
+{
+ Error error;
+ assert(!"Not implemented yet!!!");
+ return error;
+}
+
diff --git a/lldb/source/Plugins/DynamicLoader/Linux-DYLD/DynamicLoaderLinuxDYLD.cpp b/lldb/source/Plugins/DynamicLoader/Linux-DYLD/DynamicLoaderLinuxDYLD.cpp
index 1eda619225c..898c36efcbf 100644
--- a/lldb/source/Plugins/DynamicLoader/Linux-DYLD/DynamicLoaderLinuxDYLD.cpp
+++ b/lldb/source/Plugins/DynamicLoader/Linux-DYLD/DynamicLoaderLinuxDYLD.cpp
@@ -321,7 +321,7 @@ DynamicLoaderLinuxDYLD::GetStepThroughTrampolinePlan(Thread &thread, bool stop)
AddressRange range;
if (target_symbols.GetContextAtIndex(i, context))
{
- context.GetAddressRange(eSymbolContextEverything, range);
+ context.GetAddressRange(eSymbolContextEverything, 0, false, range);
lldb::addr_t addr = range.GetBaseAddress().GetLoadAddress(&target);
if (addr != LLDB_INVALID_ADDRESS)
addrs.push_back(addr);
diff --git a/lldb/source/Utility/ARM_DWARF_Registers.cpp b/lldb/source/Utility/ARM_DWARF_Registers.cpp
index b8737ae2851..5e59c3325e5 100644
--- a/lldb/source/Utility/ARM_DWARF_Registers.cpp
+++ b/lldb/source/Utility/ARM_DWARF_Registers.cpp
@@ -10,6 +10,8 @@
#include "ARM_DWARF_Registers.h"
#include <string.h>
+#include <string.h>
+
using namespace lldb;
using namespace lldb_private;
OpenPOWER on IntegriCloud