Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Driver/
H A Dhip-link-static-library.hip18 // CHECK: # "x86_64-unknown-linux-gnu" - "GNU::StaticLibTool", inputs: ["[[HOSTOBJ]]", "[[FATBINOBJ…
26 // NORDC: # "x86_64-unknown-linux-gnu" - "GNU::StaticLibTool", inputs: ["{{.*o}}"], output: "a.out"
/llvm-project-15.0.7/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.cpp344 return new tools::gnutools::StaticLibTool(*this); in buildStaticLibTool()
H A DDarwin.cpp757 void darwin::StaticLibTool::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
1082 return new tools::darwin::StaticLibTool(*this); in buildStaticLibTool()
H A DGnu.cpp341 void tools::gnutools::StaticLibTool::ConstructJob( in ConstructJob()
/llvm-project-15.0.7/clang/lib/Driver/
H A DToolChain.cpp337 if (!StaticLibTool) in getStaticLibTool()
338 StaticLibTool.reset(buildStaticLibTool()); in getStaticLibTool()
339 return StaticLibTool.get(); in getStaticLibTool()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DToolChain.h150 mutable std::unique_ptr<Tool> StaticLibTool; variable