blob: b4eac034ae79d69b3561ab685569aaab15023184 [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)
Hans Wennborg831f0582014-07-28 22:10:52 +000029set(LLVM_VERSION_MINOR 6)
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)
NAKAMURA Takumi6c5fbbc2014-07-04 04:23:26 +0000117if(WIN32 OR CYGWIN)
118 # DLL platform -- put DLLs into bin.
119 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
120else()
121 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
122endif()
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000123
124# Each of them corresponds to llvm-config's.
NAKAMURA Takumice78b802014-01-19 12:52:10 +0000125set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
126set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000127set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
128set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
129set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
130
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000131set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000132set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentes46fed3b2009-06-12 02:49:53 +0000133set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000134
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000135set(LLVM_ALL_TARGETS
Tim Northover3b0846e2014-05-24 12:50:23 +0000136 AArch64
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000137 ARM
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000138 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000139 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000140 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000141 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000142 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000143 PowerPC
Rafael Espindolaf6474d22013-05-22 00:35:47 +0000144 R600
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000145 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000146 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000147 X86
148 XCore
149 )
150
Oscar Fuentes465f9362011-03-23 17:42:13 +0000151# List of targets with JIT support:
Tim Northover3b0846e2014-05-24 12:50:23 +0000152set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000153
Tim Northover865f4bc2013-04-15 11:53:05 +0000154set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000155 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000156
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000157set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
158 CACHE STRING "Semicolon-separated list of experimental targets to build.")
159
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000160option(BUILD_SHARED_LIBS
161 "Build all libraries as shared libraries instead of static" OFF)
162
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000163option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
164if(LLVM_ENABLE_TIMESTAMPS)
165 set(ENABLE_TIMESTAMPS 1)
166endif()
167
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000168option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
169if(LLVM_ENABLE_BACKTRACES)
170 set(ENABLE_BACKTRACES 1)
171endif()
172
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000173option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
174if(LLVM_ENABLE_CRASH_OVERRIDES)
175 set(ENABLE_CRASH_OVERRIDES 1)
176endif()
177
Oscar Fuentes64955952011-01-21 15:42:54 +0000178option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
179set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
180set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
181
Sebastian Pop82622dc2012-08-08 18:04:45 +0000182set(LLVM_TARGET_ARCH "host"
183 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000184
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000185option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000186
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000187option(LLVM_ENABLE_THREADS "Use threads if available." ON)
188
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000189option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
190
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000191if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
192 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
193endif()
194
Victor Oliveira18023e42012-08-15 22:35:36 +0000195set(LLVM_TARGETS_TO_BUILD
196 ${LLVM_TARGETS_TO_BUILD}
197 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000198list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000199
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000200include(AddLLVMDefinitions)
201
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000202option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000203
Oscar Fuentes1276e322011-03-01 22:31:19 +0000204# MSVC has a gazillion warnings with this.
205if( MSVC )
206 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
NAKAMURA Takumi692d1982014-04-14 21:58:19 +0000207else()
Oscar Fuentes1276e322011-03-01 22:31:19 +0000208 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
209endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000210
Richard Smith2b91a7f2014-09-26 22:40:15 +0000211option(LLVM_ENABLE_MODULES "Compile with C++ modules enabled." OFF)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000212option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
Jean-Daniel Dupasedad1b42014-01-06 18:27:27 +0000213option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Oscar Fuentes1276e322011-03-01 22:31:19 +0000214option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
215option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000216
Duncan Sands80f122f2013-07-17 09:34:51 +0000217if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000218 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
219else()
220 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000221endif()
222
Chandler Carruth83885972014-01-13 22:21:34 +0000223option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
224 "Set to ON to force using an old, unsupported host toolchain." OFF)
225
Eli Bendersky5262ad22012-03-13 08:33:15 +0000226option(LLVM_USE_INTEL_JITEVENTS
227 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
228 OFF)
229
230if( LLVM_USE_INTEL_JITEVENTS )
231 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000232 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000233 message(FATAL_ERROR
234 "Intel JIT API support is available on Linux and Windows only.")
235 endif()
236endif( LLVM_USE_INTEL_JITEVENTS )
237
238option(LLVM_USE_OPROFILE
239 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
240
Joel Jones54594f22012-12-13 15:25:07 +0000241# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000242if( LLVM_USE_OPROFILE )
243 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Matt Arsenaultd31b63e2014-06-12 21:27:03 +0000244 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky5262ad22012-03-13 08:33:15 +0000245 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
246endif( LLVM_USE_OPROFILE )
247
Alexey Samsonov75789a22013-03-26 07:49:46 +0000248set(LLVM_USE_SANITIZER "" CACHE STRING
249 "Define the sanitizer used to build binaries and tests.")
250
Eric Christopher39878062013-07-30 21:44:10 +0000251option(LLVM_USE_SPLIT_DWARF
252 "Use -gsplit-dwarf when compiling llvm." OFF)
253
Alp Toker6ae079e2014-06-06 06:39:00 +0000254option(WITH_POLLY "Build LLVM with Polly" ON)
255option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
256
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000257# Define an option controlling whether we should build for 32-bit on 64-bit
258# platforms, where supported.
259if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
260 # TODO: support other platforms and toolchains.
261 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
262endif()
263
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000264# Define the default arguments to use with 'lit', and an option for the user to
265# override.
266set(LIT_ARGS_DEFAULT "-sv")
267if (MSVC OR XCODE)
268 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
269endif()
270set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
271
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000272# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
273if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000274 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
275endif()
276
Daniel Dunbar511e2962011-11-04 19:04:37 +0000277# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000278# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000279#
280# This is primarily to support building smaller or faster project files.
281option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
282option(LLVM_BUILD_TOOLS
283 "Build the LLVM tools. If OFF, just generate build targets." ON)
284
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000285option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
286
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000287option(LLVM_BUILD_RUNTIME
288 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000289option(LLVM_BUILD_EXAMPLES
290 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
291option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
292
293option(LLVM_BUILD_TESTS
294 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
295option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
296
Michael Gottesman4d35b902013-08-24 07:25:21 +0000297option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
298option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Reid Kleckner9f5eb632014-04-18 21:45:25 +0000299option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
300option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman4d35b902013-08-24 07:25:21 +0000301
Alexey Samsonovf431a832014-02-27 08:59:01 +0000302option (LLVM_BUILD_EXTERNAL_COMPILER_RT
303 "Build compiler-rt as an external project." OFF)
304
Chris Bienemanadffd012014-10-23 17:22:14 +0000305option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" OFF)
306
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000307# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000308# BEFORE this include, otherwise options will not be correctly set on
309# first cmake run
310include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000311
312# By default, we target the host, but this can be overridden at CMake
313# invocation time.
314set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
315 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000316set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000317
Oscar Fuentes1276e322011-03-01 22:31:19 +0000318include(HandleLLVMOptions)
319
Reid Kleckner63784ba2013-06-24 13:21:16 +0000320# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Bill Wendling8edd8f92013-10-28 21:22:23 +0000321set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000322include(FindPythonInterp)
323if( NOT PYTHONINTERP_FOUND )
324 message(FATAL_ERROR
325"Unable to find Python interpreter, required for builds and testing.
326
327Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
328endif()
329
Daniel Dunbar64371262011-11-05 06:30:03 +0000330######
331# LLVMBuild Integration
332#
333# We use llvm-build to generate all the data required by the CMake based
334# build system in one swoop:
335#
336# - We generate a file (a CMake fragment) in the object root which contains
337# all the definitions that are required by CMake.
338#
339# - We generate the library table used by llvm-config.
340#
341# - We generate the dependencies for the CMake fragment, so that we will
342# automatically reconfigure outselves.
343
344set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
345set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000346 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000347set(LLVMBUILDCMAKEFRAG
348 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000349
350# Create the list of optional components that are enabled
351if (LLVM_USE_INTEL_JITEVENTS)
352 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
353endif (LLVM_USE_INTEL_JITEVENTS)
354if (LLVM_USE_OPROFILE)
355 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
356endif (LLVM_USE_OPROFILE)
357
Daniel Dunbar64371262011-11-05 06:30:03 +0000358message(STATUS "Constructing LLVMBuild project information")
359execute_process(
360 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000361 --native-target "${LLVM_NATIVE_ARCH}"
362 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000363 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000364 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
365 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000366 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000367 ERROR_VARIABLE LLVMBUILDERRORS
368 OUTPUT_STRIP_TRAILING_WHITESPACE
369 ERROR_STRIP_TRAILING_WHITESPACE
370 RESULT_VARIABLE LLVMBUILDRESULT)
371
372# On Win32, CMake doesn't properly handle piping the default output/error
373# streams into the GUI console. So, we explicitly catch and report them.
374if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
375 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
376endif()
377if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
378 message(FATAL_ERROR
379 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
380endif()
381
382# Include the generated CMake fragment. This will define properties from the
383# LLVMBuild files in a format which is easy to consume from CMake, and will add
384# the dependencies so that CMake will reconfigure properly when the LLVMBuild
385# files change.
386include(${LLVMBUILDCMAKEFRAG})
387
388######
389
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000390# Configure all of the various header file fragments LLVM uses which depend on
391# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000392set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000393set(LLVM_ENUM_ASM_PRINTERS "")
394set(LLVM_ENUM_ASM_PARSERS "")
395set(LLVM_ENUM_DISASSEMBLERS "")
396foreach(t ${LLVM_TARGETS_TO_BUILD})
397 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000398
399 list(FIND LLVM_ALL_TARGETS ${t} idx)
400 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
401 if( idx LESS 0 AND idy LESS 0 )
402 message(FATAL_ERROR "The target `${t}' does not exist.
403 It should be one of\n${LLVM_ALL_TARGETS}")
404 else()
405 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
406 endif()
407
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000408 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
409 if( asmp_file )
410 set(LLVM_ENUM_ASM_PRINTERS
411 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
412 endif()
413 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
414 set(LLVM_ENUM_ASM_PARSERS
415 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
416 endif()
417 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
418 set(LLVM_ENUM_DISASSEMBLERS
419 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
420 endif()
421endforeach(t)
422
423# Produce the target definition files, which provide a way for clients to easily
424# include various classes of targets.
425configure_file(
426 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000427 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000428 )
429configure_file(
430 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000431 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000432 )
433configure_file(
434 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000435 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000436 )
437configure_file(
438 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000439 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000440 )
441
442# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000443configure_file(
444 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000445 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000446configure_file(
447 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000448 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000449configure_file(
450 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000451 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000452
NAKAMURA Takumi0ec65f12014-01-19 12:47:22 +0000453# They are not referenced. See set_output_directory().
454set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000455set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
456set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
457
Rafael Espindola478873c2014-02-22 13:29:31 +0000458set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
459if (APPLE)
Rafael Espindolac80968e2014-02-28 13:48:03 +0000460 set(CMAKE_INSTALL_NAME_DIR "@rpath")
Rafael Espindola478873c2014-02-22 13:29:31 +0000461 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
462else(UNIX)
Bernard Ogden301bafe2014-02-24 22:23:43 +0000463 if(NOT DEFINED CMAKE_INSTALL_RPATH)
464 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib")
Ed Maste644aef82014-03-09 18:48:45 +0000465 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
466 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
Viktor Kutuzov5e0db8b2014-08-01 19:23:15 +0000467 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin")
Ed Maste644aef82014-03-09 18:48:45 +0000468 endif()
Bernard Ogden301bafe2014-02-24 22:23:43 +0000469 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
Rafael Espindola478873c2014-02-22 13:29:31 +0000470endif()
Rafael Espindola6ad1b3f2013-12-19 23:13:58 +0000471
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000472set(CMAKE_INCLUDE_CURRENT_DIR ON)
473
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000474include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000475
Chris Bieneman50077412014-09-03 23:21:18 +0000476# when crosscompiling import the executable targets from a file
477if(CMAKE_CROSSCOMPILING)
478 include(CrossCompile)
479endif(CMAKE_CROSSCOMPILING)
480
David Chisnall79450132013-02-14 15:40:44 +0000481if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
482 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
483 # with libxml2, iconv.h, etc., we must add /usr/local paths.
484 include_directories("/usr/local/include")
485 link_directories("/usr/local/lib")
486endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
487
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000488if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000489 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000490endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
491
Rafael Espindola76f92272013-04-04 01:01:32 +0000492# Make sure we don't get -rdynamic in every binary. For those that need it,
493# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
494set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
495
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000496include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000497include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000498
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000499if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000500 # People report that -O3 is unreliable on MinGW. The traditional
501 # build also uses -O2 for that reason:
502 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
503endif()
504
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000505# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000506add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000507add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000508
Oscar Fuentese352ca02008-11-10 01:32:14 +0000509add_subdirectory(utils/TableGen)
510
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000511add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000512
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000513add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000514
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000515if( LLVM_INCLUDE_UTILS )
516 add_subdirectory(utils/FileCheck)
Alexey Samsonove825c852014-05-07 16:54:00 +0000517 add_subdirectory(utils/PerfectShuffle)
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000518 add_subdirectory(utils/count)
519 add_subdirectory(utils/not)
520 add_subdirectory(utils/llvm-lit)
521 add_subdirectory(utils/yaml-bench)
522else()
523 if ( LLVM_INCLUDE_TESTS )
524 message(FATAL_ERROR "Including tests when not building utils will not work.
525 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
526 endif()
527endif()
Douglas Gregor289dfc52009-07-20 18:30:25 +0000528
NAKAMURA Takumi5a0234f2014-01-31 17:32:46 +0000529if(LLVM_INCLUDE_TESTS)
530 add_subdirectory(utils/unittest)
531endif()
532
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000533add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000534
Sebastian Popf7d02d42014-03-11 22:42:07 +0000535if(WITH_POLLY)
536 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
537 set(WITH_POLLY OFF)
538 endif()
539endif(WITH_POLLY)
540
Oscar Fuentesbf030842010-09-25 20:43:06 +0000541if( LLVM_INCLUDE_TOOLS )
542 add_subdirectory(tools)
543endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000544
Oscar Fuentesbf030842010-09-25 20:43:06 +0000545if( LLVM_INCLUDE_EXAMPLES )
546 add_subdirectory(examples)
547endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000548
Oscar Fuentesbf030842010-09-25 20:43:06 +0000549if( LLVM_INCLUDE_TESTS )
550 add_subdirectory(test)
Oscar Fuentesbf030842010-09-25 20:43:06 +0000551 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000552 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000553 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000554 # Windows.
555 add_subdirectory(utils/KillTheDoctor)
556 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000557
558 # Add a global check rule now that all subdirectories have been traversed
559 # and we know the total set of lit testsuites.
560 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
561 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
562 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
563 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
564 add_lit_target(check-all
565 "Running all regression tests"
566 ${LLVM_LIT_TESTSUITES}
567 PARAMS ${LLVM_LIT_PARAMS}
568 DEPENDS ${LLVM_LIT_DEPENDS}
569 ARGS ${LLVM_LIT_EXTRA_ARGS}
570 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000571endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000572
Michael Gottesman4d35b902013-08-24 07:25:21 +0000573if (LLVM_INCLUDE_DOCS)
574 add_subdirectory(docs)
575endif()
576
Oscar Fuentesa389c582010-08-09 03:26:43 +0000577add_subdirectory(cmake/modules)
578
Hans Wennborg16546272013-08-24 00:20:36 +0000579if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000580 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg16546272013-08-24 00:20:36 +0000581 DESTINATION include
582 FILES_MATCHING
583 PATTERN "*.def"
584 PATTERN "*.h"
585 PATTERN "*.td"
586 PATTERN "*.inc"
587 PATTERN "LICENSE.TXT"
588 PATTERN ".svn" EXCLUDE
589 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000590
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000591 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg16546272013-08-24 00:20:36 +0000592 DESTINATION include
593 FILES_MATCHING
594 PATTERN "*.def"
595 PATTERN "*.h"
596 PATTERN "*.gen"
597 PATTERN "*.inc"
598 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
599 PATTERN "CMakeFiles" EXCLUDE
Alp Toker65faa292014-06-12 11:25:18 +0000600 PATTERN "config.h" EXCLUDE
Hans Wennborg16546272013-08-24 00:20:36 +0000601 PATTERN ".svn" EXCLUDE
602 )
603endif()