1 //===--- Solaris.h - Solaris 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_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 
52 class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_ELF {
53 public:
54   Solaris(const Driver &D, const llvm::Triple &Triple,
55           const llvm::opt::ArgList &Args);
56 
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;
64 
65   SanitizerMask getSupportedSanitizers() const override;
66   unsigned GetDefaultDwarfVersion() const override { return 2; }
67 
68   const char *getDefaultLinker() const override {
69     // clang currently uses Solaris ld-only options.
70     return "/usr/bin/ld";
71   }
72 
73 protected:
74   Tool *buildAssembler() const override;
75   Tool *buildLinker() const override;
76 };
77 
78 } // end namespace toolchains
79 } // end namespace driver
80 } // end namespace clang
81 
82 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_SOLARIS_H
83