brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.0 KiB · f9bf2e1 Raw
64 lines · c
1//===--- Mips.h - Mips 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H11 12#include "Linux.h"13#include "clang/Driver/ToolChain.h"14 15namespace clang {16namespace driver {17namespace toolchains {18 19class LLVM_LIBRARY_VISIBILITY MipsLLVMToolChain : public Linux {20protected:21  Tool *buildLinker() const override;22 23public:24  MipsLLVMToolChain(const Driver &D, const llvm::Triple &Triple,25                    const llvm::opt::ArgList &Args);26 27  void28  AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,29                            llvm::opt::ArgStringList &CC1Args) const override;30 31  CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const override;32 33  void addLibCxxIncludePaths(34      const llvm::opt::ArgList &DriverArgs,35      llvm::opt::ArgStringList &CC1Args) const override;36 37  void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,38                           llvm::opt::ArgStringList &CmdArgs) const override;39 40  std::string getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component,41                            FileType Type = ToolChain::FT_Static,42                            bool IsFortran = false) const override;43 44  std::string computeSysRoot() const override;45 46  RuntimeLibType GetDefaultRuntimeLibType() const override {47    return GCCInstallation.isValid() ? RuntimeLibType::RLT_Libgcc48                                     : RuntimeLibType::RLT_CompilerRT;49  }50 51  const char *getDefaultLinker() const override {52    return "ld.lld";53  }54 55private:56  std::string LibSuffix;57};58 59} // end namespace toolchains60} // end namespace driver61} // end namespace clang62 63#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H64