• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  Core
3  ExecutionEngine
4  Interpreter
5  MC
6  Support
7  nativecodegen
8  )
9
10add_llvm_example(ParallelJIT
11  ParallelJIT.cpp
12  )
13
14if(HAVE_LIBPTHREAD)
15  target_link_libraries(ParallelJIT pthread)
16endif(HAVE_LIBPTHREAD)
17