blob: b9fca2a386d19f414e2ef4a0f7f557605ce06d56 [file] [log] [blame]
Oscar Fuentes34fc5172009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Stephen Hines36b56882014-04-23 16:57:46 -07003cmake_minimum_required(VERSION 2.8.8)
4
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
Cedric Venet1d083f42008-10-30 21:22:00 +000019project(LLVM)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000020
Oscar Fuentesee993172010-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 Noblesmithfde82372012-02-13 18:48:10 +000028set(LLVM_VERSION_MAJOR 3)
Stephen Hines36b56882014-04-23 16:57:46 -070029set(LLVM_VERSION_MINOR 5)
30set(LLVM_VERSION_PATCH 0)
Dylan Noblesmithfde82372012-02-13 18:48:10 +000031
Bill Wendlingd1b770d2013-11-25 18:34:26 +000032if (NOT PACKAGE_VERSION)
Stephen Hines36b56882014-04-23 16:57:46 -070033 set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}svn")
Bill Wendlingd1b770d2013-11-25 18:34:26 +000034endif()
Oscar Fuentes784a1762010-12-20 09:47:13 +000035
Hans Wennborg2982c082013-08-24 00:20:36 +000036option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
37
Manuel Klimek80fa4722012-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 Fuentes0b85d072011-02-20 22:06:10 +000042
Oscar Fuentesee993172010-08-03 17:28:09 +000043include(VersionFromVCS)
Oscar Fuentes784a1762010-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 Fuentesee993172010-08-03 17:28:09 +000051
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000052set(PACKAGE_NAME LLVM)
Chris Lattner8c46e852009-01-28 17:49:03 +000053set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000054set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000055
Stephen Hines36b56882014-04-23 16:57:46 -070056set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING
57 "Default URL where bug reports are to be submitted.")
58
Reid Kleckner002062b2013-08-29 22:09:43 +000059# Configure CPack.
Bill Wendlingd1b770d2013-11-25 18:34:26 +000060set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM")
Reid Kleckner002062b2013-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})
Stephen Hines36b56882014-04-23 16:57:46 -070064set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH})
Bill Wendlingd1b770d2013-11-25 18:34:26 +000065set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION})
Reid Kleckner002062b2013-08-29 22:09:43 +000066set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
67if(WIN32 AND NOT UNIX)
Bill Wendlingd1b770d2013-11-25 18:34:26 +000068 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Kleckner002062b2013-08-29 22:09:43 +000069 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Stephen Hines36b56882014-04-23 16:57:46 -070070 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 Kleckner002062b2013-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 Dunbara0c8d2d2011-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 Fuentes6326a0d2008-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 Dunbara0c8d2d2011-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 Fuentes6326a0d2008-11-14 03:43:18 +0000111
Oscar Fuentes81a87552009-06-03 15:11:25 +0000112string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
113
Stephen Hines36b56882014-04-23 16:57:46 -0700114# 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)
Stephen Hinescd81d942014-07-21 00:45:20 -0700117if(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()
Stephen Hines36b56882014-04-23 16:57:46 -0700123
124# Each of them corresponds to llvm-config's.
125set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
126set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
127set(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 Fuentes3d01fc72008-09-22 01:08:49 +0000131set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Stephen Hines36b56882014-04-23 16:57:46 -0700132set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentesaf0f65f2009-06-12 02:49:53 +0000133set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000134
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000135set(LLVM_ALL_TARGETS
Tim Northover4c408402013-02-04 12:32:21 +0000136 AArch64
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000137 ARM
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000138 CppBackend
Tony Linthicumb4b54152011-12-12 21:14:40 +0000139 Hexagon
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000140 Mips
Richard Penningtona51984b2009-07-09 20:27:09 +0000141 MSP430
Justin Holewinski49683f32012-05-04 20:18:50 +0000142 NVPTX
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000143 PowerPC
Rafael Espindola059d3602013-05-22 00:35:47 +0000144 R600
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000145 Sparc
Ulrich Weigand9887cbe2013-05-06 16:23:07 +0000146 SystemZ
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000147 X86
148 XCore
149 )
150
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000151# List of targets with JIT support:
Stephen Hinesdce4a402014-05-29 02:49:00 -0700152set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000153
Tim Northovereaa752f2013-04-15 11:53:05 +0000154set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000155 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000156
Victor Oliveira0e80e182012-08-09 01:13:59 +0000157set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
158 CACHE STRING "Semicolon-separated list of experimental targets to build.")
159
Dylan Noblesmithbb7cd0c2012-02-01 14:49:39 +0000160option(BUILD_SHARED_LIBS
161 "Build all libraries as shared libraries instead of static" OFF)
162
Oscar Fuentes19823b12011-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 Kramer53347ed2012-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 Dunbare179b312013-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 Fuentes59693792011-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 Pop9469dd32012-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 Fuentesa9ff1392009-09-13 22:18:38 +0000184
Chandler Carruth8d8bdff2013-08-12 09:49:17 +0000185option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthf7364d52013-08-07 08:47:36 +0000186
Oscar Fuentes4b442832008-11-18 23:45:21 +0000187option(LLVM_ENABLE_THREADS "Use threads if available." ON)
188
Alexey Samsonovee03c942013-04-23 08:28:39 +0000189option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
190
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000191if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
192 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
193endif()
194
Victor Oliveira385401a2012-08-15 22:35:36 +0000195set(LLVM_TARGETS_TO_BUILD
196 ${LLVM_TARGETS_TO_BUILD}
197 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindola67295352013-05-22 02:45:28 +0000198list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira385401a2012-08-15 22:35:36 +0000199
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000200include(AddLLVMDefinitions)
201
Oscar Fuentes1e02bf02009-08-18 15:29:35 +0000202option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000203
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000204# MSVC has a gazillion warnings with this.
205if( MSVC )
206 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700207else()
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000208 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
209endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +0000210
Stephen Hines36b56882014-04-23 16:57:46 -0700211option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
212option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000213option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
214option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000215
Duncan Sandsa009d532013-07-17 09:34:51 +0000216if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000217 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
218else()
219 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000220endif()
221
Stephen Hines36b56882014-04-23 16:57:46 -0700222option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
223 "Set to ON to force using an old, unsupported host toolchain." OFF)
224
Eli Bendersky61b18512012-03-13 08:33:15 +0000225option(LLVM_USE_INTEL_JITEVENTS
226 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
227 OFF)
228
229if( LLVM_USE_INTEL_JITEVENTS )
230 # Verify we are on a supported platform
Andrew Kaylor770b97b2012-09-28 17:35:20 +0000231 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky61b18512012-03-13 08:33:15 +0000232 message(FATAL_ERROR
233 "Intel JIT API support is available on Linux and Windows only.")
234 endif()
235endif( LLVM_USE_INTEL_JITEVENTS )
236
237option(LLVM_USE_OPROFILE
238 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
239
Joel Jones1d3b7e72012-12-13 15:25:07 +0000240# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky61b18512012-03-13 08:33:15 +0000241if( LLVM_USE_OPROFILE )
242 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Stephen Hinescd81d942014-07-21 00:45:20 -0700243 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky61b18512012-03-13 08:33:15 +0000244 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
245endif( LLVM_USE_OPROFILE )
246
Alexey Samsonov777fccb2013-03-26 07:49:46 +0000247set(LLVM_USE_SANITIZER "" CACHE STRING
248 "Define the sanitizer used to build binaries and tests.")
249
Eric Christopher6aebd5f2013-07-30 21:44:10 +0000250option(LLVM_USE_SPLIT_DWARF
251 "Use -gsplit-dwarf when compiling llvm." OFF)
252
Stephen Hinescd81d942014-07-21 00:45:20 -0700253option(WITH_POLLY "Build LLVM with Polly" ON)
254option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
255
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000256# Define an option controlling whether we should build for 32-bit on 64-bit
257# platforms, where supported.
258if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
259 # TODO: support other platforms and toolchains.
260 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
261endif()
262
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000263# Define the default arguments to use with 'lit', and an option for the user to
264# override.
265set(LIT_ARGS_DEFAULT "-sv")
266if (MSVC OR XCODE)
267 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
268endif()
269set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
270
NAKAMURA Takumi08216782011-12-11 03:07:53 +0000271# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
272if( WIN32 AND NOT CYGWIN )
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000273 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
274endif()
275
Daniel Dunbar275f6862011-11-04 19:04:37 +0000276# Define options to control the inclusion and default build behavior for
Chandler Carruthdd5d86d2013-10-02 15:42:23 +0000277# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar275f6862011-11-04 19:04:37 +0000278#
279# This is primarily to support building smaller or faster project files.
280option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
281option(LLVM_BUILD_TOOLS
282 "Build the LLVM tools. If OFF, just generate build targets." ON)
283
Stephen Hines36b56882014-04-23 16:57:46 -0700284option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
285
Alexey Samsonov651c4672013-10-04 10:41:38 +0000286option(LLVM_BUILD_RUNTIME
287 "Build the LLVM runtime libraries." ON)
Daniel Dunbar275f6862011-11-04 19:04:37 +0000288option(LLVM_BUILD_EXAMPLES
289 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
290option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
291
292option(LLVM_BUILD_TESTS
293 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
294option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
295
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000296option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
297option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700298option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
299option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000300
Stephen Hines36b56882014-04-23 16:57:46 -0700301option (LLVM_BUILD_EXTERNAL_COMPILER_RT
302 "Build compiler-rt as an external project." OFF)
303
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000304# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000305# BEFORE this include, otherwise options will not be correctly set on
306# first cmake run
307include(config-ix)
Sebastian Popdf259882012-08-20 19:56:52 +0000308
309# By default, we target the host, but this can be overridden at CMake
310# invocation time.
311set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
312 "Default target for which LLVM will generate code." )
NAKAMURA Takumicbc478e2012-12-10 07:14:29 +0000313set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popdf259882012-08-20 19:56:52 +0000314
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000315include(HandleLLVMOptions)
316
Reid Klecknerdfad9e32013-06-24 13:21:16 +0000317# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Bill Wendling92978902013-10-28 21:22:23 +0000318set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5)
Daniel Dunbara54c8ea2011-11-04 23:04:05 +0000319include(FindPythonInterp)
320if( NOT PYTHONINTERP_FOUND )
321 message(FATAL_ERROR
322"Unable to find Python interpreter, required for builds and testing.
323
324Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
325endif()
326
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000327######
328# LLVMBuild Integration
329#
330# We use llvm-build to generate all the data required by the CMake based
331# build system in one swoop:
332#
333# - We generate a file (a CMake fragment) in the object root which contains
334# all the definitions that are required by CMake.
335#
336# - We generate the library table used by llvm-config.
337#
338# - We generate the dependencies for the CMake fragment, so that we will
339# automatically reconfigure outselves.
340
341set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
342set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000343 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000344set(LLVMBUILDCMAKEFRAG
345 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurd75493542012-05-07 19:38:40 +0000346
347# Create the list of optional components that are enabled
348if (LLVM_USE_INTEL_JITEVENTS)
349 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
350endif (LLVM_USE_INTEL_JITEVENTS)
351if (LLVM_USE_OPROFILE)
352 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
353endif (LLVM_USE_OPROFILE)
354
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000355message(STATUS "Constructing LLVMBuild project information")
356execute_process(
357 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar83337302011-11-10 01:16:48 +0000358 --native-target "${LLVM_NATIVE_ARCH}"
359 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurd75493542012-05-07 19:38:40 +0000360 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000361 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
362 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman20e46362013-08-15 04:16:12 +0000363 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000364 ERROR_VARIABLE LLVMBUILDERRORS
365 OUTPUT_STRIP_TRAILING_WHITESPACE
366 ERROR_STRIP_TRAILING_WHITESPACE
367 RESULT_VARIABLE LLVMBUILDRESULT)
368
369# On Win32, CMake doesn't properly handle piping the default output/error
370# streams into the GUI console. So, we explicitly catch and report them.
371if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
372 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
373endif()
374if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
375 message(FATAL_ERROR
376 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
377endif()
378
379# Include the generated CMake fragment. This will define properties from the
380# LLVMBuild files in a format which is easy to consume from CMake, and will add
381# the dependencies so that CMake will reconfigure properly when the LLVMBuild
382# files change.
383include(${LLVMBUILDCMAKEFRAG})
384
385######
386
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000387# Configure all of the various header file fragments LLVM uses which depend on
388# configuration variables.
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000389set(LLVM_ENUM_TARGETS "")
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000390set(LLVM_ENUM_ASM_PRINTERS "")
391set(LLVM_ENUM_ASM_PARSERS "")
392set(LLVM_ENUM_DISASSEMBLERS "")
393foreach(t ${LLVM_TARGETS_TO_BUILD})
394 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000395
396 list(FIND LLVM_ALL_TARGETS ${t} idx)
397 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
398 if( idx LESS 0 AND idy LESS 0 )
399 message(FATAL_ERROR "The target `${t}' does not exist.
400 It should be one of\n${LLVM_ALL_TARGETS}")
401 else()
402 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
403 endif()
404
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000405 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
406 if( asmp_file )
407 set(LLVM_ENUM_ASM_PRINTERS
408 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
409 endif()
410 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
411 set(LLVM_ENUM_ASM_PARSERS
412 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
413 endif()
414 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
415 set(LLVM_ENUM_DISASSEMBLERS
416 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
417 endif()
418endforeach(t)
419
420# Produce the target definition files, which provide a way for clients to easily
421# include various classes of targets.
422configure_file(
423 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700424 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000425 )
426configure_file(
427 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700428 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000429 )
430configure_file(
431 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700432 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000433 )
434configure_file(
435 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
Stephen Hines36b56882014-04-23 16:57:46 -0700436 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000437 )
438
439# Configure the three LLVM configuration header files.
Oscar Fuentesd538e242011-02-03 20:57:36 +0000440configure_file(
441 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700442 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000443configure_file(
444 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700445 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000446configure_file(
447 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Stephen Hines36b56882014-04-23 16:57:46 -0700448 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentes2c5e0b82011-01-09 14:34:39 +0000449
Stephen Hines36b56882014-04-23 16:57:46 -0700450# They are not referenced. See set_output_directory().
451set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000452set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
453set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
454
Stephen Hines36b56882014-04-23 16:57:46 -0700455set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
456if (APPLE)
457 set(CMAKE_INSTALL_NAME_DIR "@rpath")
458 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
459else(UNIX)
460 if(NOT DEFINED CMAKE_INSTALL_RPATH)
461 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib")
462 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
463 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
464 endif()
465 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
466endif()
467
Oscar Fuentesc08830d2011-02-14 20:13:58 +0000468set(CMAKE_INCLUDE_CURRENT_DIR ON)
469
Stephen Hines36b56882014-04-23 16:57:46 -0700470include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000471
David Chisnall579ad502013-02-14 15:40:44 +0000472if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
473 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
474 # with libxml2, iconv.h, etc., we must add /usr/local paths.
475 include_directories("/usr/local/include")
476 link_directories("/usr/local/lib")
477endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
478
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000479if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2341a3c2011-07-17 17:35:15 +0000480 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000481endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
482
Rafael Espindola436633e2013-04-04 01:01:32 +0000483# Make sure we don't get -rdynamic in every binary. For those that need it,
484# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
485set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
486
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000487include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000488include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000489
Michael J. Spencer1c4e9342010-09-11 02:13:39 +0000490if( MINGW )
Oscar Fuentes53bf3ee2011-01-07 20:31:03 +0000491 # People report that -O3 is unreliable on MinGW. The traditional
492 # build also uses -O2 for that reason:
493 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
494endif()
495
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000496# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000497add_subdirectory(lib/Support)
Peter Collingbourne7c788882011-10-01 16:41:13 +0000498add_subdirectory(lib/TableGen)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000499
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000500add_subdirectory(utils/TableGen)
501
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000502add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000503
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000504add_subdirectory(lib)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000505
Stephen Hines36b56882014-04-23 16:57:46 -0700506if( LLVM_INCLUDE_UTILS )
507 add_subdirectory(utils/FileCheck)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700508 add_subdirectory(utils/PerfectShuffle)
Stephen Hines36b56882014-04-23 16:57:46 -0700509 add_subdirectory(utils/count)
510 add_subdirectory(utils/not)
511 add_subdirectory(utils/llvm-lit)
512 add_subdirectory(utils/yaml-bench)
513else()
514 if ( LLVM_INCLUDE_TESTS )
515 message(FATAL_ERROR "Including tests when not building utils will not work.
516 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
517 endif()
518endif()
519
520if(LLVM_INCLUDE_TESTS)
521 add_subdirectory(utils/unittest)
522endif()
Douglas Gregor4d20c242009-07-20 18:30:25 +0000523
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000524add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000525
Stephen Hines36b56882014-04-23 16:57:46 -0700526if(WITH_POLLY)
527 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
528 set(WITH_POLLY OFF)
529 endif()
530endif(WITH_POLLY)
531
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000532if( LLVM_INCLUDE_TOOLS )
533 add_subdirectory(tools)
534endif()
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000535
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000536if( LLVM_INCLUDE_EXAMPLES )
537 add_subdirectory(examples)
538endif()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000539
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000540if( LLVM_INCLUDE_TESTS )
541 add_subdirectory(test)
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000542 add_subdirectory(unittests)
NAKAMURA Takumi15b337c2010-10-26 05:08:27 +0000543 if (MSVC)
Joel Jones1d3b7e72012-12-13 15:25:07 +0000544 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencerbbb9ea72010-10-11 19:55:38 +0000545 # Windows.
546 add_subdirectory(utils/KillTheDoctor)
547 endif()
Chandler Carruthcf23bd32012-06-30 10:14:14 +0000548
549 # Add a global check rule now that all subdirectories have been traversed
550 # and we know the total set of lit testsuites.
551 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
552 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
553 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
554 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
555 add_lit_target(check-all
556 "Running all regression tests"
557 ${LLVM_LIT_TESTSUITES}
558 PARAMS ${LLVM_LIT_PARAMS}
559 DEPENDS ${LLVM_LIT_DEPENDS}
560 ARGS ${LLVM_LIT_EXTRA_ARGS}
561 )
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000562endif()
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000563
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000564if (LLVM_INCLUDE_DOCS)
565 add_subdirectory(docs)
566endif()
567
Oscar Fuentes6252e982010-08-09 03:26:43 +0000568add_subdirectory(cmake/modules)
569
Hans Wennborg2982c082013-08-24 00:20:36 +0000570if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
Stephen Hines36b56882014-04-23 16:57:46 -0700571 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg2982c082013-08-24 00:20:36 +0000572 DESTINATION include
573 FILES_MATCHING
574 PATTERN "*.def"
575 PATTERN "*.h"
576 PATTERN "*.td"
577 PATTERN "*.inc"
578 PATTERN "LICENSE.TXT"
579 PATTERN ".svn" EXCLUDE
580 )
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000581
Stephen Hines36b56882014-04-23 16:57:46 -0700582 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg2982c082013-08-24 00:20:36 +0000583 DESTINATION include
584 FILES_MATCHING
585 PATTERN "*.def"
586 PATTERN "*.h"
587 PATTERN "*.gen"
588 PATTERN "*.inc"
589 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
590 PATTERN "CMakeFiles" EXCLUDE
Stephen Hinescd81d942014-07-21 00:45:20 -0700591 PATTERN "config.h" EXCLUDE
Hans Wennborg2982c082013-08-24 00:20:36 +0000592 PATTERN ".svn" EXCLUDE
593 )
594endif()