Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 1 | //===-- 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 | |
| 12 | using namespace lldb; |
| 13 | using namespace lldb_private; |
| 14 | |
Greg Clayton | 2bddd34 | 2010-09-07 20:11:56 +0000 | [diff] [blame] | 15 | #if !defined (__APPLE__) |
| 16 | |
Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 17 | FileSpec |
Greg Clayton | b9a01b3 | 2012-02-26 05:51:37 +0000 | [diff] [blame] | 18 | Symbols::LocateExecutableObjectFile (const ModuleSpec &module_spec) |
Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 19 | { |
Greg Clayton | 2bddd34 | 2010-09-07 20:11:56 +0000 | [diff] [blame] | 20 | // FIXME |
Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 21 | return FileSpec(); |
| 22 | } |
| 23 | |
| 24 | FileSpec |
Greg Clayton | b9a01b3 | 2012-02-26 05:51:37 +0000 | [diff] [blame] | 25 | Symbols::LocateExecutableSymbolFile (const ModuleSpec &module_spec) |
Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 26 | { |
Greg Clayton | 2bddd34 | 2010-09-07 20:11:56 +0000 | [diff] [blame] | 27 | // FIXME |
Eli Friedman | 5423ebf | 2010-07-02 19:28:44 +0000 | [diff] [blame] | 28 | return FileSpec(); |
| 29 | } |
Greg Clayton | 2bddd34 | 2010-09-07 20:11:56 +0000 | [diff] [blame] | 30 | |
Greg Clayton | 103f028 | 2012-09-12 02:03:59 +0000 | [diff] [blame] | 31 | FileSpec |
| 32 | Symbols::FindSymbolFileInBundle (const FileSpec& symfile_bundle, |
| 33 | const lldb_private::UUID *uuid, |
| 34 | const ArchSpec *arch) |
| 35 | { |
| 36 | return FileSpec(); |
| 37 | } |
| 38 | |
Greg Clayton | c8f814d | 2012-09-27 03:13:55 +0000 | [diff] [blame] | 39 | bool |
Jason Molenda | 0a72520 | 2012-10-09 18:40:44 +0000 | [diff] [blame^] | 40 | Symbols::DownloadObjectAndSymbolFile (ModuleSpec &module_spec, bool force_lookup) |
Greg Clayton | c8f814d | 2012-09-27 03:13:55 +0000 | [diff] [blame] | 41 | { |
| 42 | // Fill in the module_spec.GetFileSpec() for the object file and/or the |
| 43 | // module_spec.GetSymbolFileSpec() for the debug symbols file. |
| 44 | return false; |
| 45 | } |
| 46 | |
Greg Clayton | 103f028 | 2012-09-12 02:03:59 +0000 | [diff] [blame] | 47 | |
Greg Clayton | 2bddd34 | 2010-09-07 20:11:56 +0000 | [diff] [blame] | 48 | #endif |