mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
4ce58a4d70
Renames the llvm/examples/LLJITExamples directory to llvm/examples/OrcV2Examples since it is becoming a home for all OrcV2 examples, not just LLJIT. See http://llvm.org/PR31103.
20 lines
528 B
CMake
20 lines
528 B
CMake
add_subdirectory(BrainF)
|
|
add_subdirectory(Fibonacci)
|
|
add_subdirectory(HowToUseJIT)
|
|
add_subdirectory(HowToUseLLJIT)
|
|
add_subdirectory(IRTransforms)
|
|
add_subdirectory(Kaleidoscope)
|
|
add_subdirectory(ModuleMaker)
|
|
add_subdirectory(OrcV2Examples)
|
|
add_subdirectory(SpeculativeJIT)
|
|
add_subdirectory(Bye)
|
|
add_subdirectory(ThinLtoJIT)
|
|
|
|
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 )
|