2015-07-20 22:36:06 +02:00
|
|
|
# This file will recurse into all subdirectories that contain CMakeLists.txt
|
|
|
|
# Setting variables that match the pattern LLVM_TOOL_{NAME}_BUILD to Off will
|
|
|
|
# prevent traversing into a directory.
|
|
|
|
#
|
|
|
|
# The only tools that need to be explicitly added are ones that have explicit
|
|
|
|
# ordering requirements.
|
|
|
|
|
|
|
|
# Iterates all the subdirectories to create CMake options to enable/disable
|
|
|
|
# traversing each directory.
|
|
|
|
create_llvm_tool_options()
|
2010-09-14 01:59:48 +02:00
|
|
|
|
2014-03-14 05:04:14 +01:00
|
|
|
# Build polly before the tools: the tools link against polly when
|
|
|
|
# LINK_POLLY_INTO_TOOLS is set.
|
|
|
|
if(WITH_POLLY)
|
|
|
|
add_llvm_external_project(polly)
|
2014-11-10 16:03:02 +01:00
|
|
|
else()
|
2015-07-20 22:36:06 +02:00
|
|
|
set(LLVM_TOOL_POLLY_BUILD Off)
|
2014-11-10 16:03:02 +01:00
|
|
|
endif()
|
|
|
|
|
2015-07-20 22:36:06 +02:00
|
|
|
if(NOT LLVM_BUILD_LLVM_DYLIB )
|
|
|
|
set(LLVM_TOOL_LLVM_SHLIB_BUILD Off)
|
2015-07-13 22:23:15 +02:00
|
|
|
endif()
|
2015-07-08 04:35:43 +02:00
|
|
|
|
2015-07-20 22:36:06 +02:00
|
|
|
if(NOT LLVM_USE_INTEL_JITEVENTS )
|
|
|
|
set(LLVM_TOOL_LLVM_JITLISTENER_BUILD Off)
|
|
|
|
endif()
|
2015-07-13 22:30:58 +02:00
|
|
|
|
2015-11-10 22:38:58 +01:00
|
|
|
if(CYGWIN)
|
2015-07-20 22:36:06 +02:00
|
|
|
set(LLVM_TOOL_LTO_BUILD Off)
|
|
|
|
set(LLVM_TOOL_LLVM_LTO_BUILD Off)
|
|
|
|
endif()
|
2015-07-13 22:30:58 +02:00
|
|
|
|
2015-12-16 19:30:36 +01:00
|
|
|
# Add LTO, llvm-ar, llvm-config, and llvm-profdata before clang, ExternalProject
|
|
|
|
# requires targets specified in DEPENDS to exist before the call to
|
|
|
|
# ExternalProject_Add.
|
2015-09-10 20:22:33 +02:00
|
|
|
add_llvm_tool_subdirectory(lto)
|
2015-09-14 20:36:40 +02:00
|
|
|
add_llvm_tool_subdirectory(llvm-ar)
|
2015-10-03 00:28:48 +02:00
|
|
|
add_llvm_tool_subdirectory(llvm-config)
|
2015-12-16 19:30:36 +01:00
|
|
|
add_llvm_tool_subdirectory(llvm-profdata)
|
2015-09-10 20:22:33 +02:00
|
|
|
|
2015-07-21 17:53:09 +02:00
|
|
|
# Projects supported via LLVM_EXTERNAL_*_SOURCE_DIR need to be explicitly
|
|
|
|
# specified.
|
|
|
|
add_llvm_external_project(clang)
|
|
|
|
add_llvm_external_project(llgo)
|
|
|
|
add_llvm_external_project(lld)
|
|
|
|
add_llvm_external_project(lldb)
|
|
|
|
|
2015-06-22 23:58:02 +02:00
|
|
|
# Automatically add remaining sub-directories containing a 'CMakeLists.txt'
|
|
|
|
# file as external projects.
|
2015-07-20 22:36:06 +02:00
|
|
|
add_llvm_implicit_projects()
|
2010-09-14 01:59:48 +02:00
|
|
|
|
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
|