• Home
  • Raw
  • Download

Lines Matching refs:hasArg

146       !Args.hasArg(options::OPT_shared) &&  in ConstructJob()
147 (Args.hasArg(options::OPT_pie) || ToolChain.isPIEDefault()); in ConstructJob()
165 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
168 if (Args.hasArg(options::OPT_rdynamic)) in ConstructJob()
170 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
244 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) { in ConstructJob()
246 if (!Args.hasArg(options::OPT_shared)) { in ConstructJob()
247 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
260 if (Args.hasArg(options::OPT_static)) in ConstructJob()
262 else if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
289 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) { in ConstructJob()
291 bool StaticOpenMP = Args.hasArg(options::OPT_static_openmp) && in ConstructJob()
292 !Args.hasArg(options::OPT_static); in ConstructJob()
298 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
309 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
313 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
315 } else if (Args.hasArg(options::OPT_pg)) { in ConstructJob()
323 if (Args.hasArg(options::OPT_pthread)) { in ConstructJob()
324 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
330 if (Args.hasArg(options::OPT_pg)) { in ConstructJob()
331 if (Args.hasArg(options::OPT_shared)) in ConstructJob()
341 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
343 } else if (Args.hasArg(options::OPT_pg)) { in ConstructJob()
352 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) { in ConstructJob()
353 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
412 bool Profiling = Args.hasArg(options::OPT_pg); in AddCXXStdlibLibArgs()