blob: 17ef03aaf9ac346be5b186cf89e16501b3a7e36c [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
Cedric Venet6c9f3ec2008-10-30 21:22:00 +00003project(LLVM)
Tim Northover1c82f3e2013-02-18 11:53:37 +00004cmake_minimum_required(VERSION 2.8)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00005
Oscar Fuentes052c23c2010-08-03 17:28:09 +00006# Add path for custom modules
7set(CMAKE_MODULE_PATH
8 ${CMAKE_MODULE_PATH}
9 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
10 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
11 )
12
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000013set(LLVM_VERSION_MAJOR 3)
Rafael Espindolaeaf97982013-05-07 20:44:22 +000014set(LLVM_VERSION_MINOR 4)
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000015
16set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}svn")
Oscar Fuentes70640352010-12-20 09:47:13 +000017
Hans Wennborg16546272013-08-24 00:20:36 +000018option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
19
Manuel Klimek13cfa002012-05-09 15:10:54 +000020option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
21if ( LLVM_USE_FOLDERS )
22 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
23endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +000024
Rafael Espindola4102eaf2013-09-25 14:06:55 +000025if(MSVC AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.11))
26 # set stack reserved size to ~10MB
27 # CMake previously automatically set this value for MSVC builds, but the
28 # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default
29 # value (1 MB) which is not enough for us in tasks such as parsing recursive
30 # C++ templates in Clang.
31 set(CMAKE_CXX_STACK_SIZE "10000000")
32endif()
33
Oscar Fuentes052c23c2010-08-03 17:28:09 +000034include(VersionFromVCS)
Oscar Fuentes70640352010-12-20 09:47:13 +000035
36option(LLVM_APPEND_VC_REV
37 "Append the version control system revision id to LLVM version" OFF)
38
39if( LLVM_APPEND_VC_REV )
40 add_version_info_from_vcs(PACKAGE_VERSION)
41endif()
Oscar Fuentes052c23c2010-08-03 17:28:09 +000042
Dylan Noblesmith67c49702011-12-18 18:50:16 +000043set(PACKAGE_NAME LLVM)
Chris Lattnerff2d99d2009-01-28 17:49:03 +000044set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith67c49702011-12-18 18:50:16 +000045set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000046
Reid Klecknerc974f092013-08-29 22:09:43 +000047# Configure CPack.
48set(CPACK_PACKAGE_VENDOR "LLVM")
49set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
50set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
51if( LLVM_APPEND_VC_REV )
52 add_version_info_from_vcs(CPACK_PACKAGE_VERSION_PATCH)
53else()
54 set(CPACK_PACKAGE_VERSION_PATCH "svn")
55endif()
56set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
57if(WIN32 AND NOT UNIX)
58 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
59 set(CPACK_NSIS_MODIFY_PATH "ON")
60 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
61 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
62 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
63 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
64 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
65endif()
66include(CPack)
67
Daniel Dunbarad3946a2011-11-04 19:04:39 +000068# Sanity check our source directory to make sure that we are not trying to
69# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
70# sure that we don't have any stray generated files lying around in the tree
71# (which would end up getting picked up by header search, instead of the correct
72# versions).
Oscar Fuentesa5f83562008-11-14 03:43:18 +000073if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
74 message(FATAL_ERROR "In-source builds are not allowed.
75CMake would overwrite the makefiles distributed with LLVM.
76Please create a directory and run cmake from there, passing the path
77to this source directory as the last argument.
78This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
79Please delete them.")
80endif()
Daniel Dunbarad3946a2011-11-04 19:04:39 +000081if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
82 file(GLOB_RECURSE
83 tablegenned_files_on_include_dir
84 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
85 file(GLOB_RECURSE
86 tablegenned_files_on_lib_dir
87 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
88 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
89 message(FATAL_ERROR "Apparently there is a previous in-source build,
90probably as the result of running `configure' and `make' on
91${CMAKE_CURRENT_SOURCE_DIR}.
92This may cause problems. The suspicious files are:
93${tablegenned_files_on_lib_dir}
94${tablegenned_files_on_include_dir}
95Please clean the source directory.")
96 endif()
97endif()
Oscar Fuentesa5f83562008-11-14 03:43:18 +000098
Oscar Fuentes61338132009-06-03 15:11:25 +000099string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
100
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000101set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes2500aae2008-10-29 02:33:15 +0000102set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000103set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
104set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
105set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentes46fed3b2009-06-12 02:49:53 +0000106set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000107
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000108set(LLVM_ALL_TARGETS
Tim Northover43852f22013-02-04 12:32:21 +0000109 AArch64
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000110 ARM
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000111 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000112 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000113 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000114 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000115 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000116 PowerPC
Rafael Espindolaf6474d22013-05-22 00:35:47 +0000117 R600
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000118 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000119 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000120 X86
121 XCore
122 )
123
Oscar Fuentes465f9362011-03-23 17:42:13 +0000124# List of targets with JIT support:
Tim Northoverc17f3f72013-05-19 19:44:56 +0000125set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000126
Tim Northover865f4bc2013-04-15 11:53:05 +0000127set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000128 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000129
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000130set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
131 CACHE STRING "Semicolon-separated list of experimental targets to build.")
132
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000133option(BUILD_SHARED_LIBS
134 "Build all libraries as shared libraries instead of static" OFF)
135
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000136option(LLVM_ENABLE_CBE_PRINTF_A "Set to ON if CBE is enabled for printf %a output" ON)
137if(LLVM_ENABLE_CBE_PRINTF_A)
138 set(ENABLE_CBE_PRINTF_A 1)
139endif()
140
141option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
142if(LLVM_ENABLE_TIMESTAMPS)
143 set(ENABLE_TIMESTAMPS 1)
144endif()
145
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000146option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
147if(LLVM_ENABLE_BACKTRACES)
148 set(ENABLE_BACKTRACES 1)
149endif()
150
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000151option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
152if(LLVM_ENABLE_CRASH_OVERRIDES)
153 set(ENABLE_CRASH_OVERRIDES 1)
154endif()
155
Oscar Fuentes64955952011-01-21 15:42:54 +0000156option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
157set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
158set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
159
Sebastian Pop82622dc2012-08-08 18:04:45 +0000160set(LLVM_TARGET_ARCH "host"
161 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000162
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000163option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000164
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000165option(LLVM_ENABLE_THREADS "Use threads if available." ON)
166
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000167option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
168
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000169if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
170 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
171endif()
172
Victor Oliveira18023e42012-08-15 22:35:36 +0000173set(LLVM_TARGETS_TO_BUILD
174 ${LLVM_TARGETS_TO_BUILD}
175 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000176list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000177
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000178set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
179
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000180include(AddLLVMDefinitions)
181
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000182option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000183
Oscar Fuentes1276e322011-03-01 22:31:19 +0000184# MSVC has a gazillion warnings with this.
185if( MSVC )
186 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
187else( MSVC )
188 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
189endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000190
Oscar Fuentes1276e322011-03-01 22:31:19 +0000191option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
192option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000193
Duncan Sands80f122f2013-07-17 09:34:51 +0000194if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000195 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
196else()
197 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000198endif()
199
Eli Bendersky5262ad22012-03-13 08:33:15 +0000200option(LLVM_USE_INTEL_JITEVENTS
201 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
202 OFF)
203
204if( LLVM_USE_INTEL_JITEVENTS )
205 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000206 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000207 message(FATAL_ERROR
208 "Intel JIT API support is available on Linux and Windows only.")
209 endif()
210endif( LLVM_USE_INTEL_JITEVENTS )
211
212option(LLVM_USE_OPROFILE
213 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
214
Joel Jones54594f22012-12-13 15:25:07 +0000215# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000216if( LLVM_USE_OPROFILE )
217 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
218 message(FATAL_ERROR "OProfile support is available on Linux only.")
219 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
220endif( LLVM_USE_OPROFILE )
221
Alexey Samsonov75789a22013-03-26 07:49:46 +0000222set(LLVM_USE_SANITIZER "" CACHE STRING
223 "Define the sanitizer used to build binaries and tests.")
224
Eric Christopher39878062013-07-30 21:44:10 +0000225option(LLVM_USE_SPLIT_DWARF
226 "Use -gsplit-dwarf when compiling llvm." OFF)
227
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000228# Define an option controlling whether we should build for 32-bit on 64-bit
229# platforms, where supported.
230if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
231 # TODO: support other platforms and toolchains.
232 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
233endif()
234
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000235# Define the default arguments to use with 'lit', and an option for the user to
236# override.
237set(LIT_ARGS_DEFAULT "-sv")
238if (MSVC OR XCODE)
239 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
240endif()
241set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
242
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000243# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
244if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000245 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
246endif()
247
Daniel Dunbar511e2962011-11-04 19:04:37 +0000248# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000249# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000250#
251# This is primarily to support building smaller or faster project files.
252option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
253option(LLVM_BUILD_TOOLS
254 "Build the LLVM tools. If OFF, just generate build targets." ON)
255
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000256option(LLVM_BUILD_RUNTIME
257 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000258option(LLVM_BUILD_EXAMPLES
259 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
260option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
261
262option(LLVM_BUILD_TESTS
263 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
264option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
265
Michael Gottesman4d35b902013-08-24 07:25:21 +0000266option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
267option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
268option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm documentation." OFF)
269
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000270# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000271# BEFORE this include, otherwise options will not be correctly set on
272# first cmake run
273include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000274
275# By default, we target the host, but this can be overridden at CMake
276# invocation time.
277set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
278 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000279set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000280
Oscar Fuentes1276e322011-03-01 22:31:19 +0000281include(HandleLLVMOptions)
282
Reid Kleckner63784ba2013-06-24 13:21:16 +0000283# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
284set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5 2.4)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000285include(FindPythonInterp)
286if( NOT PYTHONINTERP_FOUND )
287 message(FATAL_ERROR
288"Unable to find Python interpreter, required for builds and testing.
289
290Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
291endif()
292
Daniel Dunbar64371262011-11-05 06:30:03 +0000293######
294# LLVMBuild Integration
295#
296# We use llvm-build to generate all the data required by the CMake based
297# build system in one swoop:
298#
299# - We generate a file (a CMake fragment) in the object root which contains
300# all the definitions that are required by CMake.
301#
302# - We generate the library table used by llvm-config.
303#
304# - We generate the dependencies for the CMake fragment, so that we will
305# automatically reconfigure outselves.
306
307set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
308set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000309 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000310set(LLVMBUILDCMAKEFRAG
311 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000312
313# Create the list of optional components that are enabled
314if (LLVM_USE_INTEL_JITEVENTS)
315 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
316endif (LLVM_USE_INTEL_JITEVENTS)
317if (LLVM_USE_OPROFILE)
318 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
319endif (LLVM_USE_OPROFILE)
320
Daniel Dunbar64371262011-11-05 06:30:03 +0000321message(STATUS "Constructing LLVMBuild project information")
322execute_process(
323 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000324 --native-target "${LLVM_NATIVE_ARCH}"
325 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000326 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000327 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
328 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000329 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000330 ERROR_VARIABLE LLVMBUILDERRORS
331 OUTPUT_STRIP_TRAILING_WHITESPACE
332 ERROR_STRIP_TRAILING_WHITESPACE
333 RESULT_VARIABLE LLVMBUILDRESULT)
334
335# On Win32, CMake doesn't properly handle piping the default output/error
336# streams into the GUI console. So, we explicitly catch and report them.
337if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
338 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
339endif()
340if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
341 message(FATAL_ERROR
342 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
343endif()
344
345# Include the generated CMake fragment. This will define properties from the
346# LLVMBuild files in a format which is easy to consume from CMake, and will add
347# the dependencies so that CMake will reconfigure properly when the LLVMBuild
348# files change.
349include(${LLVMBUILDCMAKEFRAG})
350
351######
352
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000353# Configure all of the various header file fragments LLVM uses which depend on
354# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000355set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000356set(LLVM_ENUM_ASM_PRINTERS "")
357set(LLVM_ENUM_ASM_PARSERS "")
358set(LLVM_ENUM_DISASSEMBLERS "")
359foreach(t ${LLVM_TARGETS_TO_BUILD})
360 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000361
362 list(FIND LLVM_ALL_TARGETS ${t} idx)
363 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
364 if( idx LESS 0 AND idy LESS 0 )
365 message(FATAL_ERROR "The target `${t}' does not exist.
366 It should be one of\n${LLVM_ALL_TARGETS}")
367 else()
368 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
369 endif()
370
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000371 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
372 if( asmp_file )
373 set(LLVM_ENUM_ASM_PRINTERS
374 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
375 endif()
376 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
377 set(LLVM_ENUM_ASM_PARSERS
378 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
379 endif()
380 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
381 set(LLVM_ENUM_DISASSEMBLERS
382 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
383 endif()
384endforeach(t)
385
386# Produce the target definition files, which provide a way for clients to easily
387# include various classes of targets.
388configure_file(
389 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
390 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
391 )
392configure_file(
393 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
394 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
395 )
396configure_file(
397 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
398 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
399 )
400configure_file(
401 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
402 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
403 )
404
405# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000406configure_file(
407 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
408 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000409configure_file(
410 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
411 ${LLVM_BINARY_DIR}/include/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000412configure_file(
413 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
414 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000415
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000416set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
417set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
418set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
419
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000420set(CMAKE_INCLUDE_CURRENT_DIR ON)
421
Oscar Fuentes2500aae2008-10-29 02:33:15 +0000422include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000423
David Chisnall79450132013-02-14 15:40:44 +0000424if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
425 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
426 # with libxml2, iconv.h, etc., we must add /usr/local paths.
427 include_directories("/usr/local/include")
428 link_directories("/usr/local/lib")
429endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
430
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000431if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000432 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000433endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
434
Rafael Espindola76f92272013-04-04 01:01:32 +0000435# Make sure we don't get -rdynamic in every binary. For those that need it,
436# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
437set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
438
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000439include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000440include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000441
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000442if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000443 # People report that -O3 is unreliable on MinGW. The traditional
444 # build also uses -O2 for that reason:
445 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
446endif()
447
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000448# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000449add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000450add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000451
Oscar Fuentese352ca02008-11-10 01:32:14 +0000452add_subdirectory(utils/TableGen)
453
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000454add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000455
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000456add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000457
Douglas Gregor289dfc52009-07-20 18:30:25 +0000458add_subdirectory(utils/FileCheck)
Michael J. Spencer01639a42010-12-09 17:54:44 +0000459add_subdirectory(utils/FileUpdate)
Daniel Dunbar00dd4482009-09-24 06:23:57 +0000460add_subdirectory(utils/count)
461add_subdirectory(utils/not)
Michael J. Spencer885611b2010-09-13 17:52:38 +0000462add_subdirectory(utils/llvm-lit)
Michael J. Spencer22120c42012-04-03 23:09:22 +0000463add_subdirectory(utils/yaml-bench)
Douglas Gregor289dfc52009-07-20 18:30:25 +0000464
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000465add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000466
Oscar Fuentesbf030842010-09-25 20:43:06 +0000467if( LLVM_INCLUDE_TOOLS )
468 add_subdirectory(tools)
469endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000470
Oscar Fuentesbf030842010-09-25 20:43:06 +0000471if( LLVM_INCLUDE_EXAMPLES )
472 add_subdirectory(examples)
473endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000474
Oscar Fuentesbf030842010-09-25 20:43:06 +0000475if( LLVM_INCLUDE_TESTS )
476 add_subdirectory(test)
477 add_subdirectory(utils/unittest)
478 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000479 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000480 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000481 # Windows.
482 add_subdirectory(utils/KillTheDoctor)
483 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000484
485 # Add a global check rule now that all subdirectories have been traversed
486 # and we know the total set of lit testsuites.
487 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
488 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
489 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
490 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
491 add_lit_target(check-all
492 "Running all regression tests"
493 ${LLVM_LIT_TESTSUITES}
494 PARAMS ${LLVM_LIT_PARAMS}
495 DEPENDS ${LLVM_LIT_DEPENDS}
496 ARGS ${LLVM_LIT_EXTRA_ARGS}
497 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000498endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000499
Michael Gottesman4d35b902013-08-24 07:25:21 +0000500if (LLVM_INCLUDE_DOCS)
501 add_subdirectory(docs)
502endif()
503
Oscar Fuentesa389c582010-08-09 03:26:43 +0000504add_subdirectory(cmake/modules)
505
Hans Wennborg16546272013-08-24 00:20:36 +0000506if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
507 install(DIRECTORY include/
508 DESTINATION include
509 FILES_MATCHING
510 PATTERN "*.def"
511 PATTERN "*.h"
512 PATTERN "*.td"
513 PATTERN "*.inc"
514 PATTERN "LICENSE.TXT"
515 PATTERN ".svn" EXCLUDE
516 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000517
Hans Wennborg16546272013-08-24 00:20:36 +0000518 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
519 DESTINATION include
520 FILES_MATCHING
521 PATTERN "*.def"
522 PATTERN "*.h"
523 PATTERN "*.gen"
524 PATTERN "*.inc"
525 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
526 PATTERN "CMakeFiles" EXCLUDE
527 PATTERN ".svn" EXCLUDE
528 )
529endif()
530
NAKAMURA Takumi148b62c2010-11-19 03:19:18 +0000531# Workaround for MSVS10 to avoid the Dialog Hell
532# FIXME: This could be removed with future version of CMake.
533if(MSVC_VERSION EQUAL 1600)
534 set(LLVM_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/LLVM.sln")
535 if( EXISTS "${LLVM_SLN_FILENAME}" )
536 file(APPEND "${LLVM_SLN_FILENAME}" "\n# This should be regenerated!\n")
537 endif()
538endif()