blob: 9a06fbd0d3c23ff493eec0a6af71e5365b84eeb9 [file] [log] [blame]
David L. Jonesf561aba2017-03-08 01:02:16 +00001//===--- DragonFly.h - DragonFly ToolChain Implementations ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_DRAGONFLY_H
11#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_DRAGONFLY_H
12
13#include "Gnu.h"
14#include "clang/Driver/Tool.h"
15#include "clang/Driver/ToolChain.h"
16
17namespace clang {
18namespace driver {
19namespace tools {
20/// dragonfly -- Directly call GNU Binutils assembler and linker
21namespace dragonfly {
22class LLVM_LIBRARY_VISIBILITY Assembler : public GnuTool {
23public:
24 Assembler(const ToolChain &TC)
25 : GnuTool("dragonfly::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 GnuTool {
36public:
37 Linker(const ToolChain &TC) : GnuTool("dragonfly::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 dragonfly
48} // end namespace tools
49
50namespace toolchains {
51
52class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
53public:
54 DragonFly(const Driver &D, const llvm::Triple &Triple,
55 const llvm::opt::ArgList &Args);
56
57 bool IsMathErrnoDefault() const override { return false; }
58
59protected:
60 Tool *buildAssembler() const override;
61 Tool *buildLinker() const override;
62};
63
64} // end namespace toolchains
65} // end namespace driver
66} // end namespace clang
67
68#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_DRAGONFLY_H