[clang] 0d499f9 - [SYCL] Fix sycl linker's missing dependencies

Joseph Huber via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 31 09:00:02 PDT 2024


Author: Joseph Huber
Date: 2024-10-31T10:59:56-05:00
New Revision: 0d499f9043fed14ff8c7f9e24e19206c93aee5dd

URL: https://github.com/llvm/llvm-project/commit/0d499f9043fed14ff8c7f9e24e19206c93aee5dd
DIFF: https://github.com/llvm/llvm-project/commit/0d499f9043fed14ff8c7f9e24e19206c93aee5dd.diff

LOG: [SYCL] Fix sycl linker's missing dependencies

Added: 
    

Modified: 
    clang/tools/clang-sycl-linker/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/tools/clang-sycl-linker/CMakeLists.txt b/clang/tools/clang-sycl-linker/CMakeLists.txt
index e86ec2736d3c03..5665ad7d7186e9 100644
--- a/clang/tools/clang-sycl-linker/CMakeLists.txt
+++ b/clang/tools/clang-sycl-linker/CMakeLists.txt
@@ -1,6 +1,10 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
+  BinaryFormat
   Option
+  Object
+  TargetParser
+  Support
   )
 
 set(LLVM_TARGET_DEFINITIONS SYCLLinkOpts.td)


        


More information about the cfe-commits mailing list