1 | |
2 | |
3 | |
4 | |
5 | |
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 | |
20 | namespace minix { |
21 | class LLVM_LIBRARY_VISIBILITY Assembler : public GnuTool { |
22 | public: |
23 | Assembler(const ToolChain &TC) |
24 | : GnuTool("minix::Assembler", "assembler", TC) {} |
25 | |
26 | bool hasIntegratedCPP() const override { return false; } |
27 | |
28 | void ConstructJob(Compilation &C, const JobAction &JA, |
29 | const InputInfo &Output, const InputInfoList &Inputs, |
30 | const llvm::opt::ArgList &TCArgs, |
31 | const char *LinkingOutput) const override; |
32 | }; |
33 | |
34 | class LLVM_LIBRARY_VISIBILITY Linker : public GnuTool { |
35 | public: |
36 | Linker(const ToolChain &TC) : GnuTool("minix::Linker", "linker", TC) {} |
37 | |
38 | bool hasIntegratedCPP() const override { return false; } |
39 | bool isLinkJob() const override { return true; } |
40 | |
41 | void ConstructJob(Compilation &C, const JobAction &JA, |
42 | const InputInfo &Output, const InputInfoList &Inputs, |
43 | const llvm::opt::ArgList &TCArgs, |
44 | const char *LinkingOutput) const override; |
45 | }; |
46 | } |
47 | } |
48 | |
49 | namespace toolchains { |
50 | |
51 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF { |
52 | public: |
53 | Minix(const Driver &D, const llvm::Triple &Triple, |
54 | const llvm::opt::ArgList &Args); |
55 | |
56 | protected: |
57 | Tool *buildAssembler() const override; |
58 | Tool *buildLinker() const override; |
59 | }; |
60 | |
61 | } |
62 | } |
63 | } |
64 | |
65 | #endif |
66 | |