blob: 0d6eead42f671944f9229aeb19257014596f3bce [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
Chandler Carruth5aad86a2014-01-13 22:05:20 +00003cmake_minimum_required(VERSION 2.8.8)
NAKAMURA Takumi9cd9ad62014-02-26 06:45:11 +00004
5# FIXME: It may be removed when we use 2.8.12.
6if(CMAKE_VERSION VERSION_LESS 2.8.12)
7 # Invalidate a couple of keywords.
8 set(cmake_2_8_12_INTERFACE)
9 set(cmake_2_8_12_PRIVATE)
10else()
11 # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries().
12 set(cmake_2_8_12_INTERFACE INTERFACE)
13 set(cmake_2_8_12_PRIVATE PRIVATE)
14 if(POLICY CMP0022)
15 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
16 endif()
17endif()
18
NAKAMURA Takumi85d65ff2014-02-02 16:59:36 +000019project(LLVM)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000020
Oscar Fuentes052c23c2010-08-03 17:28:09 +000021# Add path for custom modules
22set(CMAKE_MODULE_PATH
23 ${CMAKE_MODULE_PATH}
24 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
25 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
26 )
27
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000028set(LLVM_VERSION_MAJOR 3)
NAKAMURA Takumia5997c42013-11-20 13:11:48 +000029set(LLVM_VERSION_MINOR 5)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000030set(LLVM_VERSION_PATCH 0)
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000031
Hans Wennborg09d108b2013-11-21 22:47:21 +000032if (NOT PACKAGE_VERSION)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000033 set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}svn")
Hans Wennborg09d108b2013-11-21 22:47:21 +000034endif()
Oscar Fuentes70640352010-12-20 09:47:13 +000035
Hans Wennborg16546272013-08-24 00:20:36 +000036option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
37
Manuel Klimek13cfa002012-05-09 15:10:54 +000038option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
39if ( LLVM_USE_FOLDERS )
40 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
41endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +000042
Oscar Fuentes052c23c2010-08-03 17:28:09 +000043include(VersionFromVCS)
Oscar Fuentes70640352010-12-20 09:47:13 +000044
45option(LLVM_APPEND_VC_REV
46 "Append the version control system revision id to LLVM version" OFF)
47
48if( LLVM_APPEND_VC_REV )
49 add_version_info_from_vcs(PACKAGE_VERSION)
50endif()
Oscar Fuentes052c23c2010-08-03 17:28:09 +000051
Dylan Noblesmith67c49702011-12-18 18:50:16 +000052set(PACKAGE_NAME LLVM)
Chris Lattnerff2d99d2009-01-28 17:49:03 +000053set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith67c49702011-12-18 18:50:16 +000054set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000055
NAKAMURA Takumif0a1ab82014-01-13 05:25:13 +000056set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING
57 "Default URL where bug reports are to be submitted.")
58
Reid Klecknerc974f092013-08-29 22:09:43 +000059# Configure CPack.
Hans Wennborg09d108b2013-11-21 22:47:21 +000060set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +000061set(CPACK_PACKAGE_VENDOR "LLVM")
62set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
63set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
Tom Stellarde6ba81d2014-03-03 15:22:00 +000064set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH})
Hans Wennborg09d108b2013-11-21 22:47:21 +000065set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION})
Reid Klecknerc974f092013-08-29 22:09:43 +000066set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
67if(WIN32 AND NOT UNIX)
Hans Wennborg09d108b2013-11-21 22:47:21 +000068 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +000069 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Hans Wennborga3c3b812014-03-27 20:48:37 +000070 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
71 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
Reid Klecknerc974f092013-08-29 22:09:43 +000072 set(CPACK_NSIS_MODIFY_PATH "ON")
73 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
74 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
75 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
76 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
77 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
78endif()
79include(CPack)
80
Daniel Dunbarad3946a2011-11-04 19:04:39 +000081# Sanity check our source directory to make sure that we are not trying to
82# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
83# sure that we don't have any stray generated files lying around in the tree
84# (which would end up getting picked up by header search, instead of the correct
85# versions).
Oscar Fuentesa5f83562008-11-14 03:43:18 +000086if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
87 message(FATAL_ERROR "In-source builds are not allowed.
88CMake would overwrite the makefiles distributed with LLVM.
89Please create a directory and run cmake from there, passing the path
90to this source directory as the last argument.
91This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
92Please delete them.")
93endif()
Daniel Dunbarad3946a2011-11-04 19:04:39 +000094if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
95 file(GLOB_RECURSE
96 tablegenned_files_on_include_dir
97 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
98 file(GLOB_RECURSE
99 tablegenned_files_on_lib_dir
100 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
101 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
102 message(FATAL_ERROR "Apparently there is a previous in-source build,
103probably as the result of running `configure' and `make' on
104${CMAKE_CURRENT_SOURCE_DIR}.
105This may cause problems. The suspicious files are:
106${tablegenned_files_on_lib_dir}
107${tablegenned_files_on_include_dir}
108Please clean the source directory.")
109 endif()
110endif()
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000111
Oscar Fuentes61338132009-06-03 15:11:25 +0000112string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
113
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000114# They are used as destination of target generators.
115set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
116set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib)
117
118# Each of them corresponds to llvm-config's.
NAKAMURA Takumice78b802014-01-19 12:52:10 +0000119set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
120set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000121set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
122set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
123set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
124
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000125set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000126set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentes46fed3b2009-06-12 02:49:53 +0000127set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000128
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000129set(LLVM_ALL_TARGETS
Tim Northover3b0846e2014-05-24 12:50:23 +0000130 AArch64
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000131 ARM
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000132 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000133 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000134 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000135 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000136 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000137 PowerPC
Rafael Espindolaf6474d22013-05-22 00:35:47 +0000138 R600
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000139 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000140 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000141 X86
142 XCore
143 )
144
Oscar Fuentes465f9362011-03-23 17:42:13 +0000145# List of targets with JIT support:
Tim Northover3b0846e2014-05-24 12:50:23 +0000146set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000147
Tim Northover865f4bc2013-04-15 11:53:05 +0000148set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000149 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000150
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000151set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
152 CACHE STRING "Semicolon-separated list of experimental targets to build.")
153
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000154option(BUILD_SHARED_LIBS
155 "Build all libraries as shared libraries instead of static" OFF)
156
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000157option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
158if(LLVM_ENABLE_TIMESTAMPS)
159 set(ENABLE_TIMESTAMPS 1)
160endif()
161
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000162option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
163if(LLVM_ENABLE_BACKTRACES)
164 set(ENABLE_BACKTRACES 1)
165endif()
166
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000167option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
168if(LLVM_ENABLE_CRASH_OVERRIDES)
169 set(ENABLE_CRASH_OVERRIDES 1)
170endif()
171
Oscar Fuentes64955952011-01-21 15:42:54 +0000172option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
173set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
174set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
175
Sebastian Pop82622dc2012-08-08 18:04:45 +0000176set(LLVM_TARGET_ARCH "host"
177 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000178
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000179option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000180
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000181option(LLVM_ENABLE_THREADS "Use threads if available." ON)
182
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000183option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
184
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000185if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
186 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
187endif()
188
Victor Oliveira18023e42012-08-15 22:35:36 +0000189set(LLVM_TARGETS_TO_BUILD
190 ${LLVM_TARGETS_TO_BUILD}
191 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000192list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000193
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000194include(AddLLVMDefinitions)
195
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000196option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000197
Oscar Fuentes1276e322011-03-01 22:31:19 +0000198# MSVC has a gazillion warnings with this.
199if( MSVC )
200 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
NAKAMURA Takumi692d1982014-04-14 21:58:19 +0000201else()
Oscar Fuentes1276e322011-03-01 22:31:19 +0000202 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
203endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000204
Chandler Carruth25eacf72014-03-01 03:16:07 +0000205option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
Jean-Daniel Dupasedad1b42014-01-06 18:27:27 +0000206option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Oscar Fuentes1276e322011-03-01 22:31:19 +0000207option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
208option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000209
Duncan Sands80f122f2013-07-17 09:34:51 +0000210if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000211 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
212else()
213 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000214endif()
215
Chandler Carruth83885972014-01-13 22:21:34 +0000216option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
217 "Set to ON to force using an old, unsupported host toolchain." OFF)
218
Eli Bendersky5262ad22012-03-13 08:33:15 +0000219option(LLVM_USE_INTEL_JITEVENTS
220 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
221 OFF)
222
223if( LLVM_USE_INTEL_JITEVENTS )
224 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000225 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000226 message(FATAL_ERROR
227 "Intel JIT API support is available on Linux and Windows only.")
228 endif()
229endif( LLVM_USE_INTEL_JITEVENTS )
230
231option(LLVM_USE_OPROFILE
232 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
233
Joel Jones54594f22012-12-13 15:25:07 +0000234# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000235if( LLVM_USE_OPROFILE )
236 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
237 message(FATAL_ERROR "OProfile support is available on Linux only.")
238 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
239endif( LLVM_USE_OPROFILE )
240
Alexey Samsonov75789a22013-03-26 07:49:46 +0000241set(LLVM_USE_SANITIZER "" CACHE STRING
242 "Define the sanitizer used to build binaries and tests.")
243
Eric Christopher39878062013-07-30 21:44:10 +0000244option(LLVM_USE_SPLIT_DWARF
245 "Use -gsplit-dwarf when compiling llvm." OFF)
246
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000247# Define an option controlling whether we should build for 32-bit on 64-bit
248# platforms, where supported.
249if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
250 # TODO: support other platforms and toolchains.
251 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
252endif()
253
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000254# Define the default arguments to use with 'lit', and an option for the user to
255# override.
256set(LIT_ARGS_DEFAULT "-sv")
257if (MSVC OR XCODE)
258 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
259endif()
260set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
261
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000262# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
263if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000264 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
265endif()
266
Daniel Dunbar511e2962011-11-04 19:04:37 +0000267# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000268# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000269#
270# This is primarily to support building smaller or faster project files.
271option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
272option(LLVM_BUILD_TOOLS
273 "Build the LLVM tools. If OFF, just generate build targets." ON)
274
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000275option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
276
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000277option(LLVM_BUILD_RUNTIME
278 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000279option(LLVM_BUILD_EXAMPLES
280 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
281option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
282
283option(LLVM_BUILD_TESTS
284 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
285option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
286
Michael Gottesman4d35b902013-08-24 07:25:21 +0000287option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
288option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Reid Kleckner9f5eb632014-04-18 21:45:25 +0000289option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
290option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman4d35b902013-08-24 07:25:21 +0000291
Alexey Samsonovf431a832014-02-27 08:59:01 +0000292option (LLVM_BUILD_EXTERNAL_COMPILER_RT
293 "Build compiler-rt as an external project." OFF)
294
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000295# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000296# BEFORE this include, otherwise options will not be correctly set on
297# first cmake run
298include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000299
300# By default, we target the host, but this can be overridden at CMake
301# invocation time.
302set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
303 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000304set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000305
Oscar Fuentes1276e322011-03-01 22:31:19 +0000306include(HandleLLVMOptions)
307
Reid Kleckner63784ba2013-06-24 13:21:16 +0000308# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Bill Wendling8edd8f92013-10-28 21:22:23 +0000309set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000310include(FindPythonInterp)
311if( NOT PYTHONINTERP_FOUND )
312 message(FATAL_ERROR
313"Unable to find Python interpreter, required for builds and testing.
314
315Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
316endif()
317
Daniel Dunbar64371262011-11-05 06:30:03 +0000318######
319# LLVMBuild Integration
320#
321# We use llvm-build to generate all the data required by the CMake based
322# build system in one swoop:
323#
324# - We generate a file (a CMake fragment) in the object root which contains
325# all the definitions that are required by CMake.
326#
327# - We generate the library table used by llvm-config.
328#
329# - We generate the dependencies for the CMake fragment, so that we will
330# automatically reconfigure outselves.
331
332set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
333set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000334 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000335set(LLVMBUILDCMAKEFRAG
336 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000337
338# Create the list of optional components that are enabled
339if (LLVM_USE_INTEL_JITEVENTS)
340 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
341endif (LLVM_USE_INTEL_JITEVENTS)
342if (LLVM_USE_OPROFILE)
343 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
344endif (LLVM_USE_OPROFILE)
345
Daniel Dunbar64371262011-11-05 06:30:03 +0000346message(STATUS "Constructing LLVMBuild project information")
347execute_process(
348 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000349 --native-target "${LLVM_NATIVE_ARCH}"
350 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000351 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000352 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
353 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000354 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000355 ERROR_VARIABLE LLVMBUILDERRORS
356 OUTPUT_STRIP_TRAILING_WHITESPACE
357 ERROR_STRIP_TRAILING_WHITESPACE
358 RESULT_VARIABLE LLVMBUILDRESULT)
359
360# On Win32, CMake doesn't properly handle piping the default output/error
361# streams into the GUI console. So, we explicitly catch and report them.
362if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
363 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
364endif()
365if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
366 message(FATAL_ERROR
367 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
368endif()
369
370# Include the generated CMake fragment. This will define properties from the
371# LLVMBuild files in a format which is easy to consume from CMake, and will add
372# the dependencies so that CMake will reconfigure properly when the LLVMBuild
373# files change.
374include(${LLVMBUILDCMAKEFRAG})
375
376######
377
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000378# Configure all of the various header file fragments LLVM uses which depend on
379# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000380set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000381set(LLVM_ENUM_ASM_PRINTERS "")
382set(LLVM_ENUM_ASM_PARSERS "")
383set(LLVM_ENUM_DISASSEMBLERS "")
384foreach(t ${LLVM_TARGETS_TO_BUILD})
385 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000386
387 list(FIND LLVM_ALL_TARGETS ${t} idx)
388 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
389 if( idx LESS 0 AND idy LESS 0 )
390 message(FATAL_ERROR "The target `${t}' does not exist.
391 It should be one of\n${LLVM_ALL_TARGETS}")
392 else()
393 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
394 endif()
395
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000396 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
397 if( asmp_file )
398 set(LLVM_ENUM_ASM_PRINTERS
399 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
400 endif()
401 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
402 set(LLVM_ENUM_ASM_PARSERS
403 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
404 endif()
405 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
406 set(LLVM_ENUM_DISASSEMBLERS
407 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
408 endif()
409endforeach(t)
410
411# Produce the target definition files, which provide a way for clients to easily
412# include various classes of targets.
413configure_file(
414 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000415 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000416 )
417configure_file(
418 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000419 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000420 )
421configure_file(
422 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000423 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000424 )
425configure_file(
426 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000427 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000428 )
429
430# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000431configure_file(
432 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000433 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000434configure_file(
435 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000436 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000437configure_file(
438 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000439 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000440
NAKAMURA Takumi0ec65f12014-01-19 12:47:22 +0000441# They are not referenced. See set_output_directory().
442set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000443set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
444set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
445
Rafael Espindola478873c2014-02-22 13:29:31 +0000446set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
447if (APPLE)
Rafael Espindolac80968e2014-02-28 13:48:03 +0000448 set(CMAKE_INSTALL_NAME_DIR "@rpath")
Rafael Espindola478873c2014-02-22 13:29:31 +0000449 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
450else(UNIX)
Bernard Ogden301bafe2014-02-24 22:23:43 +0000451 if(NOT DEFINED CMAKE_INSTALL_RPATH)
452 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib")
Ed Maste644aef82014-03-09 18:48:45 +0000453 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
454 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
455 endif()
Bernard Ogden301bafe2014-02-24 22:23:43 +0000456 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
Rafael Espindola478873c2014-02-22 13:29:31 +0000457endif()
Rafael Espindola6ad1b3f2013-12-19 23:13:58 +0000458
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000459set(CMAKE_INCLUDE_CURRENT_DIR ON)
460
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000461include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000462
David Chisnall79450132013-02-14 15:40:44 +0000463if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
464 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
465 # with libxml2, iconv.h, etc., we must add /usr/local paths.
466 include_directories("/usr/local/include")
467 link_directories("/usr/local/lib")
468endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
469
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000470if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000471 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000472endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
473
Rafael Espindola76f92272013-04-04 01:01:32 +0000474# Make sure we don't get -rdynamic in every binary. For those that need it,
475# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
476set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
477
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000478include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000479include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000480
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000481if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000482 # People report that -O3 is unreliable on MinGW. The traditional
483 # build also uses -O2 for that reason:
484 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
485endif()
486
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000487# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000488add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000489add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000490
Oscar Fuentese352ca02008-11-10 01:32:14 +0000491add_subdirectory(utils/TableGen)
492
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000493add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000494
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000495add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000496
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000497if( LLVM_INCLUDE_UTILS )
498 add_subdirectory(utils/FileCheck)
499 add_subdirectory(utils/FileUpdate)
Alexey Samsonove825c852014-05-07 16:54:00 +0000500 add_subdirectory(utils/PerfectShuffle)
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000501 add_subdirectory(utils/count)
502 add_subdirectory(utils/not)
503 add_subdirectory(utils/llvm-lit)
504 add_subdirectory(utils/yaml-bench)
505else()
506 if ( LLVM_INCLUDE_TESTS )
507 message(FATAL_ERROR "Including tests when not building utils will not work.
508 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
509 endif()
510endif()
Douglas Gregor289dfc52009-07-20 18:30:25 +0000511
NAKAMURA Takumi5a0234f2014-01-31 17:32:46 +0000512if(LLVM_INCLUDE_TESTS)
513 add_subdirectory(utils/unittest)
514endif()
515
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000516add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000517
Sebastian Popf7d02d42014-03-11 22:42:07 +0000518option(WITH_POLLY "Build LLVM with Polly" ON)
Sebastian Popa59005b2014-03-14 04:04:14 +0000519option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
520
Sebastian Popf7d02d42014-03-11 22:42:07 +0000521if(WITH_POLLY)
522 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
523 set(WITH_POLLY OFF)
524 endif()
525endif(WITH_POLLY)
526
Oscar Fuentesbf030842010-09-25 20:43:06 +0000527if( LLVM_INCLUDE_TOOLS )
528 add_subdirectory(tools)
529endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000530
Oscar Fuentesbf030842010-09-25 20:43:06 +0000531if( LLVM_INCLUDE_EXAMPLES )
532 add_subdirectory(examples)
533endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000534
Oscar Fuentesbf030842010-09-25 20:43:06 +0000535if( LLVM_INCLUDE_TESTS )
536 add_subdirectory(test)
Oscar Fuentesbf030842010-09-25 20:43:06 +0000537 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000538 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000539 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000540 # Windows.
541 add_subdirectory(utils/KillTheDoctor)
542 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000543
544 # Add a global check rule now that all subdirectories have been traversed
545 # and we know the total set of lit testsuites.
546 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
547 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
548 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
549 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
550 add_lit_target(check-all
551 "Running all regression tests"
552 ${LLVM_LIT_TESTSUITES}
553 PARAMS ${LLVM_LIT_PARAMS}
554 DEPENDS ${LLVM_LIT_DEPENDS}
555 ARGS ${LLVM_LIT_EXTRA_ARGS}
556 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000557endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000558
Michael Gottesman4d35b902013-08-24 07:25:21 +0000559if (LLVM_INCLUDE_DOCS)
560 add_subdirectory(docs)
561endif()
562
Oscar Fuentesa389c582010-08-09 03:26:43 +0000563add_subdirectory(cmake/modules)
564
Hans Wennborg16546272013-08-24 00:20:36 +0000565if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000566 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg16546272013-08-24 00:20:36 +0000567 DESTINATION include
568 FILES_MATCHING
569 PATTERN "*.def"
570 PATTERN "*.h"
571 PATTERN "*.td"
572 PATTERN "*.inc"
573 PATTERN "LICENSE.TXT"
574 PATTERN ".svn" EXCLUDE
575 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000576
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000577 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg16546272013-08-24 00:20:36 +0000578 DESTINATION include
579 FILES_MATCHING
580 PATTERN "*.def"
581 PATTERN "*.h"
582 PATTERN "*.gen"
583 PATTERN "*.inc"
584 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
585 PATTERN "CMakeFiles" EXCLUDE
586 PATTERN ".svn" EXCLUDE
587 )
588endif()