Lines Matching refs:CmdArgs

42   ArgStringList CmdArgs;  in ConstructJob()  local
52 CmdArgs.push_back("-z"); in ConstructJob()
53 CmdArgs.push_back("max-page-size=4096"); in ConstructJob()
55 CmdArgs.push_back("-z"); in ConstructJob()
56 CmdArgs.push_back("now"); in ConstructJob()
58 CmdArgs.push_back("-z"); in ConstructJob()
59 CmdArgs.push_back("start-stop-visibility=hidden"); in ConstructJob()
64 CmdArgs.push_back("-z"); in ConstructJob()
65 CmdArgs.push_back("rodynamic"); in ConstructJob()
66 CmdArgs.push_back("-z"); in ConstructJob()
67 CmdArgs.push_back("separate-loadable-segments"); in ConstructJob()
68 CmdArgs.push_back("-z"); in ConstructJob()
69 CmdArgs.push_back("rel"); in ConstructJob()
70 CmdArgs.push_back("--pack-dyn-relocs=relr"); in ConstructJob()
74 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot)); in ConstructJob()
77 CmdArgs.push_back("-pie"); in ConstructJob()
80 CmdArgs.push_back("-export-dynamic"); in ConstructJob()
83 CmdArgs.push_back("-s"); in ConstructJob()
86 CmdArgs.push_back("-r"); in ConstructJob()
88 CmdArgs.push_back("--build-id"); in ConstructJob()
89 CmdArgs.push_back("--hash-style=gnu"); in ConstructJob()
93 CmdArgs.push_back("--execute-only"); in ConstructJob()
97 CmdArgs.push_back("--fix-cortex-a53-843419"); in ConstructJob()
100 CmdArgs.push_back("--eh-frame-hdr"); in ConstructJob()
103 CmdArgs.push_back("-Bstatic"); in ConstructJob()
105 CmdArgs.push_back("-shared"); in ConstructJob()
118 CmdArgs.push_back("-dynamic-linker"); in ConstructJob()
119 CmdArgs.push_back(Args.MakeArgString(Dyld)); in ConstructJob()
123 CmdArgs.push_back("-X"); in ConstructJob()
125 CmdArgs.push_back("--no-relax"); in ConstructJob()
128 CmdArgs.push_back("-o"); in ConstructJob()
129 CmdArgs.push_back(Output.getFilename()); in ConstructJob()
134 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("Scrt1.o"))); in ConstructJob()
138 Args.addAllArgs(CmdArgs, {options::OPT_L, options::OPT_u}); in ConstructJob()
140 ToolChain.AddFilePathLibArgs(Args, CmdArgs); in ConstructJob()
152 addLTOOptions(ToolChain, Args, CmdArgs, Output, *Input, in ConstructJob()
156 addLinkerCompressDebugSectionsOption(ToolChain, Args, CmdArgs); in ConstructJob()
157 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); in ConstructJob()
162 CmdArgs.push_back("-Bdynamic"); in ConstructJob()
168 CmdArgs.push_back("--push-state"); in ConstructJob()
169 CmdArgs.push_back("--as-needed"); in ConstructJob()
171 CmdArgs.push_back("-Bstatic"); in ConstructJob()
172 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs); in ConstructJob()
174 CmdArgs.push_back("-Bdynamic"); in ConstructJob()
175 CmdArgs.push_back("-lm"); in ConstructJob()
176 CmdArgs.push_back("--pop-state"); in ConstructJob()
183 addSanitizerRuntimes(ToolChain, Args, CmdArgs); in ConstructJob()
185 addXRayRuntime(ToolChain, Args, CmdArgs); in ConstructJob()
187 ToolChain.addProfileRTLibs(Args, CmdArgs); in ConstructJob()
189 AddRunTimeLibs(ToolChain, D, CmdArgs, Args); in ConstructJob()
193 CmdArgs.push_back("-lpthread"); in ConstructJob()
196 CmdArgs.push_back("--wrap=pthread_create"); in ConstructJob()
199 CmdArgs.push_back("-lc"); in ConstructJob()
204 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
225 ArgStringList CmdArgs; in ConstructJob() local
227 CmdArgs.push_back("rcsD"); in ConstructJob()
228 CmdArgs.push_back(Output.getFilename()); in ConstructJob()
232 CmdArgs.push_back(II.getFilename()); in ConstructJob()
249 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
472 ArgStringList &CmdArgs) const { in AddCXXStdlibLibArgs()
475 CmdArgs.push_back("-lc++"); in AddCXXStdlibLibArgs()
477 CmdArgs.push_back("-lc++experimental"); in AddCXXStdlibLibArgs()