Home
last modified time | relevance | path

Searched refs:LibGccType (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp2118 enum class LibGccType { UnspecifiedLibGcc, StaticLibGcc, SharedLibGcc }; enum
2120 static LibGccType getLibGccType(const ToolChain &TC, const Driver &D, in getLibGccType()
2126 return LibGccType::StaticLibGcc; in getLibGccType()
2128 return LibGccType::SharedLibGcc; in getLibGccType()
2129 return LibGccType::UnspecifiedLibGcc; in getLibGccType()
2160 LibGccType LGT = getLibGccType(TC, D, Args); in AddUnwindLibrary()
2161 bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc && in AddUnwindLibrary()
2172 if (LGT == LibGccType::StaticLibGcc) in AddUnwindLibrary()
2182 if (LGT != LibGccType::StaticLibGcc) in AddUnwindLibrary()
2184 } else if (LGT == LibGccType::StaticLibGcc) { in AddUnwindLibrary()
[all …]