blob: 51345bffb976bec65e7ca64dea48ffbe63cf58c1 [file] [log] [blame]
Eli Friedman7c7c19d2010-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 Clayton8f3b21d2010-09-07 20:11:56 +000015#if !defined (__APPLE__)
16
Eli Friedman7c7c19d2010-07-02 19:28:44 +000017FileSpec
18Symbols::LocateExecutableObjectFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
19{
Greg Clayton8f3b21d2010-09-07 20:11:56 +000020 // FIXME
Eli Friedman7c7c19d2010-07-02 19:28:44 +000021 return FileSpec();
22}
23
24FileSpec
25Symbols::LocateExecutableSymbolFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
26{
Greg Clayton8f3b21d2010-09-07 20:11:56 +000027 // FIXME
Eli Friedman7c7c19d2010-07-02 19:28:44 +000028 return FileSpec();
29}
Greg Clayton8f3b21d2010-09-07 20:11:56 +000030
31#endif