blob: b91ba15f5534a6264a233ed4576d34a4ab2dccd2 [file] [log] [blame]
Oscar Fuentesfff33a32009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Tobias Grosser2ca0ae22015-02-24 16:39:46 +00003cmake_minimum_required(VERSION 2.8.8)
Chris Bieneman9d9da0d2015-02-09 22:07:49 +00004
Chris Bieneman9b7f8322015-02-20 19:02:59 +00005if (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
Tobias Grosser2ca0ae22015-02-24 16:39:46 +000010# FIXME: It may be removed when we use 2.8.12.
11if(CMAKE_VERSION VERSION_LESS 2.8.12)
12 # Invalidate a couple of keywords.
13 set(cmake_2_8_12_INTERFACE)
14 set(cmake_2_8_12_PRIVATE)
15else()
16 # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries().
17 set(cmake_2_8_12_INTERFACE INTERFACE)
18 set(cmake_2_8_12_PRIVATE PRIVATE)
19 if(POLICY CMP0022)
20 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
21 endif()
Chris Bieneman9d9da0d2015-02-09 22:07:49 +000022endif()
NAKAMURA Takumi9cd9ad62014-02-26 06:45:11 +000023
Zachary Turnerb7e41582015-02-24 23:32:47 +000024if (POLICY CMP0051)
25 # CMake 3.1 and higher include generator expressions of the form
26 # $<TARGETLIB:obj> in the SOURCES property. These need to be
27 # stripped everywhere that access the SOURCES property, so we just
28 # defer to the OLD behavior of not including generator expressions
29 # in the output for now.
30 cmake_policy(SET CMP0051 OLD)
31endif()
32
Peter Collingbournea7fb5cf2014-11-17 22:16:15 +000033if(CMAKE_VERSION VERSION_LESS 3.1.20141117)
34 set(cmake_3_2_USES_TERMINAL)
35else()
36 set(cmake_3_2_USES_TERMINAL USES_TERMINAL)
37endif()
38
NAKAMURA Takumi85d65ff2014-02-02 16:59:36 +000039project(LLVM)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000040
Evgeniy Stepanovf1c3817382014-11-19 10:30:02 +000041# The following only works with the Ninja generator in CMake >= 3.0.
42set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING
43 "Define the maximum number of concurrent compilation jobs.")
44if(LLVM_PARALLEL_COMPILE_JOBS)
45 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
46 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
47endif()
48
49set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
50 "Define the maximum number of concurrent link jobs.")
51if(LLVM_PARALLEL_LINK_JOBS)
52 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
53 set(CMAKE_JOB_POOL_LINK link_job_pool)
54endif()
55
Oscar Fuentes052c23c2010-08-03 17:28:09 +000056# Add path for custom modules
57set(CMAKE_MODULE_PATH
58 ${CMAKE_MODULE_PATH}
59 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
60 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
61 )
62
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000063set(LLVM_VERSION_MAJOR 3)
Hans Wennborgd94a5f02015-01-14 17:38:03 +000064set(LLVM_VERSION_MINOR 7)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000065set(LLVM_VERSION_PATCH 0)
Chris Bienemana8a05962015-02-18 18:52:06 +000066set(LLVM_VERSION_SUFFIX svn)
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000067
Hans Wennborg09d108b2013-11-21 22:47:21 +000068if (NOT PACKAGE_VERSION)
Reid Kleckner2e3d1e02015-02-27 18:22:46 +000069 set(PACKAGE_VERSION
70 "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}")
Hans Wennborg09d108b2013-11-21 22:47:21 +000071endif()
Oscar Fuentes70640352010-12-20 09:47:13 +000072
Hans Wennborg16546272013-08-24 00:20:36 +000073option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
74
Manuel Klimek13cfa002012-05-09 15:10:54 +000075option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
76if ( LLVM_USE_FOLDERS )
77 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
78endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +000079
Oscar Fuentes052c23c2010-08-03 17:28:09 +000080include(VersionFromVCS)
Oscar Fuentes70640352010-12-20 09:47:13 +000081
82option(LLVM_APPEND_VC_REV
83 "Append the version control system revision id to LLVM version" OFF)
84
85if( LLVM_APPEND_VC_REV )
86 add_version_info_from_vcs(PACKAGE_VERSION)
87endif()
Oscar Fuentes052c23c2010-08-03 17:28:09 +000088
Dylan Noblesmith67c49702011-12-18 18:50:16 +000089set(PACKAGE_NAME LLVM)
Chris Lattnerff2d99d2009-01-28 17:49:03 +000090set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith67c49702011-12-18 18:50:16 +000091set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000092
NAKAMURA Takumif0a1ab82014-01-13 05:25:13 +000093set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING
94 "Default URL where bug reports are to be submitted.")
95
Reid Klecknerc974f092013-08-29 22:09:43 +000096# Configure CPack.
Hans Wennborg09d108b2013-11-21 22:47:21 +000097set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +000098set(CPACK_PACKAGE_VENDOR "LLVM")
99set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
100set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
Tom Stellarde6ba81d2014-03-03 15:22:00 +0000101set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH})
Hans Wennborg09d108b2013-11-21 22:47:21 +0000102set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION})
Reid Klecknerc974f092013-08-29 22:09:43 +0000103set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
104if(WIN32 AND NOT UNIX)
Hans Wennborg09d108b2013-11-21 22:47:21 +0000105 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +0000106 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Hans Wennborga3c3b812014-03-27 20:48:37 +0000107 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
108 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
Reid Klecknerc974f092013-08-29 22:09:43 +0000109 set(CPACK_NSIS_MODIFY_PATH "ON")
110 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
111 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
112 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
113 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
114 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
Hans Wennborg9148e172015-02-03 18:31:29 +0000115 if( CMAKE_CL_64 )
116 set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
117 endif()
Reid Klecknerc974f092013-08-29 22:09:43 +0000118endif()
119include(CPack)
120
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000121# Sanity check our source directory to make sure that we are not trying to
122# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
123# sure that we don't have any stray generated files lying around in the tree
124# (which would end up getting picked up by header search, instead of the correct
125# versions).
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000126if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
127 message(FATAL_ERROR "In-source builds are not allowed.
128CMake would overwrite the makefiles distributed with LLVM.
129Please create a directory and run cmake from there, passing the path
130to this source directory as the last argument.
131This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
132Please delete them.")
133endif()
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000134if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
135 file(GLOB_RECURSE
136 tablegenned_files_on_include_dir
137 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
138 file(GLOB_RECURSE
139 tablegenned_files_on_lib_dir
140 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
141 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
142 message(FATAL_ERROR "Apparently there is a previous in-source build,
143probably as the result of running `configure' and `make' on
144${CMAKE_CURRENT_SOURCE_DIR}.
145This may cause problems. The suspicious files are:
146${tablegenned_files_on_lib_dir}
147${tablegenned_files_on_include_dir}
148Please clean the source directory.")
149 endif()
150endif()
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000151
Oscar Fuentes61338132009-06-03 15:11:25 +0000152string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
153
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000154set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
155
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000156# They are used as destination of target generators.
157set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000158set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
NAKAMURA Takumi6c5fbbc2014-07-04 04:23:26 +0000159if(WIN32 OR CYGWIN)
160 # DLL platform -- put DLLs into bin.
161 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
162else()
163 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
164endif()
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000165
166# Each of them corresponds to llvm-config's.
NAKAMURA Takumice78b802014-01-19 12:52:10 +0000167set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
168set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000169set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
170set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
171set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
172
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000173set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000174set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000175
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000176set(LLVM_ALL_TARGETS
Tim Northover3b0846e2014-05-24 12:50:23 +0000177 AArch64
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000178 ARM
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000179 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000180 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000181 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000182 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000183 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000184 PowerPC
Rafael Espindolaf6474d22013-05-22 00:35:47 +0000185 R600
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000186 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000187 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000188 X86
189 XCore
190 )
191
Oscar Fuentes465f9362011-03-23 17:42:13 +0000192# List of targets with JIT support:
Tim Northover3b0846e2014-05-24 12:50:23 +0000193set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000194
Tim Northover865f4bc2013-04-15 11:53:05 +0000195set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000196 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000197
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000198set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
199 CACHE STRING "Semicolon-separated list of experimental targets to build.")
200
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000201option(BUILD_SHARED_LIBS
202 "Build all libraries as shared libraries instead of static" OFF)
203
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000204option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
205if(LLVM_ENABLE_TIMESTAMPS)
206 set(ENABLE_TIMESTAMPS 1)
207endif()
208
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000209option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
210if(LLVM_ENABLE_BACKTRACES)
211 set(ENABLE_BACKTRACES 1)
212endif()
213
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000214option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
215if(LLVM_ENABLE_CRASH_OVERRIDES)
216 set(ENABLE_CRASH_OVERRIDES 1)
217endif()
218
Oscar Fuentes64955952011-01-21 15:42:54 +0000219option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
220set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
221set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
222
Sebastian Pop82622dc2012-08-08 18:04:45 +0000223set(LLVM_TARGET_ARCH "host"
224 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000225
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000226option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000227
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000228option(LLVM_ENABLE_THREADS "Use threads if available." ON)
229
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000230option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
231
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000232if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
233 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
234endif()
235
Victor Oliveira18023e42012-08-15 22:35:36 +0000236set(LLVM_TARGETS_TO_BUILD
237 ${LLVM_TARGETS_TO_BUILD}
238 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000239list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000240
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000241include(AddLLVMDefinitions)
242
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000243option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000244
Oscar Fuentes1276e322011-03-01 22:31:19 +0000245# MSVC has a gazillion warnings with this.
246if( MSVC )
247 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
NAKAMURA Takumi692d1982014-04-14 21:58:19 +0000248else()
Oscar Fuentes1276e322011-03-01 22:31:19 +0000249 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
250endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000251
Richard Smith2b91a7f2014-09-26 22:40:15 +0000252option(LLVM_ENABLE_MODULES "Compile with C++ modules enabled." OFF)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000253option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
Jean-Daniel Dupasedad1b42014-01-06 18:27:27 +0000254option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Chandler Carruthdc57c482015-03-07 10:30:34 +0000255option(LLVM_ENABLE_LIBCXXABI "Use libc++abi when using libc++." OFF)
Oscar Fuentes1276e322011-03-01 22:31:19 +0000256option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
257option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000258
Duncan Sands80f122f2013-07-17 09:34:51 +0000259if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000260 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
261else()
262 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000263endif()
264
Chandler Carruth83885972014-01-13 22:21:34 +0000265option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
266 "Set to ON to force using an old, unsupported host toolchain." OFF)
267
Eli Bendersky5262ad22012-03-13 08:33:15 +0000268option(LLVM_USE_INTEL_JITEVENTS
269 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
270 OFF)
271
272if( LLVM_USE_INTEL_JITEVENTS )
273 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000274 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000275 message(FATAL_ERROR
276 "Intel JIT API support is available on Linux and Windows only.")
277 endif()
278endif( LLVM_USE_INTEL_JITEVENTS )
279
280option(LLVM_USE_OPROFILE
281 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
282
Joel Jones54594f22012-12-13 15:25:07 +0000283# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000284if( LLVM_USE_OPROFILE )
285 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Matt Arsenaultd31b63e2014-06-12 21:27:03 +0000286 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky5262ad22012-03-13 08:33:15 +0000287 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
288endif( LLVM_USE_OPROFILE )
289
Alexey Samsonov75789a22013-03-26 07:49:46 +0000290set(LLVM_USE_SANITIZER "" CACHE STRING
291 "Define the sanitizer used to build binaries and tests.")
292
Eric Christopher39878062013-07-30 21:44:10 +0000293option(LLVM_USE_SPLIT_DWARF
294 "Use -gsplit-dwarf when compiling llvm." OFF)
295
Alp Toker6ae079e2014-06-06 06:39:00 +0000296option(WITH_POLLY "Build LLVM with Polly" ON)
297option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
298
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000299# Define an option controlling whether we should build for 32-bit on 64-bit
300# platforms, where supported.
301if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
302 # TODO: support other platforms and toolchains.
303 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
304endif()
305
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000306# Define the default arguments to use with 'lit', and an option for the user to
307# override.
308set(LIT_ARGS_DEFAULT "-sv")
309if (MSVC OR XCODE)
310 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
311endif()
312set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
313
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000314# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
315if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000316 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
317endif()
318
Daniel Dunbar511e2962011-11-04 19:04:37 +0000319# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000320# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000321#
322# This is primarily to support building smaller or faster project files.
323option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
324option(LLVM_BUILD_TOOLS
325 "Build the LLVM tools. If OFF, just generate build targets." ON)
326
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000327option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
328
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000329option(LLVM_BUILD_RUNTIME
330 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000331option(LLVM_BUILD_EXAMPLES
332 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
333option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
334
335option(LLVM_BUILD_TESTS
336 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
337option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
338
Michael Gottesman4d35b902013-08-24 07:25:21 +0000339option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
340option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Reid Kleckner9f5eb632014-04-18 21:45:25 +0000341option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
342option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman4d35b902013-08-24 07:25:21 +0000343
Alexey Samsonovf431a832014-02-27 08:59:01 +0000344option (LLVM_BUILD_EXTERNAL_COMPILER_RT
345 "Build compiler-rt as an external project." OFF)
346
Chris Bienemanadffd012014-10-23 17:22:14 +0000347option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" OFF)
Chris Bieneman5d388e12014-12-09 18:49:55 +0000348option(LLVM_DISABLE_LLVM_DYLIB_ATEXIT "Disable llvm-shlib's atexit destructors." ON)
349if(LLVM_DISABLE_LLVM_DYLIB_ATEXIT)
350 set(DISABLE_LLVM_DYLIB_ATEXIT 1)
351endif()
Chris Bienemanadffd012014-10-23 17:22:14 +0000352
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000353option(LLVM_OPTIMIZED_TABLEGEN "Force TableGen to be built with optimization" OFF)
354if(CMAKE_CROSSCOMPILING OR (LLVM_OPTIMIZED_TABLEGEN AND LLVM_ENABLE_ASSERTIONS))
355 set(LLVM_USE_HOST_TOOLS ON)
356endif()
357
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000358# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000359# BEFORE this include, otherwise options will not be correctly set on
360# first cmake run
361include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000362
363# By default, we target the host, but this can be overridden at CMake
364# invocation time.
365set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
366 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000367set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000368
Oscar Fuentes1276e322011-03-01 22:31:19 +0000369include(HandleLLVMOptions)
370
Reid Kleckner63784ba2013-06-24 13:21:16 +0000371# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Chandler Carruthd86ab892014-12-29 19:36:05 +0000372# FIXME: We should support systems with only Python 3, but that requires work
373# on LLDB.
374set(Python_ADDITIONAL_VERSIONS 2.7)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000375include(FindPythonInterp)
376if( NOT PYTHONINTERP_FOUND )
377 message(FATAL_ERROR
378"Unable to find Python interpreter, required for builds and testing.
379
380Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
381endif()
382
Chandler Carruthd86ab892014-12-29 19:36:05 +0000383if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 )
384 message(FATAL_ERROR "Python 2.7 or newer is required")
385endif()
386
Daniel Dunbar64371262011-11-05 06:30:03 +0000387######
388# LLVMBuild Integration
389#
390# We use llvm-build to generate all the data required by the CMake based
391# build system in one swoop:
392#
393# - We generate a file (a CMake fragment) in the object root which contains
394# all the definitions that are required by CMake.
395#
396# - We generate the library table used by llvm-config.
397#
398# - We generate the dependencies for the CMake fragment, so that we will
399# automatically reconfigure outselves.
400
401set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
402set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000403 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000404set(LLVMBUILDCMAKEFRAG
405 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000406
407# Create the list of optional components that are enabled
408if (LLVM_USE_INTEL_JITEVENTS)
409 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
410endif (LLVM_USE_INTEL_JITEVENTS)
411if (LLVM_USE_OPROFILE)
412 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
413endif (LLVM_USE_OPROFILE)
414
Daniel Dunbar64371262011-11-05 06:30:03 +0000415message(STATUS "Constructing LLVMBuild project information")
416execute_process(
417 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000418 --native-target "${LLVM_NATIVE_ARCH}"
419 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000420 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000421 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
422 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000423 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000424 ERROR_VARIABLE LLVMBUILDERRORS
425 OUTPUT_STRIP_TRAILING_WHITESPACE
426 ERROR_STRIP_TRAILING_WHITESPACE
427 RESULT_VARIABLE LLVMBUILDRESULT)
428
429# On Win32, CMake doesn't properly handle piping the default output/error
430# streams into the GUI console. So, we explicitly catch and report them.
431if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
432 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
433endif()
434if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
435 message(FATAL_ERROR
436 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
437endif()
438
439# Include the generated CMake fragment. This will define properties from the
440# LLVMBuild files in a format which is easy to consume from CMake, and will add
441# the dependencies so that CMake will reconfigure properly when the LLVMBuild
442# files change.
443include(${LLVMBUILDCMAKEFRAG})
444
445######
446
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000447# Configure all of the various header file fragments LLVM uses which depend on
448# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000449set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000450set(LLVM_ENUM_ASM_PRINTERS "")
451set(LLVM_ENUM_ASM_PARSERS "")
452set(LLVM_ENUM_DISASSEMBLERS "")
453foreach(t ${LLVM_TARGETS_TO_BUILD})
454 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000455
456 list(FIND LLVM_ALL_TARGETS ${t} idx)
457 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
458 if( idx LESS 0 AND idy LESS 0 )
459 message(FATAL_ERROR "The target `${t}' does not exist.
460 It should be one of\n${LLVM_ALL_TARGETS}")
461 else()
462 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
463 endif()
464
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000465 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
466 if( asmp_file )
467 set(LLVM_ENUM_ASM_PRINTERS
468 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
469 endif()
470 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
471 set(LLVM_ENUM_ASM_PARSERS
472 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
473 endif()
474 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
475 set(LLVM_ENUM_DISASSEMBLERS
476 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
477 endif()
478endforeach(t)
479
480# Produce the target definition files, which provide a way for clients to easily
481# include various classes of targets.
482configure_file(
483 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000484 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000485 )
486configure_file(
487 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000488 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000489 )
490configure_file(
491 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000492 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000493 )
494configure_file(
495 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000496 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000497 )
498
499# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000500configure_file(
501 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000502 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000503configure_file(
504 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000505 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000506configure_file(
507 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000508 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000509
NAKAMURA Takumi0ec65f12014-01-19 12:47:22 +0000510# They are not referenced. See set_output_directory().
511set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000512set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
513set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000514
Rafael Espindola478873c2014-02-22 13:29:31 +0000515set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
516if (APPLE)
Rafael Espindolac80968e2014-02-28 13:48:03 +0000517 set(CMAKE_INSTALL_NAME_DIR "@rpath")
Rafael Espindola478873c2014-02-22 13:29:31 +0000518 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
519else(UNIX)
Bernard Ogden301bafe2014-02-24 22:23:43 +0000520 if(NOT DEFINED CMAKE_INSTALL_RPATH)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000521 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}")
Ed Maste644aef82014-03-09 18:48:45 +0000522 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
523 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
Viktor Kutuzov5e0db8b2014-08-01 19:23:15 +0000524 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin")
Ed Maste644aef82014-03-09 18:48:45 +0000525 endif()
Bernard Ogden301bafe2014-02-24 22:23:43 +0000526 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
Rafael Espindola478873c2014-02-22 13:29:31 +0000527endif()
Rafael Espindola6ad1b3f2013-12-19 23:13:58 +0000528
Rafael Espindolaf9dcf902014-11-07 15:33:56 +0000529# Work around a broken bfd ld behavior. When linking a binary with a
530# foo.so library, it will try to find any library that foo.so uses and
531# check its symbols. This is wasteful (the check was done when foo.so
532# was created) and can fail since it is not the dynamic linker and
533# doesn't know how to handle search paths correctly.
534if (UNIX AND NOT APPLE)
535 set(CMAKE_EXE_LINKER_FLAGS
536 "${CMAKE_EXE_LINKER_FLAGS} -Wl,-allow-shlib-undefined")
537endif()
538
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000539set(CMAKE_INCLUDE_CURRENT_DIR ON)
540
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000541include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000542
Chris Bieneman50077412014-09-03 23:21:18 +0000543# when crosscompiling import the executable targets from a file
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000544if(LLVM_USE_HOST_TOOLS)
Chris Bieneman50077412014-09-03 23:21:18 +0000545 include(CrossCompile)
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000546endif(LLVM_USE_HOST_TOOLS)
Chris Bieneman50077412014-09-03 23:21:18 +0000547
David Chisnall79450132013-02-14 15:40:44 +0000548if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
549 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
550 # with libxml2, iconv.h, etc., we must add /usr/local paths.
551 include_directories("/usr/local/include")
552 link_directories("/usr/local/lib")
553endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
554
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000555if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000556 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000557endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
558
Rafael Espindola76f92272013-04-04 01:01:32 +0000559# Make sure we don't get -rdynamic in every binary. For those that need it,
Reid Kleckner3e8c4452015-03-18 20:09:13 +0000560# use export_executable_symbols(target).
Rafael Espindola76f92272013-04-04 01:01:32 +0000561set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
562
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000563include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000564include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000565
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000566if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000567 # People report that -O3 is unreliable on MinGW. The traditional
568 # build also uses -O2 for that reason:
569 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
570endif()
571
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000572# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000573add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000574add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000575
Oscar Fuentese352ca02008-11-10 01:32:14 +0000576add_subdirectory(utils/TableGen)
577
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000578add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000579
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000580add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000581
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000582if( LLVM_INCLUDE_UTILS )
583 add_subdirectory(utils/FileCheck)
Alexey Samsonove825c852014-05-07 16:54:00 +0000584 add_subdirectory(utils/PerfectShuffle)
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000585 add_subdirectory(utils/count)
586 add_subdirectory(utils/not)
587 add_subdirectory(utils/llvm-lit)
588 add_subdirectory(utils/yaml-bench)
589else()
590 if ( LLVM_INCLUDE_TESTS )
591 message(FATAL_ERROR "Including tests when not building utils will not work.
592 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
593 endif()
594endif()
Douglas Gregor289dfc52009-07-20 18:30:25 +0000595
NAKAMURA Takumi5a0234f2014-01-31 17:32:46 +0000596if(LLVM_INCLUDE_TESTS)
597 add_subdirectory(utils/unittest)
598endif()
599
Peter Zotovb20073c2014-12-01 19:50:23 +0000600foreach( binding ${LLVM_BINDINGS_LIST} )
601 if( EXISTS "${LLVM_MAIN_SRC_DIR}/bindings/${binding}/CMakeLists.txt" )
602 add_subdirectory(bindings/${binding})
603 endif()
604endforeach()
605
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000606add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000607
Sebastian Popf7d02d42014-03-11 22:42:07 +0000608if(WITH_POLLY)
609 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
610 set(WITH_POLLY OFF)
611 endif()
612endif(WITH_POLLY)
613
Oscar Fuentesbf030842010-09-25 20:43:06 +0000614if( LLVM_INCLUDE_TOOLS )
615 add_subdirectory(tools)
616endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000617
Oscar Fuentesbf030842010-09-25 20:43:06 +0000618if( LLVM_INCLUDE_EXAMPLES )
619 add_subdirectory(examples)
620endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000621
Oscar Fuentesbf030842010-09-25 20:43:06 +0000622if( LLVM_INCLUDE_TESTS )
623 add_subdirectory(test)
Oscar Fuentesbf030842010-09-25 20:43:06 +0000624 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000625 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000626 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000627 # Windows.
628 add_subdirectory(utils/KillTheDoctor)
629 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000630
631 # Add a global check rule now that all subdirectories have been traversed
632 # and we know the total set of lit testsuites.
633 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
634 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
635 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
636 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
637 add_lit_target(check-all
638 "Running all regression tests"
639 ${LLVM_LIT_TESTSUITES}
640 PARAMS ${LLVM_LIT_PARAMS}
641 DEPENDS ${LLVM_LIT_DEPENDS}
642 ARGS ${LLVM_LIT_EXTRA_ARGS}
643 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000644endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000645
Michael Gottesman4d35b902013-08-24 07:25:21 +0000646if (LLVM_INCLUDE_DOCS)
647 add_subdirectory(docs)
648endif()
649
Oscar Fuentesa389c582010-08-09 03:26:43 +0000650add_subdirectory(cmake/modules)
651
Hans Wennborg16546272013-08-24 00:20:36 +0000652if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000653 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg16546272013-08-24 00:20:36 +0000654 DESTINATION include
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000655 COMPONENT llvm-headers
Hans Wennborg16546272013-08-24 00:20:36 +0000656 FILES_MATCHING
657 PATTERN "*.def"
658 PATTERN "*.h"
659 PATTERN "*.td"
660 PATTERN "*.inc"
661 PATTERN "LICENSE.TXT"
662 PATTERN ".svn" EXCLUDE
663 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000664
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000665 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg16546272013-08-24 00:20:36 +0000666 DESTINATION include
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000667 COMPONENT llvm-headers
Hans Wennborg16546272013-08-24 00:20:36 +0000668 FILES_MATCHING
669 PATTERN "*.def"
670 PATTERN "*.h"
671 PATTERN "*.gen"
672 PATTERN "*.inc"
673 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
674 PATTERN "CMakeFiles" EXCLUDE
Alp Toker65faa292014-06-12 11:25:18 +0000675 PATTERN "config.h" EXCLUDE
Hans Wennborg16546272013-08-24 00:20:36 +0000676 PATTERN ".svn" EXCLUDE
677 )
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000678
679 if (NOT CMAKE_CONFIGURATION_TYPES)
680 add_custom_target(installhdrs
681 DEPENDS ${name}
682 COMMAND "${CMAKE_COMMAND}"
683 -DCMAKE_INSTALL_COMPONENT=llvm-headers
684 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
685 endif()
Hans Wennborg16546272013-08-24 00:20:36 +0000686endif()