1 //===--- Minix.h - Minix ToolChain Implementations --------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H
13 #include "clang/Driver/Tool.h"
14 #include "clang/Driver/ToolChain.h"
19 /// minix -- Directly call GNU Binutils assembler and linker
21 class LLVM_LIBRARY_VISIBILITY Assembler
: public Tool
{
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
{
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
{
52 Minix(const Driver
&D
, const llvm::Triple
&Triple
,
53 const llvm::opt::ArgList
&Args
);
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