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
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
index 4f205e9..49441f4 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;