Searched refs:LibGccType (Results 1 – 1 of 1) sorted by relevance
1666 enum class LibGccType { UnspecifiedLibGcc, StaticLibGcc, SharedLibGcc }; enum1668 static LibGccType getLibGccType(const ToolChain &TC, const Driver &D, in getLibGccType()1674 return LibGccType::StaticLibGcc; in getLibGccType()1676 return LibGccType::SharedLibGcc; in getLibGccType()1677 return LibGccType::UnspecifiedLibGcc; in getLibGccType()1702 LibGccType LGT = getLibGccType(TC, D, Args); in AddUnwindLibrary()1703 bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc && in AddUnwindLibrary()1714 if (LGT == LibGccType::StaticLibGcc) in AddUnwindLibrary()1724 if (LGT != LibGccType::StaticLibGcc) in AddUnwindLibrary()1726 } else if (LGT == LibGccType::StaticLibGcc) { in AddUnwindLibrary()[all …]