aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/bugpoint-passes
diff options
context:
space:
mode:
authorAlexey Bader <alexey.bader@intel.com>2023-01-23 17:19:26 -0800
committerAlexey Bader <alexey.bader@intel.com>2023-01-23 17:42:16 -0800
commitb0b4cc18641b053b351c9f6133206ee37f5952a3 (patch)
tree1c8a2e2d708effc210be6dba91c6da74ece225b6 /llvm/tools/bugpoint-passes
parent5b190c4a2d9c7efd588125e09f660005f2e30783 (diff)
downloadllvm-b0b4cc18641b053b351c9f6133206ee37f5952a3.zip
llvm-b0b4cc18641b053b351c9f6133206ee37f5952a3.tar.gz
llvm-b0b4cc18641b053b351c9f6133206ee37f5952a3.tar.bz2
[bugpoint] Fix compilation of bugpoint-passes on Windows
Bugpoint also depends on libLLVMSupport.dll for 'llvm_unreachable' Reviewed By: beanz Differential Revision: https://reviews.llvm.org/D140609
Diffstat (limited to 'llvm/tools/bugpoint-passes')
-rw-r--r--llvm/tools/bugpoint-passes/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint-passes/CMakeLists.txt b/llvm/tools/bugpoint-passes/CMakeLists.txt
index eea3e23..6df49d7 100644
--- a/llvm/tools/bugpoint-passes/CMakeLists.txt
+++ b/llvm/tools/bugpoint-passes/CMakeLists.txt
@@ -11,7 +11,7 @@ if( NOT LLVM_REQUIRES_RTTI )
endif()
if(WIN32 OR CYGWIN)
- set(LLVM_LINK_COMPONENTS Core)
+ set(LLVM_LINK_COMPONENTS Core Support)
endif()
add_llvm_library( BugpointPasses MODULE BUILDTREE_ONLY