reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
 1160 static LibGccType getLibGccType(const Driver &D, const ArgList &Args) {
 1163     return LibGccType::StaticLibGcc;
 1165     return LibGccType::SharedLibGcc;
 1166   return LibGccType::UnspecifiedLibGcc;
 1191   LibGccType LGT = getLibGccType(D, Args);
 1192   bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc &&
 1201     if (LGT == LibGccType::StaticLibGcc)
 1218   LibGccType LGT = getLibGccType(D, Args);
 1219   if (LGT != LibGccType::SharedLibGcc)
 1222   if (LGT == LibGccType::SharedLibGcc)
 1230   if (TC.getTriple().isAndroid() && LGT != LibGccType::StaticLibGcc)