2015-12-30 11:46:15 +00: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()
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2014-11-24 09:08:18 +00: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)
|
2015-01-18 16:17:27 +00:00
|
|
|
else()
|
2015-12-30 11:46:15 +00:00
|
|
|
set(LLVM_TOOL_POLLY_BUILD Off)
|
2015-01-18 16:17:27 +00:00
|
|
|
endif()
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
if(NOT LLVM_BUILD_LLVM_DYLIB )
|
|
|
|
set(LLVM_TOOL_LLVM_SHLIB_BUILD Off)
|
|
|
|
endif()
|
2015-01-18 16:17:27 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
if(NOT LLVM_USE_INTEL_JITEVENTS )
|
|
|
|
set(LLVM_TOOL_LLVM_JITLISTENER_BUILD Off)
|
|
|
|
endif()
|
2015-05-27 18:44:32 +00:00
|
|
|
|
2016-02-13 14:57:10 +00:00
|
|
|
if(CYGWIN OR NOT LLVM_ENABLE_PIC)
|
2015-12-30 11:46:15 +00:00
|
|
|
set(LLVM_TOOL_LTO_BUILD Off)
|
|
|
|
set(LLVM_TOOL_LLVM_LTO_BUILD Off)
|
2011-05-02 19:34:44 +00:00
|
|
|
endif()
|
|
|
|
|
2015-12-30 11:46:15 +00: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.
|
|
|
|
add_llvm_tool_subdirectory(lto)
|
2016-07-23 20:41:05 +00:00
|
|
|
add_llvm_tool_subdirectory(gold)
|
2015-12-30 11:46:15 +00:00
|
|
|
add_llvm_tool_subdirectory(llvm-ar)
|
|
|
|
add_llvm_tool_subdirectory(llvm-config)
|
2016-07-23 20:41:05 +00:00
|
|
|
add_llvm_tool_subdirectory(llvm-lto)
|
2015-12-30 11:46:15 +00:00
|
|
|
add_llvm_tool_subdirectory(llvm-profdata)
|
2011-05-02 19:34:44 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
# Projects supported via LLVM_EXTERNAL_*_SOURCE_DIR need to be explicitly
|
|
|
|
# specified.
|
2012-08-15 19:34:23 +00:00
|
|
|
add_llvm_external_project(clang)
|
2015-01-18 16:17:27 +00:00
|
|
|
add_llvm_external_project(llgo)
|
2015-07-05 14:21:36 +00:00
|
|
|
add_llvm_external_project(lld)
|
|
|
|
add_llvm_external_project(lldb)
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2015-07-05 14:21:36 +00:00
|
|
|
# Automatically add remaining sub-directories containing a 'CMakeLists.txt'
|
|
|
|
# file as external projects.
|
2015-12-30 11:46:15 +00:00
|
|
|
add_llvm_implicit_projects()
|
2009-10-14 17:57:32 +00:00
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
# Add subprojects specified using LLVM_EXTERNAL_PROJECTS
|
|
|
|
foreach(p ${LLVM_EXTERNAL_PROJECTS})
|
|
|
|
add_llvm_external_project(${p})
|
|
|
|
endforeach(p)
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
|