[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / Driver / ToolChains / Minix.h
blobaf8d59c5085a9ef5bcc1056520b7904243f89c84
1 //===--- Minix.h - Minix 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H
12 #include "Gnu.h"
13 #include "clang/Driver/Tool.h"
14 #include "clang/Driver/ToolChain.h"
16 namespace clang {
17 namespace driver {
18 namespace tools {
19 /// minix -- Directly call GNU Binutils assembler and linker
20 namespace minix {
21 class LLVM_LIBRARY_VISIBILITY Assembler : public Tool {
22 public:
23 Assembler(const ToolChain &TC) : Tool("minix::Assembler", "assembler", TC) {}
25 bool hasIntegratedCPP() const override { return false; }
27 void ConstructJob(Compilation &C, const JobAction &JA,
28 const InputInfo &Output, const InputInfoList &Inputs,
29 const llvm::opt::ArgList &TCArgs,
30 const char *LinkingOutput) const override;
33 class LLVM_LIBRARY_VISIBILITY Linker : public Tool {
34 public:
35 Linker(const ToolChain &TC) : Tool("minix::Linker", "linker", TC) {}
37 bool hasIntegratedCPP() const override { return false; }
38 bool isLinkJob() const override { return true; }
40 void ConstructJob(Compilation &C, const JobAction &JA,
41 const InputInfo &Output, const InputInfoList &Inputs,
42 const llvm::opt::ArgList &TCArgs,
43 const char *LinkingOutput) const override;
45 } // end namespace minix
46 } // end namespace tools
48 namespace toolchains {
50 class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
51 public:
52 Minix(const Driver &D, const llvm::Triple &Triple,
53 const llvm::opt::ArgList &Args);
55 protected:
56 Tool *buildAssembler() const override;
57 Tool *buildLinker() const override;
60 } // end namespace toolchains
61 } // end namespace driver
62 } // end namespace clang
64 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H