1 | //===-- ClangHost.h ---------------------------------------------*- C++ -*-===// |
2 | // |
3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | // See https://llvm.org/LICENSE.txt for license information. |
5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H |
10 | #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H |
11 | |
12 | namespace lldb_private { |
13 | |
14 | class FileSpec; |
15 | |
16 | bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec, |
17 | FileSpec &file_spec, bool verify); |
18 | |
19 | FileSpec GetClangResourceDir(); |
20 | |
21 | } // namespace lldb_private |
22 | |
23 | #endif |
24 | |