summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ObjectFile
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-04-17 19:24:22 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-04-17 19:24:22 +0000
commitffeb4b605a2160993ce11b423098318ed94a84f4 (patch)
tree5ee27914e571af39207a7703437a429b39143705 /lldb/source/Plugins/ObjectFile
parent111c4a6b69086773254345c7edd2ce4f439c98d9 (diff)
downloadbcm5719-llvm-ffeb4b605a2160993ce11b423098318ed94a84f4.tar.gz
bcm5719-llvm-ffeb4b605a2160993ce11b423098318ed94a84f4.zip
Fix build on Linux
- add a workaround header to define uuid_t on platforms that need it - unbreak remote debugging of mac os x apps llvm-svn: 179710
Diffstat (limited to 'lldb/source/Plugins/ObjectFile')
-rw-r--r--lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
index 4f205e9ec63..49441f45ce9 100644
--- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
@@ -43,6 +43,10 @@
#include <dlfcn.h>
#endif
+#ifndef __APPLE__
+#include "Utility/UuidCompatibility.h"
+#endif
+
using namespace lldb;
using namespace lldb_private;
using namespace llvm::MachO;
OpenPOWER on IntegriCloud