Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DGnu.h66 class LLVM_LIBRARY_VISIBILITY StaticLibTool : public Tool {
68 StaticLibTool(const ToolChain &TC) in StaticLibTool() function
H A DDarwin.h81 class LLVM_LIBRARY_VISIBILITY StaticLibTool : public MachOTool {
83 StaticLibTool(const ToolChain &TC) in StaticLibTool() function
H A DLinux.cpp338 return new tools::gnutools::StaticLibTool(*this); in buildStaticLibTool()
H A DDarwin.cpp769 void darwin::StaticLibTool::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
1089 return new tools::darwin::StaticLibTool(*this); in buildStaticLibTool()
H A DGnu.cpp347 void tools::gnutools::StaticLibTool::ConstructJob( in ConstructJob()
/openbsd-src/gnu/llvm/clang/lib/Driver/
H A DToolChain.cpp373 if (!StaticLibTool) in getStaticLibTool()
374 StaticLibTool.reset(buildStaticLibTool()); in getStaticLibTool()
375 return StaticLibTool.get(); in getStaticLibTool()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DToolChain.h156 mutable std::unique_ptr<Tool> StaticLibTool; variable