[clang] [Clang] diagnosing missing Vulkan environment when using SPIR-V triple (PR #190840)
Tony Guillot via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 13 08:09:07 PDT 2026
================
@@ -112,6 +112,18 @@ void CompilerInstance::setTarget(TargetInfo *Value) { Target = Value; }
void CompilerInstance::setAuxTarget(TargetInfo *Value) { AuxTarget = Value; }
bool CompilerInstance::createTarget() {
+
+ // SPIR-V targeting requires a fully specified Vulkan environment.
+ // Validate here before CreateTargetInfo() to emit a proper diagnostic
+ llvm::Triple Triple(getInvocation().getTargetOpts().Triple);
----------------
to268 wrote:
You should do what Aaron has said basically, my call on the `!hasTarget` check was because I was reviewing the PR before I checked if it was making sense here, so I have removed the comment to avoid confusion.
https://github.com/llvm/llvm-project/pull/190840
More information about the cfe-commits
mailing list