clang 19.0.0git
Hurd.h
Go to the documentation of this file.
1//===--- Hurd.h - Hurd ToolChain Implementations ----------*- 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 LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_Hurd_H
10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_Hurd_H
11
12#include "Gnu.h"
14
15namespace clang {
16namespace driver {
17namespace toolchains {
18
19class LLVM_LIBRARY_VISIBILITY Hurd : public Generic_ELF {
20public:
21 Hurd(const Driver &D, const llvm::Triple &Triple,
22 const llvm::opt::ArgList &Args);
23
24 bool HasNativeLLVMSupport() const override;
25
26 void
27 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
28 llvm::opt::ArgStringList &CC1Args) const override;
29 void
30 addLibStdCxxIncludePaths(const llvm::opt::ArgList &DriverArgs,
31 llvm::opt::ArgStringList &CC1Args) const override;
32
33 std::string getDynamicLinker(const llvm::opt::ArgList &Args) const override;
34
35 void addExtraOpts(llvm::opt::ArgStringList &CmdArgs) const override;
36
37 std::vector<std::string> ExtraOpts;
38
39protected:
40 Tool *buildAssembler() const override;
41 Tool *buildLinker() const override;
42
43 std::string getMultiarchTriple(const Driver &D,
44 const llvm::Triple &TargetTriple,
45 StringRef SysRoot) const override;
46};
47
48} // end namespace toolchains
49} // end namespace driver
50} // end namespace clang
51
52#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_Hurd_H
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
std::vector< std::string > ExtraOpts
Definition: Hurd.h:37
The JSON file list parser is used to communicate input to InstallAPI.