blob: aac8b52103546232edddef2ca6f4071d18218615 [file] [log] [blame]
Oscar Fuentes34fc5172009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -07003cmake_minimum_required(VERSION 2.8.12.2)
Stephen Hines36b56882014-04-23 16:57:46 -07004
Stephen Hinesebe69fe2015-03-23 12:10:34 -07005if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
6 message(STATUS "No build type selected, default to Debug")
7 set(CMAKE_BUILD_TYPE "Debug")
8endif()
9
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -070010if(POLICY CMP0022)
11 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
Stephen Hines36b56882014-04-23 16:57:46 -070012endif()
13
Stephen Hinesebe69fe2015-03-23 12:10:34 -070014if (POLICY CMP0051)
15 # CMake 3.1 and higher include generator expressions of the form
16 # $<TARGETLIB:obj> in the SOURCES property. These need to be
17 # stripped everywhere that access the SOURCES property, so we just
18 # defer to the OLD behavior of not including generator expressions
19 # in the output for now.
20 cmake_policy(SET CMP0051 OLD)
21endif()
22
Stephen Hines37ed9c12014-12-01 14:51:49 -080023if(CMAKE_VERSION VERSION_LESS 3.1.20141117)
24 set(cmake_3_2_USES_TERMINAL)
25else()
26 set(cmake_3_2_USES_TERMINAL USES_TERMINAL)
27endif()
28
Cedric Venet1d083f42008-10-30 21:22:00 +000029project(LLVM)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000030
Stephen Hines37ed9c12014-12-01 14:51:49 -080031# The following only works with the Ninja generator in CMake >= 3.0.
32set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING
33 "Define the maximum number of concurrent compilation jobs.")
34if(LLVM_PARALLEL_COMPILE_JOBS)
35 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
36 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
37endif()
38
39set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
40 "Define the maximum number of concurrent link jobs.")
41if(LLVM_PARALLEL_LINK_JOBS)
42 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
43 set(CMAKE_JOB_POOL_LINK link_job_pool)
44endif()
45
Oscar Fuentesee993172010-08-03 17:28:09 +000046# Add path for custom modules
47set(CMAKE_MODULE_PATH
48 ${CMAKE_MODULE_PATH}
49 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
50 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
51 )
52
Dylan Noblesmithfde82372012-02-13 18:48:10 +000053set(LLVM_VERSION_MAJOR 3)
Stephen Hinesebe69fe2015-03-23 12:10:34 -070054set(LLVM_VERSION_MINOR 7)
Stephen Hines36b56882014-04-23 16:57:46 -070055set(LLVM_VERSION_PATCH 0)
Stephen Hinesebe69fe2015-03-23 12:10:34 -070056set(LLVM_VERSION_SUFFIX svn)
Dylan Noblesmithfde82372012-02-13 18:48:10 +000057
Bill Wendlingd1b770d2013-11-25 18:34:26 +000058if (NOT PACKAGE_VERSION)
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -070059 set(PACKAGE_VERSION
60 "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}")
Bill Wendlingd1b770d2013-11-25 18:34:26 +000061endif()
Oscar Fuentes784a1762010-12-20 09:47:13 +000062
Pirama Arumuga Nainar2c3e0052015-05-06 11:46:36 -070063option(LLVM_INSTALL_UTILS "Include utility binaries in the 'install' target." OFF)
64
Hans Wennborg2982c082013-08-24 00:20:36 +000065option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
66
Manuel Klimek80fa4722012-05-09 15:10:54 +000067option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
68if ( LLVM_USE_FOLDERS )
69 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
70endif()
Oscar Fuentes0b85d072011-02-20 22:06:10 +000071
Oscar Fuentesee993172010-08-03 17:28:09 +000072include(VersionFromVCS)
Oscar Fuentes784a1762010-12-20 09:47:13 +000073
74option(LLVM_APPEND_VC_REV
75 "Append the version control system revision id to LLVM version" OFF)
76
77if( LLVM_APPEND_VC_REV )
78 add_version_info_from_vcs(PACKAGE_VERSION)
79endif()
Oscar Fuentesee993172010-08-03 17:28:09 +000080
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000081set(PACKAGE_NAME LLVM)
Chris Lattner8c46e852009-01-28 17:49:03 +000082set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000083set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000084
Stephen Hines36b56882014-04-23 16:57:46 -070085set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING
86 "Default URL where bug reports are to be submitted.")
87
Reid Kleckner002062b2013-08-29 22:09:43 +000088# Configure CPack.
Bill Wendlingd1b770d2013-11-25 18:34:26 +000089set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM")
Reid Kleckner002062b2013-08-29 22:09:43 +000090set(CPACK_PACKAGE_VENDOR "LLVM")
91set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
92set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
Stephen Hines36b56882014-04-23 16:57:46 -070093set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH})
Bill Wendlingd1b770d2013-11-25 18:34:26 +000094set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION})
Reid Kleckner002062b2013-08-29 22:09:43 +000095set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
96if(WIN32 AND NOT UNIX)
Bill Wendlingd1b770d2013-11-25 18:34:26 +000097 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Kleckner002062b2013-08-29 22:09:43 +000098 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Stephen Hines36b56882014-04-23 16:57:46 -070099 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
100 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
Reid Kleckner002062b2013-08-29 22:09:43 +0000101 set(CPACK_NSIS_MODIFY_PATH "ON")
102 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
103 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
104 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
105 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
106 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700107 if( CMAKE_CL_64 )
108 set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
109 endif()
Reid Kleckner002062b2013-08-29 22:09:43 +0000110endif()
111include(CPack)
112
Daniel Dunbara0c8d2d2011-11-04 19:04:39 +0000113# Sanity check our source directory to make sure that we are not trying to
114# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
115# sure that we don't have any stray generated files lying around in the tree
116# (which would end up getting picked up by header search, instead of the correct
117# versions).
Oscar Fuentes6326a0d2008-11-14 03:43:18 +0000118if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
119 message(FATAL_ERROR "In-source builds are not allowed.
120CMake would overwrite the makefiles distributed with LLVM.
121Please create a directory and run cmake from there, passing the path
122to this source directory as the last argument.
123This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
124Please delete them.")
125endif()
Daniel Dunbara0c8d2d2011-11-04 19:04:39 +0000126if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
127 file(GLOB_RECURSE
128 tablegenned_files_on_include_dir
129 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
130 file(GLOB_RECURSE
131 tablegenned_files_on_lib_dir
132 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
133 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
134 message(FATAL_ERROR "Apparently there is a previous in-source build,
135probably as the result of running `configure' and `make' on
136${CMAKE_CURRENT_SOURCE_DIR}.
137This may cause problems. The suspicious files are:
138${tablegenned_files_on_lib_dir}
139${tablegenned_files_on_include_dir}
140Please clean the source directory.")
141 endif()
142endif()
Oscar Fuentes6326a0d2008-11-14 03:43:18 +0000143
Oscar Fuentes81a87552009-06-03 15:11:25 +0000144string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
145
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700146set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
147
Stephen Hines36b56882014-04-23 16:57:46 -0700148# They are used as destination of target generators.
149set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700150set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700151if(WIN32 OR CYGWIN)
152 # DLL platform -- put DLLs into bin.
153 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
154else()
155 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
156endif()
Stephen Hines36b56882014-04-23 16:57:46 -0700157
158# Each of them corresponds to llvm-config's.
159set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
160set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
161set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
162set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
163set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
164
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000165set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Stephen Hines36b56882014-04-23 16:57:46 -0700166set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000167
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000168set(LLVM_ALL_TARGETS
Tim Northover4c408402013-02-04 12:32:21 +0000169 AArch64
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000170 ARM
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000171 CppBackend
Tony Linthicumb4b54152011-12-12 21:14:40 +0000172 Hexagon
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000173 Mips
Richard Penningtona51984b2009-07-09 20:27:09 +0000174 MSP430
Justin Holewinski49683f32012-05-04 20:18:50 +0000175 NVPTX
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000176 PowerPC
Rafael Espindola059d3602013-05-22 00:35:47 +0000177 R600
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000178 Sparc
Ulrich Weigand9887cbe2013-05-06 16:23:07 +0000179 SystemZ
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000180 X86
181 XCore
182 )
183
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000184# List of targets with JIT support:
Stephen Hinesdce4a402014-05-29 02:49:00 -0700185set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000186
Tim Northovereaa752f2013-04-15 11:53:05 +0000187set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000188 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000189
Victor Oliveira0e80e182012-08-09 01:13:59 +0000190set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
191 CACHE STRING "Semicolon-separated list of experimental targets to build.")
192
Dylan Noblesmithbb7cd0c2012-02-01 14:49:39 +0000193option(BUILD_SHARED_LIBS
194 "Build all libraries as shared libraries instead of static" OFF)
195
Oscar Fuentes19823b12011-01-11 12:31:54 +0000196option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
197if(LLVM_ENABLE_TIMESTAMPS)
198 set(ENABLE_TIMESTAMPS 1)
199endif()
200
Benjamin Kramer53347ed2012-09-28 10:10:46 +0000201option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
202if(LLVM_ENABLE_BACKTRACES)
203 set(ENABLE_BACKTRACES 1)
204endif()
205
Daniel Dunbare179b312013-08-30 20:39:21 +0000206option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
207if(LLVM_ENABLE_CRASH_OVERRIDES)
208 set(ENABLE_CRASH_OVERRIDES 1)
209endif()
210
Oscar Fuentes59693792011-01-21 15:42:54 +0000211option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
212set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
213set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
214
Sebastian Pop9469dd32012-08-08 18:04:45 +0000215set(LLVM_TARGET_ARCH "host"
216 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesa9ff1392009-09-13 22:18:38 +0000217
Chandler Carruth8d8bdff2013-08-12 09:49:17 +0000218option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthf7364d52013-08-07 08:47:36 +0000219
Oscar Fuentes4b442832008-11-18 23:45:21 +0000220option(LLVM_ENABLE_THREADS "Use threads if available." ON)
221
Alexey Samsonovee03c942013-04-23 08:28:39 +0000222option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
223
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000224if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
225 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
226endif()
227
Victor Oliveira385401a2012-08-15 22:35:36 +0000228set(LLVM_TARGETS_TO_BUILD
229 ${LLVM_TARGETS_TO_BUILD}
230 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindola67295352013-05-22 02:45:28 +0000231list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira385401a2012-08-15 22:35:36 +0000232
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000233include(AddLLVMDefinitions)
234
Oscar Fuentes1e02bf02009-08-18 15:29:35 +0000235option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Pirama Arumuga Nainar2c3e0052015-05-06 11:46:36 -0700236option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
Stephen Hines37ed9c12014-12-01 14:51:49 -0800237option(LLVM_ENABLE_MODULES "Compile with C++ modules enabled." OFF)
Stephen Hines36b56882014-04-23 16:57:46 -0700238option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
239option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700240option(LLVM_ENABLE_LIBCXXABI "Use libc++abi when using libc++." OFF)
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000241option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
242option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000243
Duncan Sandsa009d532013-07-17 09:34:51 +0000244if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000245 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
246else()
247 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000248endif()
249
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700250set(LLVM_ABI_BREAKING_CHECKS "WITH_ASSERTS" CACHE STRING
251 "Enable abi-breaking checks. Can be WITH_ASSERTS, FORCE_ON or FORCE_OFF.")
252
Stephen Hines36b56882014-04-23 16:57:46 -0700253option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
254 "Set to ON to force using an old, unsupported host toolchain." OFF)
255
Eli Bendersky61b18512012-03-13 08:33:15 +0000256option(LLVM_USE_INTEL_JITEVENTS
257 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
258 OFF)
259
260if( LLVM_USE_INTEL_JITEVENTS )
261 # Verify we are on a supported platform
Andrew Kaylor770b97b2012-09-28 17:35:20 +0000262 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky61b18512012-03-13 08:33:15 +0000263 message(FATAL_ERROR
264 "Intel JIT API support is available on Linux and Windows only.")
265 endif()
266endif( LLVM_USE_INTEL_JITEVENTS )
267
268option(LLVM_USE_OPROFILE
269 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
270
Joel Jones1d3b7e72012-12-13 15:25:07 +0000271# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky61b18512012-03-13 08:33:15 +0000272if( LLVM_USE_OPROFILE )
273 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700274 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky61b18512012-03-13 08:33:15 +0000275 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
276endif( LLVM_USE_OPROFILE )
277
Alexey Samsonov777fccb2013-03-26 07:49:46 +0000278set(LLVM_USE_SANITIZER "" CACHE STRING
279 "Define the sanitizer used to build binaries and tests.")
280
Eric Christopher6aebd5f2013-07-30 21:44:10 +0000281option(LLVM_USE_SPLIT_DWARF
282 "Use -gsplit-dwarf when compiling llvm." OFF)
283
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700284option(WITH_POLLY "Build LLVM with Polly" ON)
285option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
286
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000287# Define an option controlling whether we should build for 32-bit on 64-bit
288# platforms, where supported.
289if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
290 # TODO: support other platforms and toolchains.
291 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
292endif()
293
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000294# Define the default arguments to use with 'lit', and an option for the user to
295# override.
296set(LIT_ARGS_DEFAULT "-sv")
297if (MSVC OR XCODE)
298 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
299endif()
300set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
301
NAKAMURA Takumi08216782011-12-11 03:07:53 +0000302# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
303if( WIN32 AND NOT CYGWIN )
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000304 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
305endif()
306
Daniel Dunbar275f6862011-11-04 19:04:37 +0000307# Define options to control the inclusion and default build behavior for
Chandler Carruthdd5d86d2013-10-02 15:42:23 +0000308# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar275f6862011-11-04 19:04:37 +0000309#
310# This is primarily to support building smaller or faster project files.
311option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
312option(LLVM_BUILD_TOOLS
313 "Build the LLVM tools. If OFF, just generate build targets." ON)
314
Stephen Hines36b56882014-04-23 16:57:46 -0700315option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
316
Alexey Samsonov651c4672013-10-04 10:41:38 +0000317option(LLVM_BUILD_RUNTIME
318 "Build the LLVM runtime libraries." ON)
Daniel Dunbar275f6862011-11-04 19:04:37 +0000319option(LLVM_BUILD_EXAMPLES
320 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
321option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
322
323option(LLVM_BUILD_TESTS
324 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
325option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
326
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000327option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
328option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700329option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
330option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000331
Stephen Hines36b56882014-04-23 16:57:46 -0700332option (LLVM_BUILD_EXTERNAL_COMPILER_RT
333 "Build compiler-rt as an external project." OFF)
334
Stephen Hines37ed9c12014-12-01 14:51:49 -0800335option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" OFF)
Pirama Arumuga Nainar2c3e0052015-05-06 11:46:36 -0700336option(LLVM_DYLIB_EXPORT_ALL "Export all symbols from libLLVM.dylib (default is C API only" OFF)
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700337option(LLVM_DISABLE_LLVM_DYLIB_ATEXIT "Disable llvm-shlib's atexit destructors." ON)
338if(LLVM_DISABLE_LLVM_DYLIB_ATEXIT)
339 set(DISABLE_LLVM_DYLIB_ATEXIT 1)
340endif()
Stephen Hines37ed9c12014-12-01 14:51:49 -0800341
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700342option(LLVM_OPTIMIZED_TABLEGEN "Force TableGen to be built with optimization" OFF)
343if(CMAKE_CROSSCOMPILING OR (LLVM_OPTIMIZED_TABLEGEN AND LLVM_ENABLE_ASSERTIONS))
344 set(LLVM_USE_HOST_TOOLS ON)
345endif()
346
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000347# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000348# BEFORE this include, otherwise options will not be correctly set on
349# first cmake run
350include(config-ix)
Sebastian Popdf259882012-08-20 19:56:52 +0000351
352# By default, we target the host, but this can be overridden at CMake
353# invocation time.
354set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
355 "Default target for which LLVM will generate code." )
NAKAMURA Takumicbc478e2012-12-10 07:14:29 +0000356set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popdf259882012-08-20 19:56:52 +0000357
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000358include(HandleLLVMOptions)
359
Reid Klecknerdfad9e32013-06-24 13:21:16 +0000360# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700361# FIXME: We should support systems with only Python 3, but that requires work
362# on LLDB.
363set(Python_ADDITIONAL_VERSIONS 2.7)
Daniel Dunbara54c8ea2011-11-04 23:04:05 +0000364include(FindPythonInterp)
365if( NOT PYTHONINTERP_FOUND )
366 message(FATAL_ERROR
367"Unable to find Python interpreter, required for builds and testing.
368
369Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
370endif()
371
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700372if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 )
373 message(FATAL_ERROR "Python 2.7 or newer is required")
374endif()
375
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000376######
377# LLVMBuild Integration
378#
379# We use llvm-build to generate all the data required by the CMake based
380# build system in one swoop:
381#
382# - We generate a file (a CMake fragment) in the object root which contains
383# all the definitions that are required by CMake.
384#
385# - We generate the library table used by llvm-config.
386#
387# - We generate the dependencies for the CMake fragment, so that we will
388# automatically reconfigure outselves.
389
390set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
391set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000392 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000393set(LLVMBUILDCMAKEFRAG
394 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurd75493542012-05-07 19:38:40 +0000395
396# Create the list of optional components that are enabled
397if (LLVM_USE_INTEL_JITEVENTS)
398 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
399endif (LLVM_USE_INTEL_JITEVENTS)
400if (LLVM_USE_OPROFILE)
401 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
402endif (LLVM_USE_OPROFILE)
403
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000404message(STATUS "Constructing LLVMBuild project information")
405execute_process(
406 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar83337302011-11-10 01:16:48 +0000407 --native-target "${LLVM_NATIVE_ARCH}"
408 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurd75493542012-05-07 19:38:40 +0000409 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000410 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
411 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman20e46362013-08-15 04:16:12 +0000412 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000413 ERROR_VARIABLE LLVMBUILDERRORS
414 OUTPUT_STRIP_TRAILING_WHITESPACE
415 ERROR_STRIP_TRAILING_WHITESPACE
416 RESULT_VARIABLE LLVMBUILDRESULT)
417
418# On Win32, CMake doesn't properly handle piping the default output/error
419# streams into the GUI console. So, we explicitly catch and report them.
420if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
421 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
422endif()
423if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
424 message(FATAL_ERROR
425 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
426endif()
427
428# Include the generated CMake fragment. This will define properties from the
429# LLVMBuild files in a format which is easy to consume from CMake, and will add
430# the dependencies so that CMake will reconfigure properly when the LLVMBuild
431# files change.
432include(${LLVMBUILDCMAKEFRAG})
433
434######
435
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000436# Configure all of the various header file fragments LLVM uses which depend on
437# configuration variables.
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000438set(LLVM_ENUM_TARGETS "")
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000439set(LLVM_ENUM_ASM_PRINTERS "")
440set(LLVM_ENUM_ASM_PARSERS "")
441set(LLVM_ENUM_DISASSEMBLERS "")
442foreach(t ${LLVM_TARGETS_TO_BUILD})
443 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000444
445 list(FIND LLVM_ALL_TARGETS ${t} idx)
446 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
447 if( idx LESS 0 AND idy LESS 0 )
448 message(FATAL_ERROR "The target `${t}' does not exist.
449 It should be one of\n${LLVM_ALL_TARGETS}")
450 else()
451 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
452 endif()
453
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000454 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
455 if( asmp_file )
456 set(LLVM_ENUM_ASM_PRINTERS
457 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
458 endif()
459 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
460 set(LLVM_ENUM_ASM_PARSERS
461 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
462 endif()
463 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
464 set(LLVM_ENUM_DISASSEMBLERS
465 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
466 endif()
467endforeach(t)
468
469# Produce the target definition files, which provide a way for clients to easily
470# include various classes of targets.
471configure_file(
472 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700473 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000474 )
475configure_file(
476 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700477 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000478 )
479configure_file(
480 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700481 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000482 )
483configure_file(
484 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700485 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000486 )
487
488# Configure the three LLVM configuration header files.
Oscar Fuentesd538e242011-02-03 20:57:36 +0000489configure_file(
490 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700491 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000492configure_file(
493 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700494 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000495configure_file(
496 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700497 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentes2c5e0b82011-01-09 14:34:39 +0000498
Stephen Hines36b56882014-04-23 16:57:46 -0700499# They are not referenced. See set_output_directory().
500set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700501set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
502set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000503
Stephen Hines36b56882014-04-23 16:57:46 -0700504set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
505if (APPLE)
506 set(CMAKE_INSTALL_NAME_DIR "@rpath")
507 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
508else(UNIX)
509 if(NOT DEFINED CMAKE_INSTALL_RPATH)
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700510 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}")
Stephen Hines36b56882014-04-23 16:57:46 -0700511 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
512 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
Stephen Hines37ed9c12014-12-01 14:51:49 -0800513 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin")
Stephen Hines36b56882014-04-23 16:57:46 -0700514 endif()
515 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
516endif()
517
Stephen Hines37ed9c12014-12-01 14:51:49 -0800518# Work around a broken bfd ld behavior. When linking a binary with a
519# foo.so library, it will try to find any library that foo.so uses and
520# check its symbols. This is wasteful (the check was done when foo.so
521# was created) and can fail since it is not the dynamic linker and
522# doesn't know how to handle search paths correctly.
523if (UNIX AND NOT APPLE)
524 set(CMAKE_EXE_LINKER_FLAGS
525 "${CMAKE_EXE_LINKER_FLAGS} -Wl,-allow-shlib-undefined")
526endif()
527
Oscar Fuentesc08830d2011-02-14 20:13:58 +0000528set(CMAKE_INCLUDE_CURRENT_DIR ON)
529
Stephen Hines36b56882014-04-23 16:57:46 -0700530include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000531
Stephen Hines37ed9c12014-12-01 14:51:49 -0800532# when crosscompiling import the executable targets from a file
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700533if(LLVM_USE_HOST_TOOLS)
Stephen Hines37ed9c12014-12-01 14:51:49 -0800534 include(CrossCompile)
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700535endif(LLVM_USE_HOST_TOOLS)
Stephen Hines37ed9c12014-12-01 14:51:49 -0800536
David Chisnall579ad502013-02-14 15:40:44 +0000537if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
538 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
539 # with libxml2, iconv.h, etc., we must add /usr/local paths.
540 include_directories("/usr/local/include")
541 link_directories("/usr/local/lib")
542endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
543
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000544if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2341a3c2011-07-17 17:35:15 +0000545 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000546endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
547
Rafael Espindola436633e2013-04-04 01:01:32 +0000548# Make sure we don't get -rdynamic in every binary. For those that need it,
Pirama Arumuga Nainar4c5e43d2015-04-08 08:55:49 -0700549# use export_executable_symbols(target).
Rafael Espindola436633e2013-04-04 01:01:32 +0000550set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
551
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000552include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000553include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000554
Michael J. Spencer1c4e9342010-09-11 02:13:39 +0000555if( MINGW )
Oscar Fuentes53bf3ee2011-01-07 20:31:03 +0000556 # People report that -O3 is unreliable on MinGW. The traditional
557 # build also uses -O2 for that reason:
558 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
559endif()
560
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000561# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000562add_subdirectory(lib/Support)
Peter Collingbourne7c788882011-10-01 16:41:13 +0000563add_subdirectory(lib/TableGen)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000564
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000565add_subdirectory(utils/TableGen)
566
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000567add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000568
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000569add_subdirectory(lib)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000570
Stephen Hines36b56882014-04-23 16:57:46 -0700571if( LLVM_INCLUDE_UTILS )
572 add_subdirectory(utils/FileCheck)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700573 add_subdirectory(utils/PerfectShuffle)
Stephen Hines36b56882014-04-23 16:57:46 -0700574 add_subdirectory(utils/count)
575 add_subdirectory(utils/not)
576 add_subdirectory(utils/llvm-lit)
577 add_subdirectory(utils/yaml-bench)
578else()
579 if ( LLVM_INCLUDE_TESTS )
580 message(FATAL_ERROR "Including tests when not building utils will not work.
581 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
582 endif()
583endif()
584
585if(LLVM_INCLUDE_TESTS)
586 add_subdirectory(utils/unittest)
587endif()
Douglas Gregor4d20c242009-07-20 18:30:25 +0000588
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700589foreach( binding ${LLVM_BINDINGS_LIST} )
590 if( EXISTS "${LLVM_MAIN_SRC_DIR}/bindings/${binding}/CMakeLists.txt" )
591 add_subdirectory(bindings/${binding})
592 endif()
593endforeach()
594
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000595add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000596
Stephen Hines36b56882014-04-23 16:57:46 -0700597if(WITH_POLLY)
598 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
599 set(WITH_POLLY OFF)
600 endif()
601endif(WITH_POLLY)
602
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000603if( LLVM_INCLUDE_TOOLS )
604 add_subdirectory(tools)
605endif()
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000606
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000607if( LLVM_INCLUDE_EXAMPLES )
608 add_subdirectory(examples)
609endif()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000610
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000611if( LLVM_INCLUDE_TESTS )
612 add_subdirectory(test)
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000613 add_subdirectory(unittests)
NAKAMURA Takumi15b337c2010-10-26 05:08:27 +0000614 if (MSVC)
Joel Jones1d3b7e72012-12-13 15:25:07 +0000615 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencerbbb9ea72010-10-11 19:55:38 +0000616 # Windows.
617 add_subdirectory(utils/KillTheDoctor)
618 endif()
Chandler Carruthcf23bd32012-06-30 10:14:14 +0000619
620 # Add a global check rule now that all subdirectories have been traversed
621 # and we know the total set of lit testsuites.
622 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
623 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
624 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
625 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
626 add_lit_target(check-all
627 "Running all regression tests"
628 ${LLVM_LIT_TESTSUITES}
629 PARAMS ${LLVM_LIT_PARAMS}
630 DEPENDS ${LLVM_LIT_DEPENDS}
631 ARGS ${LLVM_LIT_EXTRA_ARGS}
632 )
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000633endif()
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000634
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000635if (LLVM_INCLUDE_DOCS)
636 add_subdirectory(docs)
637endif()
638
Oscar Fuentes6252e982010-08-09 03:26:43 +0000639add_subdirectory(cmake/modules)
640
Hans Wennborg2982c082013-08-24 00:20:36 +0000641if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
Stephen Hines36b56882014-04-23 16:57:46 -0700642 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg2982c082013-08-24 00:20:36 +0000643 DESTINATION include
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700644 COMPONENT llvm-headers
Hans Wennborg2982c082013-08-24 00:20:36 +0000645 FILES_MATCHING
646 PATTERN "*.def"
647 PATTERN "*.h"
648 PATTERN "*.td"
649 PATTERN "*.inc"
650 PATTERN "LICENSE.TXT"
651 PATTERN ".svn" EXCLUDE
652 )
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000653
Stephen Hines36b56882014-04-23 16:57:46 -0700654 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg2982c082013-08-24 00:20:36 +0000655 DESTINATION include
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700656 COMPONENT llvm-headers
Hans Wennborg2982c082013-08-24 00:20:36 +0000657 FILES_MATCHING
658 PATTERN "*.def"
659 PATTERN "*.h"
660 PATTERN "*.gen"
661 PATTERN "*.inc"
662 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
663 PATTERN "CMakeFiles" EXCLUDE
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700664 PATTERN "config.h" EXCLUDE
Hans Wennborg2982c082013-08-24 00:20:36 +0000665 PATTERN ".svn" EXCLUDE
666 )
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700667
668 if (NOT CMAKE_CONFIGURATION_TYPES)
669 add_custom_target(installhdrs
670 DEPENDS ${name}
671 COMMAND "${CMAKE_COMMAND}"
672 -DCMAKE_INSTALL_COMPONENT=llvm-headers
673 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
674 endif()
Hans Wennborg2982c082013-08-24 00:20:36 +0000675endif()