Lines Matching defs:AIX
1 //===--- AIX.cpp - AIX ToolChain Implementations ----------------*- C++ -*-===//
9 #include "AIX.h"
22 using AIX = clang::driver::toolchains::AIX;
58 // On Power for AIX and Linux, this behaviour matches that of GCC for both the
73 // The system assembler on AIX takes exactly one input file. The driver is
114 const AIX &ToolChain = static_cast<const AIX &>(getToolChain());
152 // memory; the AIX linker does that under an option.
344 /// AIX - AIX tool chain which can call as(1) and ld(1) directly.
345 AIX::AIX(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
357 AIX::GetHeaderSysroot(const llvm::opt::ArgList &DriverArgs) const {
365 void AIX::AddOpenMPIncludeArgs(const ArgList &DriverArgs,
387 void AIX::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
420 void AIX::AddClangCXXStdlibIncludeArgs(
432 "picking up libstdc++ headers is unimplemented on AIX");
449 void AIX::AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
453 llvm::report_fatal_error("linking libstdc++ unimplemented on AIX");
539 void AIX::addClangTargetOptions(
562 void AIX::addProfileRTLibs(const llvm::opt::ArgList &Args,
581 ToolChain::CXXStdlibType AIX::GetDefaultCXXStdlibType() const {
585 ToolChain::RuntimeLibType AIX::GetDefaultRuntimeLibType() const {
589 auto AIX::buildAssembler() const -> Tool * { return new aix::Assembler(*this); }
591 auto AIX::buildLinker() const -> Tool * { return new aix::Linker(*this); }