LLDB mainline
ClangHost.h
Go to the documentation of this file.
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
12namespace lldb_private {
13
14class FileSpec;
15
16bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec,
17 FileSpec &file_spec, bool verify);
18
19FileSpec GetClangResourceDir();
20
21} // namespace lldb_private
22
23#endif
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
FileSpec GetClangResourceDir()
Definition: ClangHost.cpp:159
bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec, FileSpec &file_spec, bool verify)
Definition: ClangHost.cpp:88