mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 23:21:04 +00:00
21dbb437f8
A very minimal demo of how to use the LLJIT class, along the lines of the old HowToUseJIT example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361435 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
381 B
CMake
15 lines
381 B
CMake
add_subdirectory(BrainF)
|
|
add_subdirectory(Fibonacci)
|
|
add_subdirectory(HowToUseJIT)
|
|
add_subdirectory(HowToUseLLJIT)
|
|
add_subdirectory(Kaleidoscope)
|
|
add_subdirectory(ModuleMaker)
|
|
|
|
if(LLVM_ENABLE_EH AND (NOT WIN32) AND (NOT "${LLVM_NATIVE_ARCH}" STREQUAL "ARM"))
|
|
add_subdirectory(ExceptionDemo)
|
|
endif()
|
|
|
|
if( HAVE_PTHREAD_H )
|
|
add_subdirectory(ParallelJIT)
|
|
endif( HAVE_PTHREAD_H )
|