Lines Matching refs:ToolChain

28   const auto &ToolChain = static_cast<const DragonFly &>(getToolChain());  in ConstructJob()  local
35 if (ToolChain.getArch() == llvm::Triple::x86) in ConstructJob()
46 const char *Exec = Args.MakeArgString(ToolChain.GetProgramPath("as")); in ConstructJob()
57 const auto &ToolChain = static_cast<const DragonFly &>(getToolChain()); in ConstructJob() local
58 const Driver &D = ToolChain.getDriver(); in ConstructJob()
59 const llvm::Triple::ArchType Arch = ToolChain.getArch(); in ConstructJob()
119 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt1))); in ConstructJob()
120 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o"))); in ConstructJob()
121 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin))); in ConstructJob()
126 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob()
128 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob()
139 addOpenMPRuntime(C, CmdArgs, ToolChain, Args, StaticOpenMP); in ConstructJob()
142 if (ToolChain.ShouldLinkCXXStdlib(Args)) in ConstructJob()
143 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs); in ConstructJob()
155 addFortranRuntimeLibraryPath(ToolChain, Args, CmdArgs); in ConstructJob()
156 addFortranRuntimeLibs(ToolChain, Args, CmdArgs); in ConstructJob()
191 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtend))); in ConstructJob()
192 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtn.o"))); in ConstructJob()
195 ToolChain.addProfileRTLibs(Args, CmdArgs); in ConstructJob()
197 const char *Exec = Args.MakeArgString(ToolChain.GetLinkerPath()); in ConstructJob()