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//===----------------------------------------------------------------------===//
8
9#include "Haiku.h"
10#include "CommonArgs.h"
11
12using namespace clang::driver;
13using namespace clang::driver::toolchains;
14using namespace clang;
15using namespace llvm::opt;
16
17/// Haiku - Haiku tool chain which can call as(1) and ld(1) directly.
18
19Haiku::Haiku(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
20  : Generic_ELF(D, Triple, Args) {
21
22}
23
24void 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");
28}
29
30void 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);
34}
35