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.cpp2261 enum class LibGccType { UnspecifiedLibGcc, StaticLibGcc, SharedLibGcc }; enum
2263 static LibGccType getLibGccType(const ToolChain &TC, const Driver &D, in getLibGccType()
2269 return LibGccType::StaticLibGcc; in getLibGccType()
2271 return LibGccType::SharedLibGcc; in getLibGccType()
2272 return LibGccType::UnspecifiedLibGcc; in getLibGccType()
2303 LibGccType LGT = getLibGccType(TC, D, Args); in AddUnwindLibrary()
2304 bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc && in AddUnwindLibrary()
2315 if (LGT == LibGccType::StaticLibGcc) in AddUnwindLibrary()
2325 if (LGT != LibGccType::StaticLibGcc) in AddUnwindLibrary()
2327 } else if (LGT == LibGccType::StaticLibGcc) { in AddUnwindLibrary()
[all …]