diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2013-03-28 19:04:25 +0000 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2013-03-28 19:04:25 +0000 |
commit | 577bb0a2335295958b3b0f88bc9cdedf6551c17f (patch) | |
tree | cafe1c995b3d6005ba9f2c30d9c121491b4ce643 /lib/Driver/Tools.h | |
parent | d52b4a9924f45c45a965a569ad179db25bb1af00 (diff) |
Rename clang::driver::tools::linuxtools to clang::driver::tools::gnutools.
This is about the GNU Binutils' assembler and linker, so reflect that in the
name.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.h')
-rw-r--r-- | lib/Driver/Tools.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Driver/Tools.h b/lib/Driver/Tools.h index 846c834034..0d215ea3cc 100644 --- a/lib/Driver/Tools.h +++ b/lib/Driver/Tools.h @@ -427,12 +427,11 @@ namespace netbsd { }; } // end namespace netbsd - /// linux -- Directly call GNU Binutils assembler and linker -namespace linuxtools { + /// Directly call GNU Binutils' assembler and linker. +namespace gnutools { class LLVM_LIBRARY_VISIBILITY Assemble : public Tool { public: - Assemble(const ToolChain &TC) : Tool("linux::Assemble", "assembler", - TC) {} + Assemble(const ToolChain &TC) : Tool("GNU::Assemble", "assembler", TC) {} virtual bool hasIntegratedCPP() const { return false; } @@ -444,7 +443,7 @@ namespace linuxtools { }; class LLVM_LIBRARY_VISIBILITY Link : public Tool { public: - Link(const ToolChain &TC) : Tool("linux::Link", "linker", TC) {} + Link(const ToolChain &TC) : Tool("GNU::Link", "linker", TC) {} virtual bool hasIntegratedCPP() const { return false; } virtual bool isLinkJob() const { return true; } |