Home | History | Annotate | Download | only in ToolChains

Lines Matching defs:AIX

1 //===--- AIX.cpp - AIX ToolChain Implementations ----------------*- C++ -*-===//
9 #include "AIX.h"
18 using AIX = clang::driver::toolchains::AIX;
26 void aix::Assembler::ConstructJob(Compilation &C, const JobAction &JA,
48 // On Power for AIX and Linux, this behaviour matches that of GCC for both the
63 // The system assembler on AIX takes exactly one input file. The driver is
77 void aix::Linker::ConstructJob(Compilation &C, const JobAction &JA,
81 const AIX &ToolChain = static_cast<const AIX &>(getToolChain());
176 /// AIX - AIX tool chain which can call as(1) and ld(1) directly.
177 AIX::AIX(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
185 AIX::GetHeaderSysroot(const llvm::opt::ArgList &DriverArgs) const {
193 void AIX::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
219 void AIX::AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
226 llvm::report_fatal_error("linking libstdc++ unimplemented on AIX");
232 ToolChain::CXXStdlibType AIX::GetDefaultCXXStdlibType() const {
236 ToolChain::RuntimeLibType AIX::GetDefaultRuntimeLibType() const {
240 auto AIX::buildAssembler() const -> Tool * { return new aix::Assembler(*this); }
242 auto AIX::buildLinker() const -> Tool * { return new aix::Linker(*this); }