[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / Driver / ToolChains / Haiku.cpp
bloba79f0f7622addc394d842f4f044f81828dec7059
1 //===--- Haiku.cpp - Haiku 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 #include "Haiku.h"
10 #include "CommonArgs.h"
12 using namespace clang::driver;
13 using namespace clang::driver::toolchains;
14 using namespace clang;
15 using namespace llvm::opt;
17 /// Haiku - Haiku tool chain which can call as(1) and ld(1) directly.
19 Haiku::Haiku(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
20 : Generic_ELF(D, Triple, Args) {
24 void Haiku::addLibCxxIncludePaths(const llvm::opt::ArgList &DriverArgs,
25 llvm::opt::ArgStringList &CC1Args) const {
26 addSystemInclude(DriverArgs, CC1Args,
27 getDriver().SysRoot + "/system/develop/headers/c++/v1");
30 void Haiku::addLibStdCxxIncludePaths(const llvm::opt::ArgList &DriverArgs,
31 llvm::opt::ArgStringList &CC1Args) const {
32 addLibStdCXXIncludePaths(getDriver().SysRoot + "/system/develop/headers/c++",
33 getTriple().str(), "", DriverArgs, CC1Args);