[llvm] [DirectX] Fix build error if set BUILD_SHARED_LIBS (PR #131610)
Russell Liu via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 06:09:16 PDT 2025
https://github.com/GinShio created https://github.com/llvm/llvm-project/pull/131610
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.
>From 693416df3cba4e541a68003b6c4bcf1a304d5765 Mon Sep 17 00:00:00 2001
From: GinShio <ginshio78 at gmail.com>
Date: Mon, 17 Mar 2025 20:43:09 +0800
Subject: [PATCH] [DirectX] Fix build error if set BUILD_SHARED_LIBS
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.
---
llvm/unittests/Target/DirectX/CMakeLists.txt | 5 +++++
1 file changed, 5 insertions(+)
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
More information about the llvm-commits
mailing list