[Mlir-commits] [mlir] 9f953fa - [MLIR] XeVM Target: Add missing SPIR-V backend dependency libraries. (#153505)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Aug 13 16:03:19 PDT 2025


Author: Sang Ik Lee
Date: 2025-08-13T16:03:16-07:00
New Revision: 9f953fa62fd1df8a173f3de3361d798c65bf47e3

URL: https://github.com/llvm/llvm-project/commit/9f953fa62fd1df8a173f3de3361d798c65bf47e3
DIFF: https://github.com/llvm/llvm-project/commit/9f953fa62fd1df8a173f3de3361d798c65bf47e3.diff

LOG: [MLIR] XeVM Target: Add missing SPIR-V backend dependency libraries. (#153505)

Adding missing dependency SPIRVDesc, SPIRVInfo 
Fixes post commit build issue with #148286

Added: 
    

Modified: 
    mlir/lib/Target/LLVM/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Target/LLVM/CMakeLists.txt b/mlir/lib/Target/LLVM/CMakeLists.txt
index d3a8f3c02599f..9a0e4d45693b8 100644
--- a/mlir/lib/Target/LLVM/CMakeLists.txt
+++ b/mlir/lib/Target/LLVM/CMakeLists.txt
@@ -213,7 +213,8 @@ endif()
 if ("SPIRV" IN_LIST LLVM_TARGETS_TO_BUILD)
   set(SPIRV_LIBS
     SPIRVCodeGen
-
+    SPIRVDesc
+    SPIRVInfo
   )
 endif()
 


        


More information about the Mlir-commits mailing list