Zachary Turner bdf089246e Remove dependency from Host to clang.
Host depended on clang because HostInfo had a function to get
the directory where clang was installed.  We move this over to
the clang expression parser plugin where it's more at home.

Differential Revision: https://reviews.llvm.org/D47384

llvm-svn: 333933
2018-06-04 17:41:00 +00:00

27 lines
714 B
C++

//===-- ClangHost.h ---------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
#define LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
namespace lldb_private {
class FileSpec;
#if defined(__APPLE__)
bool ComputeClangDirectory(FileSpec &lldb_shlib_spec, FileSpec &file_spec,
bool verify);
#endif
FileSpec GetClangResourceDir();
} // namespace lldb_private
#endif