blob: 464c2fc5784c9a4661b37a187764a7494678bd37 [file] [log] [blame]
Eli Friedman5423ebf2010-07-02 19:28:44 +00001//===-- Symbols.cpp ---------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Host/Symbols.h"
11
12using namespace lldb;
13using namespace lldb_private;
14
Greg Clayton2bddd342010-09-07 20:11:56 +000015#if !defined (__APPLE__)
16
Eli Friedman5423ebf2010-07-02 19:28:44 +000017FileSpec
Greg Claytonb9a01b32012-02-26 05:51:37 +000018Symbols::LocateExecutableObjectFile (const ModuleSpec &module_spec)
Eli Friedman5423ebf2010-07-02 19:28:44 +000019{
Greg Clayton2bddd342010-09-07 20:11:56 +000020 // FIXME
Eli Friedman5423ebf2010-07-02 19:28:44 +000021 return FileSpec();
22}
23
24FileSpec
Greg Claytonb9a01b32012-02-26 05:51:37 +000025Symbols::LocateExecutableSymbolFile (const ModuleSpec &module_spec)
Eli Friedman5423ebf2010-07-02 19:28:44 +000026{
Greg Clayton2bddd342010-09-07 20:11:56 +000027 // FIXME
Eli Friedman5423ebf2010-07-02 19:28:44 +000028 return FileSpec();
29}
Greg Clayton2bddd342010-09-07 20:11:56 +000030
Greg Clayton103f0282012-09-12 02:03:59 +000031FileSpec
32Symbols::FindSymbolFileInBundle (const FileSpec& symfile_bundle,
33 const lldb_private::UUID *uuid,
34 const ArchSpec *arch)
35{
36 return FileSpec();
37}
38
39
Greg Clayton2bddd342010-09-07 20:11:56 +000040#endif