blob: b79e626ef38df1feb85d9e497a5a83f8649d9d3a [file] [log] [blame]
David L. Jonesf561aba2017-03-08 01:02:16 +00001//===--- Solaris.h - Solaris ToolChain Implementations ----------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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. Jonesf561aba2017-03-08 01:02:16 +00006//
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
16namespace clang {
17namespace driver {
18namespace tools {
19
20/// solaris -- Directly call Solaris assembler and linker
21namespace solaris {
22class LLVM_LIBRARY_VISIBILITY Assembler : public Tool {
23public:
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
35class LLVM_LIBRARY_VISIBILITY Linker : public Tool {
36public:
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
50namespace toolchains {
51
Aaron Ballman4a6d7d42017-07-14 17:49:52 +000052class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_ELF {
David L. Jonesf561aba2017-03-08 01:02:16 +000053public:
54 Solaris(const Driver &D, const llvm::Triple &Triple,
55 const llvm::opt::ArgList &Args);
56
Fedor Sergeevfaa0a822018-01-23 12:23:52 +000057 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. Jonesf561aba2017-03-08 01:02:16 +000064
Alex Shlyapnikov85da0f62018-02-05 23:59:13 +000065 SanitizerMask getSupportedSanitizers() const override;
David L. Jonesf561aba2017-03-08 01:02:16 +000066 unsigned GetDefaultDwarfVersion() const override { return 2; }
67
68protected:
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