brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 33701f7 Raw
39 lines · c
1//===--- Lanai.h - Lanai 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_LANAI_H10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_LANAI_H11 12#include "Gnu.h"13#include "clang/Driver/ToolChain.h"14 15namespace clang {16namespace driver {17namespace toolchains {18 19class LLVM_LIBRARY_VISIBILITY LanaiToolChain : public Generic_ELF {20public:21  LanaiToolChain(const Driver &D, const llvm::Triple &Triple,22                 const llvm::opt::ArgList &Args)23      : Generic_ELF(D, Triple, Args) {}24 25  // No support for finding a C++ standard library yet.26  void addLibCxxIncludePaths(27      const llvm::opt::ArgList &DriverArgs,28      llvm::opt::ArgStringList &CC1Args) const override {}29  void addLibStdCxxIncludePaths(30      const llvm::opt::ArgList &DriverArgs,31      llvm::opt::ArgStringList &CC1Args) const override {}32};33 34} // end namespace toolchains35} // end namespace driver36} // end namespace clang37 38#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_LANAI_H39