mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 01:43:57 +00:00
CMake: Use pthread library when requested and available.
llvm-svn: 71116
This commit is contained in:
parent
a06115b0ab
commit
48fa557312
@ -34,6 +34,9 @@ macro(add_llvm_executable name)
|
||||
target_link_libraries(${name} imagehlp psapi)
|
||||
elseif( CMAKE_HOST_UNIX )
|
||||
target_link_libraries(${name} dl)
|
||||
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
|
||||
target_link_libraries(${name} pthread)
|
||||
endif()
|
||||
endif( MINGW )
|
||||
endif( MSVC )
|
||||
endmacro(add_llvm_executable name)
|
||||
|
Loading…
x
Reference in New Issue
Block a user