diff options
-rwxr-xr-x | cmake/modules/AddLLVM.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 85e6230f90..13ecc37f7f 100755 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -31,7 +31,7 @@ macro(add_llvm_executable name) else( MSVC ) add_dependencies(${name} llvm-config.target) if( MINGW ) - target_link_libraries(${name} DbgHelp psapi) + target_link_libraries(${name} imagehlp psapi) elseif( CMAKE_HOST_UNIX ) target_link_libraries(${name} dl) endif( MINGW ) |