Lines Matching refs:ToolChain
24 wasm::Linker::Linker(const ToolChain &TC) in Linker()
46 const ToolChain &ToolChain = getToolChain(); in ConstructJob() local
47 const char *Linker = Args.MakeArgString(ToolChain.GetLinkerPath()); in ConstructJob()
55 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob()
58 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crt1.o"))); in ConstructJob()
60 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob()
63 if (ToolChain.ShouldLinkCXXStdlib(Args)) in ConstructJob()
64 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs); in ConstructJob()
70 AddRunTimeLibs(ToolChain, ToolChain.getDriver(), CmdArgs, Args); in ConstructJob()
81 : ToolChain(D, Triple, Args) { in WebAssembly()
129 ToolChain::RuntimeLibType WebAssembly::GetDefaultRuntimeLibType() const { in GetDefaultRuntimeLibType()
130 return ToolChain::RLT_CompilerRT; in GetDefaultRuntimeLibType()
133 ToolChain::CXXStdlibType
141 return ToolChain::CST_Libcxx; in GetCXXStdlibType()
175 case ToolChain::CST_Libcxx: in AddCXXStdlibLibArgs()
179 case ToolChain::CST_Libstdcxx: in AddCXXStdlibLibArgs()