Skip to content

Commit

Permalink
[bugpoint] Fix compilation of bugpoint-passes on Windows
Browse files Browse the repository at this point in the history
Bugpoint also depends on libLLVMSupport.dll for 'llvm_unreachable'

Reviewed By: beanz

Differential Revision: https://reviews.llvm.org/D140609
  • Loading branch information
bader committed Jan 24, 2023
1 parent 5b190c4 commit b0b4cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/tools/bugpoint-passes/CMakeLists.txt
Expand Up @@ -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
Expand Down

0 comments on commit b0b4cc1

Please sign in to comment.