Skip to content

Commit

Permalink
[Driver] Derive Fuchsia Linker directly from Tool
Browse files Browse the repository at this point in the history
Fuchsia Linker tool doesn't need any of the GnuTool behavior.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@367797 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
petrhosek committed Aug 5, 2019
1 parent 33ced14 commit 5ca0112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Driver/ToolChains/Fuchsia.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ namespace clang {
namespace driver {
namespace tools {
namespace fuchsia {
class LLVM_LIBRARY_VISIBILITY Linker : public GnuTool {
class LLVM_LIBRARY_VISIBILITY Linker : public Tool {
public:
Linker(const ToolChain &TC) : GnuTool("fuchsia::Linker", "ld.lld", TC) {}
Linker(const ToolChain &TC) : Tool("fuchsia::Linker", "ld.lld", TC) {}

bool hasIntegratedCPP() const override { return false; }
bool isLinkJob() const override { return true; }
Expand Down

0 comments on commit 5ca0112

Please sign in to comment.