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 //===----------------------------------------------------------------------===// 8 9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H 10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H 11 12 #include "Gnu.h" 13 #include "clang/Driver/Tool.h" 14 #include "clang/Driver/ToolChain.h" 15 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: Assembler(const ToolChain & TC)23 Assembler(const ToolChain &TC) : Tool("minix::Assembler", "assembler", TC) {} 24 hasIntegratedCPP()25 bool hasIntegratedCPP() const override { return false; } 26 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; 31 }; 32 33 class LLVM_LIBRARY_VISIBILITY Linker : public Tool { 34 public: Linker(const ToolChain & TC)35 Linker(const ToolChain &TC) : Tool("minix::Linker", "linker", TC) {} 36 hasIntegratedCPP()37 bool hasIntegratedCPP() const override { return false; } isLinkJob()38 bool isLinkJob() const override { return true; } 39 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; 44 }; 45 } // end namespace minix 46 } // end namespace tools 47 48 namespace toolchains { 49 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); 54 55 protected: 56 Tool *buildAssembler() const override; 57 Tool *buildLinker() const override; 58 }; 59 60 } // end namespace toolchains 61 } // end namespace driver 62 } // end namespace clang 63 64 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MINIX_H 65