[llvm] [DirectX] Fix build error if set BUILD_SHARED_LIBS (PR #131610)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 06:10:08 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-directx
Author: Russell Liu (GinShio)
<details>
<summary>Changes</summary>
If enable `BUILD_SHARED_LIBS`, it will build each component as shared library. If some compoenents are not set in `LLVM_LINK_COMPONENTS`, the linker will complain that symbols are not found.
This change adds the missing components.
---
Full diff: https://github.com/llvm/llvm-project/pull/131610.diff
1 Files Affected:
- (modified) llvm/unittests/Target/DirectX/CMakeLists.txt (+5)
``````````diff
diff --git a/llvm/unittests/Target/DirectX/CMakeLists.txt b/llvm/unittests/Target/DirectX/CMakeLists.txt
index 5087727ff9800..b1359b37ad521 100644
--- a/llvm/unittests/Target/DirectX/CMakeLists.txt
+++ b/llvm/unittests/Target/DirectX/CMakeLists.txt
@@ -4,12 +4,17 @@ include_directories(
)
set(LLVM_LINK_COMPONENTS
+ Analysis
AsmParser
Core
DirectXCodeGen
+ DirectXDesc
+ DirectXInfo
DirectXPointerTypeAnalysis
+ MC
Passes
Support
+ TargetParser
)
add_llvm_target_unittest(DirectXTests
``````````
</details>
https://github.com/llvm/llvm-project/pull/131610
More information about the llvm-commits
mailing list