aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSang Ik Lee <sang.ik.lee@intel.com>2025-08-13 16:03:16 -0700
committerGitHub <noreply@github.com>2025-08-13 16:03:16 -0700
commit9f953fa62fd1df8a173f3de3361d798c65bf47e3 (patch)
tree3cb096ac6576eba419fd128577b83a75fd931332
parentbbe3d64b39d80c2d6132fbad6008b2a6e86fd4d5 (diff)
downloadllvm-9f953fa62fd1df8a173f3de3361d798c65bf47e3.zip
llvm-9f953fa62fd1df8a173f3de3361d798c65bf47e3.tar.gz
llvm-9f953fa62fd1df8a173f3de3361d798c65bf47e3.tar.bz2
[MLIR] XeVM Target: Add missing SPIR-V backend dependency libraries. (#153505)
Adding missing dependency SPIRVDesc, SPIRVInfo Fixes post commit build issue with #148286
-rw-r--r--mlir/lib/Target/LLVM/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/mlir/lib/Target/LLVM/CMakeLists.txt b/mlir/lib/Target/LLVM/CMakeLists.txt
index d3a8f3c..9a0e4d4 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()