David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 1 | //===--- Solaris.h - Solaris ToolChain Implementations ----------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_SOLARIS_H |
| 10 | #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_SOLARIS_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 | /// solaris -- Directly call Solaris assembler and linker |
| 21 | namespace solaris { |
| 22 | class LLVM_LIBRARY_VISIBILITY Assembler : public Tool { |
| 23 | public: |
| 24 | Assembler(const ToolChain &TC) |
| 25 | : Tool("solaris::Assembler", "assembler", TC) {} |
| 26 | |
| 27 | bool hasIntegratedCPP() const override { return false; } |
| 28 | |
| 29 | void ConstructJob(Compilation &C, const JobAction &JA, |
| 30 | const InputInfo &Output, const InputInfoList &Inputs, |
| 31 | const llvm::opt::ArgList &TCArgs, |
| 32 | const char *LinkingOutput) const override; |
| 33 | }; |
| 34 | |
| 35 | class LLVM_LIBRARY_VISIBILITY Linker : public Tool { |
| 36 | public: |
| 37 | Linker(const ToolChain &TC) : Tool("solaris::Linker", "linker", TC) {} |
| 38 | |
| 39 | bool hasIntegratedCPP() const override { return false; } |
| 40 | bool isLinkJob() const override { return true; } |
| 41 | |
| 42 | void ConstructJob(Compilation &C, const JobAction &JA, |
| 43 | const InputInfo &Output, const InputInfoList &Inputs, |
| 44 | const llvm::opt::ArgList &TCArgs, |
| 45 | const char *LinkingOutput) const override; |
| 46 | }; |
| 47 | } // end namespace solaris |
| 48 | } // end namespace tools |
| 49 | |
| 50 | namespace toolchains { |
| 51 | |
Aaron Ballman | 4a6d7d4 | 2017-07-14 17:49:52 +0000 | [diff] [blame] | 52 | class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_ELF { |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 53 | public: |
| 54 | Solaris(const Driver &D, const llvm::Triple &Triple, |
| 55 | const llvm::opt::ArgList &Args); |
| 56 | |
Fedor Sergeev | faa0a82 | 2018-01-23 12:23:52 +0000 | [diff] [blame] | 57 | void |
| 58 | AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, |
| 59 | llvm::opt::ArgStringList &CC1Args) const override; |
| 60 | |
| 61 | void |
| 62 | addLibStdCxxIncludePaths(const llvm::opt::ArgList &DriverArgs, |
| 63 | llvm::opt::ArgStringList &CC1Args) const override; |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 64 | |
Alex Shlyapnikov | 85da0f6 | 2018-02-05 23:59:13 +0000 | [diff] [blame] | 65 | SanitizerMask getSupportedSanitizers() const override; |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 66 | unsigned GetDefaultDwarfVersion() const override { return 2; } |
| 67 | |
| 68 | protected: |
| 69 | Tool *buildAssembler() const override; |
| 70 | Tool *buildLinker() const override; |
| 71 | }; |
| 72 | |
| 73 | } // end namespace toolchains |
| 74 | } // end namespace driver |
| 75 | } // end namespace clang |
| 76 | |
| 77 | #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_SOLARIS_H |