[llvm-branch-commits] [clang] [HLSL][DirectX] Add the Qdx-rootsignature-strip driver option (PR #154454)
Chris B via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Aug 21 06:43:30 PDT 2025
================
@@ -42,6 +42,19 @@ class LLVM_LIBRARY_VISIBILITY MetalConverter : public Tool {
const llvm::opt::ArgList &TCArgs,
const char *LinkingOutput) const override;
};
+
+class LLVM_LIBRARY_VISIBILITY LLVMObjcopy : public Tool {
+public:
+ LLVMObjcopy(const ToolChain &TC)
+ : Tool("hlsl::LLVMObjcopy", "llvm-objcopy", TC) {}
----------------
llvm-beanz wrote:
I don't think the `hlsl` is relevant here. It's really just objcopy.
```suggestion
: Tool("LLVMObjcopy", "llvm-objcopy", TC) {}
```
https://github.com/llvm/llvm-project/pull/154454
More information about the llvm-branch-commits
mailing list