forked from OSchip/llvm-project
Make ParallelJIT pthreads linking with CMake slightly less broken
llvm-svn: 83820
This commit is contained in:
parent
396ed2bcaa
commit
3a66952bea
|
@ -4,4 +4,6 @@ add_llvm_example(ParallelJIT
|
|||
ParallelJIT.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(ParallelJIT pthread)
|
||||
if(HAVE_LIBPTHREAD)
|
||||
target_link_libraries(ParallelJIT pthread)
|
||||
endif(HAVE_LIBPTHREAD)
|
||||
|
|
Loading…
Reference in New Issue