blob: dac209765a89802f7faff9f2e2edc77599885670 [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
Chris Bieneman6a1b54a2015-03-23 20:03:57 +00003cmake_minimum_required(VERSION 2.8.12.2)
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
Chris Bieneman6a1b54a2015-03-23 20:03:57 +000010if(POLICY CMP0022)
11 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
Chris Bieneman9d9da0d2015-02-09 22:07:49 +000012endif()
NAKAMURA Takumi9cd9ad62014-02-26 06:45:11 +000013
Zachary Turnerb7e41582015-02-24 23:32:47 +000014if (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
Peter Collingbournea7fb5cf2014-11-17 22:16:15 +000023if(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
Douglas Katzman280ee912015-07-28 14:43:53 +000029project(LLVM C CXX ASM)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000030
Evgeniy Stepanovf1c3817382014-11-19 10:30:02 +000031# 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)
Chris Bieneman35b7f812015-06-04 19:33:23 +000035 if(CMAKE_VERSION VERSION_LESS 3.0 OR NOT CMAKE_MAKE_PROGRAM MATCHES "ninja$")
Chris Bieneman762cbe72015-06-04 15:33:08 +000036 message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.")
37 else()
38 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
39 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
40 endif()
Evgeniy Stepanovf1c3817382014-11-19 10:30:02 +000041endif()
42
43set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
44 "Define the maximum number of concurrent link jobs.")
45if(LLVM_PARALLEL_LINK_JOBS)
Chris Bieneman35b7f812015-06-04 19:33:23 +000046 if(CMAKE_VERSION VERSION_LESS 3.0 OR NOT CMAKE_MAKE_PROGRAM MATCHES "ninja$")
Chris Bieneman762cbe72015-06-04 15:33:08 +000047 message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.")
48 else()
49 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
50 set(CMAKE_JOB_POOL_LINK link_job_pool)
51 endif()
Evgeniy Stepanovf1c3817382014-11-19 10:30:02 +000052endif()
53
Oscar Fuentes052c23c2010-08-03 17:28:09 +000054# Add path for custom modules
55set(CMAKE_MODULE_PATH
56 ${CMAKE_MODULE_PATH}
57 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
58 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
59 )
60
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000061set(LLVM_VERSION_MAJOR 3)
Hans Wennborg8a6340d2015-07-14 22:35:57 +000062set(LLVM_VERSION_MINOR 8)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000063set(LLVM_VERSION_PATCH 0)
Chris Bienemana8a05962015-02-18 18:52:06 +000064set(LLVM_VERSION_SUFFIX svn)
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000065
Hans Wennborg09d108b2013-11-21 22:47:21 +000066if (NOT PACKAGE_VERSION)
Reid Kleckner2e3d1e02015-02-27 18:22:46 +000067 set(PACKAGE_VERSION
68 "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}")
Hans Wennborg09d108b2013-11-21 22:47:21 +000069endif()
Oscar Fuentes70640352010-12-20 09:47:13 +000070
Derek Schuffef9928e2015-03-27 16:53:06 +000071option(LLVM_INSTALL_UTILS "Include utility binaries in the 'install' target." OFF)
72
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")
Ismail Donmez9b673bf2015-05-14 17:07:41 +0000104set(CPACK_NSIS_COMPRESSOR "/SOLID lzma \r\n SetCompressorDictSize 32")
Reid Klecknerc974f092013-08-29 22:09:43 +0000105if(WIN32 AND NOT UNIX)
Hans Wennborg09d108b2013-11-21 22:47:21 +0000106 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +0000107 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Hans Wennborga3c3b812014-03-27 20:48:37 +0000108 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
109 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
Reid Klecknerc974f092013-08-29 22:09:43 +0000110 set(CPACK_NSIS_MODIFY_PATH "ON")
111 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
112 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
113 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
114 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
115 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
Hans Wennborg9148e172015-02-03 18:31:29 +0000116 if( CMAKE_CL_64 )
117 set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
118 endif()
Reid Klecknerc974f092013-08-29 22:09:43 +0000119endif()
120include(CPack)
121
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000122# Sanity check our source directory to make sure that we are not trying to
123# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
124# sure that we don't have any stray generated files lying around in the tree
125# (which would end up getting picked up by header search, instead of the correct
126# versions).
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000127if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
128 message(FATAL_ERROR "In-source builds are not allowed.
129CMake would overwrite the makefiles distributed with LLVM.
130Please create a directory and run cmake from there, passing the path
131to this source directory as the last argument.
132This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
133Please delete them.")
134endif()
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000135if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
136 file(GLOB_RECURSE
137 tablegenned_files_on_include_dir
138 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
139 file(GLOB_RECURSE
140 tablegenned_files_on_lib_dir
141 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
142 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
143 message(FATAL_ERROR "Apparently there is a previous in-source build,
144probably as the result of running `configure' and `make' on
145${CMAKE_CURRENT_SOURCE_DIR}.
146This may cause problems. The suspicious files are:
147${tablegenned_files_on_lib_dir}
148${tablegenned_files_on_include_dir}
149Please clean the source directory.")
150 endif()
151endif()
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000152
Oscar Fuentes61338132009-06-03 15:11:25 +0000153string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
154
Justin Bogner74009be2015-08-11 18:17:41 +0000155if (CMAKE_BUILD_TYPE AND
156 NOT uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL)$")
157 message(FATAL_ERROR "Invalid value for CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
158endif()
159
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000160set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
161
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000162# They are used as destination of target generators.
163set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000164set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
NAKAMURA Takumi6c5fbbc2014-07-04 04:23:26 +0000165if(WIN32 OR CYGWIN)
166 # DLL platform -- put DLLs into bin.
167 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
168else()
169 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
170endif()
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000171
172# Each of them corresponds to llvm-config's.
NAKAMURA Takumice78b802014-01-19 12:52:10 +0000173set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
174set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000175set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
176set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
177set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
178
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000179set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000180set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000181
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000182set(LLVM_ALL_TARGETS
Tim Northover3b0846e2014-05-24 12:50:23 +0000183 AArch64
Tom Stellard45bb48e2015-06-13 03:28:10 +0000184 AMDGPU
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000185 ARM
Alexei Starovoitovbb9e3452015-06-09 15:46:00 +0000186 BPF
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000187 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000188 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000189 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000190 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000191 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000192 PowerPC
193 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000194 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000195 X86
196 XCore
197 )
198
Oscar Fuentes465f9362011-03-23 17:42:13 +0000199# List of targets with JIT support:
Tim Northover3b0846e2014-05-24 12:50:23 +0000200set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000201
Tim Northover865f4bc2013-04-15 11:53:05 +0000202set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000203 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000204
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000205set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
206 CACHE STRING "Semicolon-separated list of experimental targets to build.")
207
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000208option(BUILD_SHARED_LIBS
209 "Build all libraries as shared libraries instead of static" OFF)
210
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000211option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
212if(LLVM_ENABLE_TIMESTAMPS)
213 set(ENABLE_TIMESTAMPS 1)
214endif()
215
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000216option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
217if(LLVM_ENABLE_BACKTRACES)
218 set(ENABLE_BACKTRACES 1)
219endif()
220
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000221option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
222if(LLVM_ENABLE_CRASH_OVERRIDES)
223 set(ENABLE_CRASH_OVERRIDES 1)
224endif()
225
Oscar Fuentes64955952011-01-21 15:42:54 +0000226option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
227set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
228set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
229
Sebastian Pop82622dc2012-08-08 18:04:45 +0000230set(LLVM_TARGET_ARCH "host"
231 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000232
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000233option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000234
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000235option(LLVM_ENABLE_THREADS "Use threads if available." ON)
236
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000237option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
238
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000239if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
240 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
241endif()
242
Victor Oliveira18023e42012-08-15 22:35:36 +0000243set(LLVM_TARGETS_TO_BUILD
244 ${LLVM_TARGETS_TO_BUILD}
245 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000246list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000247
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000248include(AddLLVMDefinitions)
249
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000250option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Andrew Kaylor73bd76ac2015-04-07 19:01:01 +0000251option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
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
Sanjoy Das8ce64992015-03-26 19:25:01 +0000265set(LLVM_ABI_BREAKING_CHECKS "WITH_ASSERTS" CACHE STRING
266 "Enable abi-breaking checks. Can be WITH_ASSERTS, FORCE_ON or FORCE_OFF.")
267
Chandler Carruth83885972014-01-13 22:21:34 +0000268option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
269 "Set to ON to force using an old, unsupported host toolchain." OFF)
270
Eli Bendersky5262ad22012-03-13 08:33:15 +0000271option(LLVM_USE_INTEL_JITEVENTS
272 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
273 OFF)
274
275if( LLVM_USE_INTEL_JITEVENTS )
276 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000277 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000278 message(FATAL_ERROR
279 "Intel JIT API support is available on Linux and Windows only.")
280 endif()
281endif( LLVM_USE_INTEL_JITEVENTS )
282
283option(LLVM_USE_OPROFILE
284 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
285
Joel Jones54594f22012-12-13 15:25:07 +0000286# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000287if( LLVM_USE_OPROFILE )
288 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Matt Arsenaultd31b63e2014-06-12 21:27:03 +0000289 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky5262ad22012-03-13 08:33:15 +0000290 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
291endif( LLVM_USE_OPROFILE )
292
Alexey Samsonov75789a22013-03-26 07:49:46 +0000293set(LLVM_USE_SANITIZER "" CACHE STRING
294 "Define the sanitizer used to build binaries and tests.")
295
Eric Christopher39878062013-07-30 21:44:10 +0000296option(LLVM_USE_SPLIT_DWARF
297 "Use -gsplit-dwarf when compiling llvm." OFF)
298
Alp Toker6ae079e2014-06-06 06:39:00 +0000299option(WITH_POLLY "Build LLVM with Polly" ON)
300option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
301
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000302# Define an option controlling whether we should build for 32-bit on 64-bit
303# platforms, where supported.
304if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
305 # TODO: support other platforms and toolchains.
306 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
307endif()
308
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000309# Define the default arguments to use with 'lit', and an option for the user to
310# override.
311set(LIT_ARGS_DEFAULT "-sv")
Reid Kleckner3b7e6ef2015-08-11 21:24:59 +0000312if (MSVC_IDE OR XCODE)
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000313 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
314endif()
315set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
316
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000317# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
318if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000319 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
320endif()
321
Daniel Dunbar511e2962011-11-04 19:04:37 +0000322# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000323# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000324#
325# This is primarily to support building smaller or faster project files.
326option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
327option(LLVM_BUILD_TOOLS
328 "Build the LLVM tools. If OFF, just generate build targets." ON)
329
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000330option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
331
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000332option(LLVM_BUILD_RUNTIME
333 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000334option(LLVM_BUILD_EXAMPLES
335 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
336option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
337
338option(LLVM_BUILD_TESTS
339 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
340option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
341
Michael Gottesman4d35b902013-08-24 07:25:21 +0000342option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
343option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Reid Kleckner9f5eb632014-04-18 21:45:25 +0000344option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
345option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman4d35b902013-08-24 07:25:21 +0000346
Alexey Samsonovf431a832014-02-27 08:59:01 +0000347option (LLVM_BUILD_EXTERNAL_COMPILER_RT
348 "Build compiler-rt as an external project." OFF)
349
Andrew Wilkinsbb6d95f2015-09-05 08:27:33 +0000350# You can configure which libraries from LLVM you want to include in the
351# shared library by setting LLVM_DYLIB_COMPONENTS to a semi-colon delimited
352# list of LLVM components. All component names handled by llvm-config are valid.
353if(NOT DEFINED LLVM_DYLIB_COMPONENTS)
354 set(LLVM_DYLIB_COMPONENTS "all" CACHE STRING
355 "Semicolon-separated list of components to include in libLLVM, or \"all\".")
356endif()
Andrew Wilkins92113962015-09-01 03:14:31 +0000357option(LLVM_LINK_LLVM_DYLIB "Link tools against the libllvm dynamic library" OFF)
358option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" ${LLVM_LINK_LLVM_DYLIB})
359option(LLVM_DYLIB_EXPORT_ALL "Export all symbols from libLLVM.dylib (default is C API only" ${LLVM_LINK_LLVM_DYLIB})
360set(LLVM_DISABLE_LLVM_DYLIB_ATEXIT_DEFAULT ON)
361if (LLVM_LINK_LLVM_DYLIB)
362 set(LLVM_DISABLE_LLVM_DYLIB_ATEXIT_DEFAULT OFF)
363endif()
364option(LLVM_DISABLE_LLVM_DYLIB_ATEXIT "Disable llvm-shlib's atexit destructors." ${LLVM_DISABLE_LLVM_DYLIB_ATEXIT_DEFAULT})
Chris Bieneman5d388e12014-12-09 18:49:55 +0000365if(LLVM_DISABLE_LLVM_DYLIB_ATEXIT)
366 set(DISABLE_LLVM_DYLIB_ATEXIT 1)
367endif()
Chris Bienemanadffd012014-10-23 17:22:14 +0000368
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000369option(LLVM_OPTIMIZED_TABLEGEN "Force TableGen to be built with optimization" OFF)
370if(CMAKE_CROSSCOMPILING OR (LLVM_OPTIMIZED_TABLEGEN AND LLVM_ENABLE_ASSERTIONS))
371 set(LLVM_USE_HOST_TOOLS ON)
372endif()
373
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000374# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000375# BEFORE this include, otherwise options will not be correctly set on
376# first cmake run
377include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000378
379# By default, we target the host, but this can be overridden at CMake
380# invocation time.
381set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
382 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000383set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000384
Oscar Fuentes1276e322011-03-01 22:31:19 +0000385include(HandleLLVMOptions)
386
Reid Kleckner63784ba2013-06-24 13:21:16 +0000387# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Chandler Carruthd86ab892014-12-29 19:36:05 +0000388# FIXME: We should support systems with only Python 3, but that requires work
389# on LLDB.
390set(Python_ADDITIONAL_VERSIONS 2.7)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000391include(FindPythonInterp)
392if( NOT PYTHONINTERP_FOUND )
393 message(FATAL_ERROR
394"Unable to find Python interpreter, required for builds and testing.
395
396Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
397endif()
398
Chandler Carruthd86ab892014-12-29 19:36:05 +0000399if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 )
400 message(FATAL_ERROR "Python 2.7 or newer is required")
401endif()
402
Daniel Dunbar64371262011-11-05 06:30:03 +0000403######
404# LLVMBuild Integration
405#
406# We use llvm-build to generate all the data required by the CMake based
407# build system in one swoop:
408#
409# - We generate a file (a CMake fragment) in the object root which contains
410# all the definitions that are required by CMake.
411#
412# - We generate the library table used by llvm-config.
413#
414# - We generate the dependencies for the CMake fragment, so that we will
415# automatically reconfigure outselves.
416
417set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
418set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000419 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000420set(LLVMBUILDCMAKEFRAG
421 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000422
423# Create the list of optional components that are enabled
424if (LLVM_USE_INTEL_JITEVENTS)
425 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
426endif (LLVM_USE_INTEL_JITEVENTS)
427if (LLVM_USE_OPROFILE)
428 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
429endif (LLVM_USE_OPROFILE)
430
Daniel Dunbar64371262011-11-05 06:30:03 +0000431message(STATUS "Constructing LLVMBuild project information")
432execute_process(
433 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000434 --native-target "${LLVM_NATIVE_ARCH}"
435 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000436 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000437 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
438 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000439 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000440 ERROR_VARIABLE LLVMBUILDERRORS
441 OUTPUT_STRIP_TRAILING_WHITESPACE
442 ERROR_STRIP_TRAILING_WHITESPACE
443 RESULT_VARIABLE LLVMBUILDRESULT)
444
445# On Win32, CMake doesn't properly handle piping the default output/error
446# streams into the GUI console. So, we explicitly catch and report them.
447if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
448 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
449endif()
450if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
451 message(FATAL_ERROR
452 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
453endif()
454
455# Include the generated CMake fragment. This will define properties from the
456# LLVMBuild files in a format which is easy to consume from CMake, and will add
457# the dependencies so that CMake will reconfigure properly when the LLVMBuild
458# files change.
459include(${LLVMBUILDCMAKEFRAG})
460
461######
462
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000463# Configure all of the various header file fragments LLVM uses which depend on
464# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000465set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000466set(LLVM_ENUM_ASM_PRINTERS "")
467set(LLVM_ENUM_ASM_PARSERS "")
468set(LLVM_ENUM_DISASSEMBLERS "")
469foreach(t ${LLVM_TARGETS_TO_BUILD})
470 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000471
472 list(FIND LLVM_ALL_TARGETS ${t} idx)
473 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
474 if( idx LESS 0 AND idy LESS 0 )
475 message(FATAL_ERROR "The target `${t}' does not exist.
476 It should be one of\n${LLVM_ALL_TARGETS}")
477 else()
478 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
479 endif()
480
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000481 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
482 if( asmp_file )
483 set(LLVM_ENUM_ASM_PRINTERS
484 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
485 endif()
486 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
487 set(LLVM_ENUM_ASM_PARSERS
488 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
489 endif()
490 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
491 set(LLVM_ENUM_DISASSEMBLERS
492 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
493 endif()
494endforeach(t)
495
496# Produce the target definition files, which provide a way for clients to easily
497# include various classes of targets.
498configure_file(
499 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000500 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000501 )
502configure_file(
503 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000504 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000505 )
506configure_file(
507 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000508 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000509 )
510configure_file(
511 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000512 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000513 )
514
515# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000516configure_file(
517 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000518 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000519configure_file(
520 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000521 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000522configure_file(
523 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000524 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000525
NAKAMURA Takumi0ec65f12014-01-19 12:47:22 +0000526# They are not referenced. See set_output_directory().
527set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000528set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
529set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000530
Rafael Espindola478873c2014-02-22 13:29:31 +0000531set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
532if (APPLE)
Rafael Espindolac80968e2014-02-28 13:48:03 +0000533 set(CMAKE_INSTALL_NAME_DIR "@rpath")
Rafael Espindola478873c2014-02-22 13:29:31 +0000534 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
535else(UNIX)
Bernard Ogden301bafe2014-02-24 22:23:43 +0000536 if(NOT DEFINED CMAKE_INSTALL_RPATH)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000537 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}")
Reid Kleckner916698d2015-08-11 20:28:28 +0000538 if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
Ed Maste644aef82014-03-09 18:48:45 +0000539 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
Viktor Kutuzov5e0db8b2014-08-01 19:23:15 +0000540 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin")
Ed Maste644aef82014-03-09 18:48:45 +0000541 endif()
Bernard Ogden301bafe2014-02-24 22:23:43 +0000542 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
Rafael Espindola478873c2014-02-22 13:29:31 +0000543endif()
Rafael Espindola6ad1b3f2013-12-19 23:13:58 +0000544
Rafael Espindolaf9dcf902014-11-07 15:33:56 +0000545# Work around a broken bfd ld behavior. When linking a binary with a
546# foo.so library, it will try to find any library that foo.so uses and
547# check its symbols. This is wasteful (the check was done when foo.so
548# was created) and can fail since it is not the dynamic linker and
549# doesn't know how to handle search paths correctly.
Rafael Espindola9f0ca312015-06-22 18:24:01 +0000550if (UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
Rafael Espindolaf9dcf902014-11-07 15:33:56 +0000551 set(CMAKE_EXE_LINKER_FLAGS
552 "${CMAKE_EXE_LINKER_FLAGS} -Wl,-allow-shlib-undefined")
553endif()
554
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000555set(CMAKE_INCLUDE_CURRENT_DIR ON)
556
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000557include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000558
Chris Bieneman50077412014-09-03 23:21:18 +0000559# when crosscompiling import the executable targets from a file
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000560if(LLVM_USE_HOST_TOOLS)
Chris Bieneman50077412014-09-03 23:21:18 +0000561 include(CrossCompile)
Chris Bienemanda91ceb2015-03-10 20:48:02 +0000562endif(LLVM_USE_HOST_TOOLS)
Joseph Tremoulete5e75af2015-09-09 14:57:06 +0000563if(LLVM_TARGET_IS_CROSSCOMPILE_HOST)
564# Dummy use to avoid CMake Wraning: Manually-specified variables were not used
565# (this is a variable that CrossCompile sets on recursive invocations)
566endif()
Chris Bieneman50077412014-09-03 23:21:18 +0000567
Reid Kleckner916698d2015-08-11 20:28:28 +0000568if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
David Chisnall79450132013-02-14 15:40:44 +0000569 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
570 # with libxml2, iconv.h, etc., we must add /usr/local paths.
571 include_directories("/usr/local/include")
572 link_directories("/usr/local/lib")
Reid Kleckner916698d2015-08-11 20:28:28 +0000573endif(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
David Chisnall79450132013-02-14 15:40:44 +0000574
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000575if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000576 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000577endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
578
Rafael Espindola76f92272013-04-04 01:01:32 +0000579# Make sure we don't get -rdynamic in every binary. For those that need it,
Reid Kleckner3e8c4452015-03-18 20:09:13 +0000580# use export_executable_symbols(target).
Rafael Espindola76f92272013-04-04 01:01:32 +0000581set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
582
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000583include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000584include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000585
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000586if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000587 # People report that -O3 is unreliable on MinGW. The traditional
588 # build also uses -O2 for that reason:
589 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
590endif()
591
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000592# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000593add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000594add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000595
Oscar Fuentese352ca02008-11-10 01:32:14 +0000596add_subdirectory(utils/TableGen)
597
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000598add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000599
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000600add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000601
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000602if( LLVM_INCLUDE_UTILS )
603 add_subdirectory(utils/FileCheck)
Alexey Samsonove825c852014-05-07 16:54:00 +0000604 add_subdirectory(utils/PerfectShuffle)
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000605 add_subdirectory(utils/count)
606 add_subdirectory(utils/not)
607 add_subdirectory(utils/llvm-lit)
608 add_subdirectory(utils/yaml-bench)
609else()
610 if ( LLVM_INCLUDE_TESTS )
611 message(FATAL_ERROR "Including tests when not building utils will not work.
612 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
613 endif()
614endif()
Douglas Gregor289dfc52009-07-20 18:30:25 +0000615
NAKAMURA Takumi5a0234f2014-01-31 17:32:46 +0000616if(LLVM_INCLUDE_TESTS)
617 add_subdirectory(utils/unittest)
618endif()
619
Peter Zotovb20073c2014-12-01 19:50:23 +0000620foreach( binding ${LLVM_BINDINGS_LIST} )
621 if( EXISTS "${LLVM_MAIN_SRC_DIR}/bindings/${binding}/CMakeLists.txt" )
622 add_subdirectory(bindings/${binding})
623 endif()
624endforeach()
625
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000626add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000627
Sebastian Popf7d02d42014-03-11 22:42:07 +0000628if(WITH_POLLY)
629 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
630 set(WITH_POLLY OFF)
631 endif()
632endif(WITH_POLLY)
633
Oscar Fuentesbf030842010-09-25 20:43:06 +0000634if( LLVM_INCLUDE_TOOLS )
635 add_subdirectory(tools)
636endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000637
Oscar Fuentesbf030842010-09-25 20:43:06 +0000638if( LLVM_INCLUDE_EXAMPLES )
639 add_subdirectory(examples)
640endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000641
Oscar Fuentesbf030842010-09-25 20:43:06 +0000642if( LLVM_INCLUDE_TESTS )
643 add_subdirectory(test)
Oscar Fuentesbf030842010-09-25 20:43:06 +0000644 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000645 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000646 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000647 # Windows.
648 add_subdirectory(utils/KillTheDoctor)
649 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000650
651 # Add a global check rule now that all subdirectories have been traversed
652 # and we know the total set of lit testsuites.
653 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
654 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
655 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
656 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
657 add_lit_target(check-all
658 "Running all regression tests"
659 ${LLVM_LIT_TESTSUITES}
660 PARAMS ${LLVM_LIT_PARAMS}
661 DEPENDS ${LLVM_LIT_DEPENDS}
662 ARGS ${LLVM_LIT_EXTRA_ARGS}
663 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000664endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000665
Michael Gottesman4d35b902013-08-24 07:25:21 +0000666if (LLVM_INCLUDE_DOCS)
667 add_subdirectory(docs)
668endif()
669
Oscar Fuentesa389c582010-08-09 03:26:43 +0000670add_subdirectory(cmake/modules)
671
Hans Wennborg16546272013-08-24 00:20:36 +0000672if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000673 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg16546272013-08-24 00:20:36 +0000674 DESTINATION include
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000675 COMPONENT llvm-headers
Hans Wennborg16546272013-08-24 00:20:36 +0000676 FILES_MATCHING
677 PATTERN "*.def"
678 PATTERN "*.h"
679 PATTERN "*.td"
680 PATTERN "*.inc"
681 PATTERN "LICENSE.TXT"
682 PATTERN ".svn" EXCLUDE
683 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000684
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000685 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg16546272013-08-24 00:20:36 +0000686 DESTINATION include
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000687 COMPONENT llvm-headers
Hans Wennborg16546272013-08-24 00:20:36 +0000688 FILES_MATCHING
689 PATTERN "*.def"
690 PATTERN "*.h"
691 PATTERN "*.gen"
692 PATTERN "*.inc"
693 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
694 PATTERN "CMakeFiles" EXCLUDE
Alp Toker65faa292014-06-12 11:25:18 +0000695 PATTERN "config.h" EXCLUDE
Hans Wennborg16546272013-08-24 00:20:36 +0000696 PATTERN ".svn" EXCLUDE
697 )
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000698
699 if (NOT CMAKE_CONFIGURATION_TYPES)
700 add_custom_target(installhdrs
701 DEPENDS ${name}
702 COMMAND "${CMAKE_COMMAND}"
703 -DCMAKE_INSTALL_COMPONENT=llvm-headers
704 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
705 endif()
Hans Wennborg16546272013-08-24 00:20:36 +0000706endif()