blob: 6746d530b8005f42640f0576a09df941e4d33fc1 [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 Clayton60830262011-02-04 18:53:10 +000018Symbols::LocateExecutableObjectFile (const FileSpec *exec_fspec, const ArchSpec* arch, const lldb_private::UUID *uuid)
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 Clayton60830262011-02-04 18:53:10 +000025Symbols::LocateExecutableSymbolFile (const FileSpec *exec_fspec, const ArchSpec* arch, const lldb_private::UUID *uuid)
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
31#endif