1 //===--- Haiku.cpp - Haiku ToolChain Implementations ------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "Haiku.h" 11 #include "CommonArgs.h" 12 13 using namespace clang::driver; 14 using namespace clang::driver::toolchains; 15 using namespace clang; 16 using namespace llvm::opt; 17 18 /// Haiku - Haiku tool chain which can call as(1) and ld(1) directly. 19 20 Haiku::Haiku(const Driver &D, const llvm::Triple& Triple, const ArgList &Args) 21 : Generic_ELF(D, Triple, Args) { 22 23 } 24 25 void Haiku::addLibCxxIncludePaths(const llvm::opt::ArgList &DriverArgs, 26 llvm::opt::ArgStringList &CC1Args) const { 27 addSystemInclude(DriverArgs, CC1Args, 28 getDriver().SysRoot + "/system/develop/headers/c++/v1"); 29 } 30 31 void Haiku::addLibStdCxxIncludePaths(const llvm::opt::ArgList &DriverArgs, 32 llvm::opt::ArgStringList &CC1Args) const { 33 addLibStdCXXIncludePaths(getDriver().SysRoot, "/system/develop/headers/c++", 34 getTriple().str(), "", "", "", DriverArgs, CC1Args); 35 } 36