Add hacky, incomplete Linux host implementation; barely enough to allow
compiling lldb.  Someone else might try to improve it, though. :)



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@107501 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Host/linux/Symbols.cpp b/source/Host/linux/Symbols.cpp
new file mode 100644
index 0000000..fb25b5d
--- /dev/null
+++ b/source/Host/linux/Symbols.cpp
@@ -0,0 +1,27 @@
+//===-- Symbols.cpp ---------------------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "lldb/Host/Symbols.h"
+
+using namespace lldb;
+using namespace lldb_private;
+
+FileSpec
+Symbols::LocateExecutableObjectFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
+{
+    // FIXME: Proper impliementation?
+    return FileSpec();
+}
+
+FileSpec
+Symbols::LocateExecutableSymbolFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
+{
+    // FIXME: Proper impliementation?
+    return FileSpec();
+}