[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / Driver / ToolChains / Contiki.h
blob627d80bdda093f115c330583d11e9222004e2252
1 //===--- Contiki.h - Contiki 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-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_CONTIKI_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_CONTIKI_H
12 #include "Gnu.h"
13 #include "clang/Driver/ToolChain.h"
15 namespace clang {
16 namespace driver {
17 namespace toolchains {
19 class LLVM_LIBRARY_VISIBILITY Contiki : public Generic_ELF {
20 public:
21 Contiki(const Driver &D, const llvm::Triple &Triple,
22 const llvm::opt::ArgList &Args);
24 // No support for finding a C++ standard library yet.
25 void addLibCxxIncludePaths(
26 const llvm::opt::ArgList &DriverArgs,
27 llvm::opt::ArgStringList &CC1Args) const override {}
28 void addLibStdCxxIncludePaths(
29 const llvm::opt::ArgList &DriverArgs,
30 llvm::opt::ArgStringList &CC1Args) const override {}
32 SanitizerMask getSupportedSanitizers() const override;
35 } // end namespace toolchains
36 } // end namespace driver
37 } // end namespace clang
39 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_CONTIKI_H