blob: ef8906c8907217bd8117aab15846ab74bdcea362 [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
Cedric Venet1d083f42008-10-30 21:22:00 +00003project(LLVM)
Tim Northover32d0b2a2013-02-18 11:53:37 +00004cmake_minimum_required(VERSION 2.8)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +00005
Oscar Fuentesee993172010-08-03 17:28:09 +00006# Add path for custom modules
7set(CMAKE_MODULE_PATH
8 ${CMAKE_MODULE_PATH}
9 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
10 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
11 )
12
Dylan Noblesmithfde82372012-02-13 18:48:10 +000013set(LLVM_VERSION_MAJOR 3)
Rafael Espindolabaa52ff2013-05-07 20:44:22 +000014set(LLVM_VERSION_MINOR 4)
Dylan Noblesmithfde82372012-02-13 18:48:10 +000015
16set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}svn")
Oscar Fuentes784a1762010-12-20 09:47:13 +000017
Hans Wennborg2982c082013-08-24 00:20:36 +000018option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
19
Manuel Klimek80fa4722012-05-09 15:10:54 +000020option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
21if ( LLVM_USE_FOLDERS )
22 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
23endif()
Oscar Fuentes0b85d072011-02-20 22:06:10 +000024
Oscar Fuentesee993172010-08-03 17:28:09 +000025include(VersionFromVCS)
Oscar Fuentes784a1762010-12-20 09:47:13 +000026
27option(LLVM_APPEND_VC_REV
28 "Append the version control system revision id to LLVM version" OFF)
29
30if( LLVM_APPEND_VC_REV )
31 add_version_info_from_vcs(PACKAGE_VERSION)
32endif()
Oscar Fuentesee993172010-08-03 17:28:09 +000033
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000034set(PACKAGE_NAME LLVM)
Chris Lattner8c46e852009-01-28 17:49:03 +000035set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith7fe0e032011-12-18 18:50:16 +000036set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000037
Reid Kleckner002062b2013-08-29 22:09:43 +000038# Configure CPack.
39set(CPACK_PACKAGE_VENDOR "LLVM")
40set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
41set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
42if( LLVM_APPEND_VC_REV )
43 add_version_info_from_vcs(CPACK_PACKAGE_VERSION_PATCH)
44else()
45 set(CPACK_PACKAGE_VERSION_PATCH "svn")
46endif()
47set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
48if(WIN32 AND NOT UNIX)
49 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
50 set(CPACK_NSIS_MODIFY_PATH "ON")
51 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
52 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
53 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
54 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
55 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
56endif()
57include(CPack)
58
Daniel Dunbara0c8d2d2011-11-04 19:04:39 +000059# Sanity check our source directory to make sure that we are not trying to
60# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
61# sure that we don't have any stray generated files lying around in the tree
62# (which would end up getting picked up by header search, instead of the correct
63# versions).
Oscar Fuentes6326a0d2008-11-14 03:43:18 +000064if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
65 message(FATAL_ERROR "In-source builds are not allowed.
66CMake would overwrite the makefiles distributed with LLVM.
67Please create a directory and run cmake from there, passing the path
68to this source directory as the last argument.
69This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
70Please delete them.")
71endif()
Daniel Dunbara0c8d2d2011-11-04 19:04:39 +000072if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
73 file(GLOB_RECURSE
74 tablegenned_files_on_include_dir
75 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
76 file(GLOB_RECURSE
77 tablegenned_files_on_lib_dir
78 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
79 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
80 message(FATAL_ERROR "Apparently there is a previous in-source build,
81probably as the result of running `configure' and `make' on
82${CMAKE_CURRENT_SOURCE_DIR}.
83This may cause problems. The suspicious files are:
84${tablegenned_files_on_lib_dir}
85${tablegenned_files_on_include_dir}
86Please clean the source directory.")
87 endif()
88endif()
Oscar Fuentes6326a0d2008-11-14 03:43:18 +000089
Oscar Fuentes81a87552009-06-03 15:11:25 +000090string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
91
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000092set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes980e8422008-10-29 02:33:15 +000093set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000094set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
95set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
96set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentesaf0f65f2009-06-12 02:49:53 +000097set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000098
Oscar Fuentes4f21c132008-11-10 01:47:07 +000099set(LLVM_ALL_TARGETS
Tim Northover4c408402013-02-04 12:32:21 +0000100 AArch64
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000101 ARM
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000102 CppBackend
Tony Linthicumb4b54152011-12-12 21:14:40 +0000103 Hexagon
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000104 Mips
Richard Penningtona51984b2009-07-09 20:27:09 +0000105 MSP430
Justin Holewinski49683f32012-05-04 20:18:50 +0000106 NVPTX
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000107 PowerPC
Rafael Espindola059d3602013-05-22 00:35:47 +0000108 R600
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000109 Sparc
Ulrich Weigand9887cbe2013-05-06 16:23:07 +0000110 SystemZ
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000111 X86
112 XCore
113 )
114
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000115# List of targets with JIT support:
Tim Northover233a4d72013-05-19 19:44:56 +0000116set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentesdb3480c2011-03-23 17:42:13 +0000117
Tim Northovereaa752f2013-04-15 11:53:05 +0000118set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000119 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000120
Victor Oliveira0e80e182012-08-09 01:13:59 +0000121set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
122 CACHE STRING "Semicolon-separated list of experimental targets to build.")
123
Dylan Noblesmithbb7cd0c2012-02-01 14:49:39 +0000124option(BUILD_SHARED_LIBS
125 "Build all libraries as shared libraries instead of static" OFF)
126
Oscar Fuentes19823b12011-01-11 12:31:54 +0000127option(LLVM_ENABLE_CBE_PRINTF_A "Set to ON if CBE is enabled for printf %a output" ON)
128if(LLVM_ENABLE_CBE_PRINTF_A)
129 set(ENABLE_CBE_PRINTF_A 1)
130endif()
131
132option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
133if(LLVM_ENABLE_TIMESTAMPS)
134 set(ENABLE_TIMESTAMPS 1)
135endif()
136
Benjamin Kramer53347ed2012-09-28 10:10:46 +0000137option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
138if(LLVM_ENABLE_BACKTRACES)
139 set(ENABLE_BACKTRACES 1)
140endif()
141
Daniel Dunbare179b312013-08-30 20:39:21 +0000142option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
143if(LLVM_ENABLE_CRASH_OVERRIDES)
144 set(ENABLE_CRASH_OVERRIDES 1)
145endif()
146
Oscar Fuentes59693792011-01-21 15:42:54 +0000147option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
148set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
149set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
150
Sebastian Pop9469dd32012-08-08 18:04:45 +0000151set(LLVM_TARGET_ARCH "host"
152 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesa9ff1392009-09-13 22:18:38 +0000153
Chandler Carruth8d8bdff2013-08-12 09:49:17 +0000154option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthf7364d52013-08-07 08:47:36 +0000155
Oscar Fuentes4b442832008-11-18 23:45:21 +0000156option(LLVM_ENABLE_THREADS "Use threads if available." ON)
157
Alexey Samsonovee03c942013-04-23 08:28:39 +0000158option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
159
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000160if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
161 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
162endif()
163
Victor Oliveira385401a2012-08-15 22:35:36 +0000164set(LLVM_TARGETS_TO_BUILD
165 ${LLVM_TARGETS_TO_BUILD}
166 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindola67295352013-05-22 02:45:28 +0000167list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira385401a2012-08-15 22:35:36 +0000168
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000169set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
170
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000171include(AddLLVMDefinitions)
172
Oscar Fuentes1e02bf02009-08-18 15:29:35 +0000173option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000174
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000175# MSVC has a gazillion warnings with this.
176if( MSVC )
177 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
178else( MSVC )
179 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
180endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +0000181
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000182option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
183option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000184
Duncan Sandsa009d532013-07-17 09:34:51 +0000185if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000186 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
187else()
188 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000189endif()
190
Eli Bendersky61b18512012-03-13 08:33:15 +0000191option(LLVM_USE_INTEL_JITEVENTS
192 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
193 OFF)
194
195if( LLVM_USE_INTEL_JITEVENTS )
196 # Verify we are on a supported platform
Andrew Kaylor770b97b2012-09-28 17:35:20 +0000197 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky61b18512012-03-13 08:33:15 +0000198 message(FATAL_ERROR
199 "Intel JIT API support is available on Linux and Windows only.")
200 endif()
201endif( LLVM_USE_INTEL_JITEVENTS )
202
203option(LLVM_USE_OPROFILE
204 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
205
Joel Jones1d3b7e72012-12-13 15:25:07 +0000206# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky61b18512012-03-13 08:33:15 +0000207if( LLVM_USE_OPROFILE )
208 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
209 message(FATAL_ERROR "OProfile support is available on Linux only.")
210 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
211endif( LLVM_USE_OPROFILE )
212
Alexey Samsonov777fccb2013-03-26 07:49:46 +0000213set(LLVM_USE_SANITIZER "" CACHE STRING
214 "Define the sanitizer used to build binaries and tests.")
215
Eric Christopher6aebd5f2013-07-30 21:44:10 +0000216option(LLVM_USE_SPLIT_DWARF
217 "Use -gsplit-dwarf when compiling llvm." OFF)
218
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000219# Define an option controlling whether we should build for 32-bit on 64-bit
220# platforms, where supported.
221if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
222 # TODO: support other platforms and toolchains.
223 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
224endif()
225
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000226# Define the default arguments to use with 'lit', and an option for the user to
227# override.
228set(LIT_ARGS_DEFAULT "-sv")
229if (MSVC OR XCODE)
230 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
231endif()
232set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
233
NAKAMURA Takumi08216782011-12-11 03:07:53 +0000234# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
235if( WIN32 AND NOT CYGWIN )
Daniel Dunbarc8f399d2011-11-04 19:04:35 +0000236 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
237endif()
238
Daniel Dunbar275f6862011-11-04 19:04:37 +0000239# Define options to control the inclusion and default build behavior for
240# components which may not strictly be necessary (tools, runtime, examples, and
241# tests).
242#
243# This is primarily to support building smaller or faster project files.
244option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
245option(LLVM_BUILD_TOOLS
246 "Build the LLVM tools. If OFF, just generate build targets." ON)
247
248option(LLVM_INCLUDE_RUNTIME "Generate build targets for the LLVM runtimes" ON)
249option(LLVM_BUILD_RUNTIME
250 "Build the LLVM runtime libraries. If OFF, just generate build targets." ON)
251
252option(LLVM_BUILD_EXAMPLES
253 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
254option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
255
256option(LLVM_BUILD_TESTS
257 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
258option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
259
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000260option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
261option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
262option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm documentation." OFF)
263
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000264# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000265# BEFORE this include, otherwise options will not be correctly set on
266# first cmake run
267include(config-ix)
Sebastian Popdf259882012-08-20 19:56:52 +0000268
269# By default, we target the host, but this can be overridden at CMake
270# invocation time.
271set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
272 "Default target for which LLVM will generate code." )
NAKAMURA Takumicbc478e2012-12-10 07:14:29 +0000273set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popdf259882012-08-20 19:56:52 +0000274
Oscar Fuentesd9f574b2011-03-01 22:31:19 +0000275include(HandleLLVMOptions)
276
Reid Klecknerdfad9e32013-06-24 13:21:16 +0000277# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
278set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5 2.4)
Daniel Dunbara54c8ea2011-11-04 23:04:05 +0000279include(FindPythonInterp)
280if( NOT PYTHONINTERP_FOUND )
281 message(FATAL_ERROR
282"Unable to find Python interpreter, required for builds and testing.
283
284Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
285endif()
286
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000287######
288# LLVMBuild Integration
289#
290# We use llvm-build to generate all the data required by the CMake based
291# build system in one swoop:
292#
293# - We generate a file (a CMake fragment) in the object root which contains
294# all the definitions that are required by CMake.
295#
296# - We generate the library table used by llvm-config.
297#
298# - We generate the dependencies for the CMake fragment, so that we will
299# automatically reconfigure outselves.
300
301set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
302set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000303 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000304set(LLVMBUILDCMAKEFRAG
305 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurd75493542012-05-07 19:38:40 +0000306
307# Create the list of optional components that are enabled
308if (LLVM_USE_INTEL_JITEVENTS)
309 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
310endif (LLVM_USE_INTEL_JITEVENTS)
311if (LLVM_USE_OPROFILE)
312 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
313endif (LLVM_USE_OPROFILE)
314
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000315message(STATUS "Constructing LLVMBuild project information")
316execute_process(
317 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar83337302011-11-10 01:16:48 +0000318 --native-target "${LLVM_NATIVE_ARCH}"
319 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurd75493542012-05-07 19:38:40 +0000320 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000321 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
322 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman20e46362013-08-15 04:16:12 +0000323 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar965d2fe2011-11-05 06:30:03 +0000324 ERROR_VARIABLE LLVMBUILDERRORS
325 OUTPUT_STRIP_TRAILING_WHITESPACE
326 ERROR_STRIP_TRAILING_WHITESPACE
327 RESULT_VARIABLE LLVMBUILDRESULT)
328
329# On Win32, CMake doesn't properly handle piping the default output/error
330# streams into the GUI console. So, we explicitly catch and report them.
331if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
332 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
333endif()
334if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
335 message(FATAL_ERROR
336 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
337endif()
338
339# Include the generated CMake fragment. This will define properties from the
340# LLVMBuild files in a format which is easy to consume from CMake, and will add
341# the dependencies so that CMake will reconfigure properly when the LLVMBuild
342# files change.
343include(${LLVMBUILDCMAKEFRAG})
344
345######
346
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000347# Configure all of the various header file fragments LLVM uses which depend on
348# configuration variables.
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000349set(LLVM_ENUM_TARGETS "")
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000350set(LLVM_ENUM_ASM_PRINTERS "")
351set(LLVM_ENUM_ASM_PARSERS "")
352set(LLVM_ENUM_DISASSEMBLERS "")
353foreach(t ${LLVM_TARGETS_TO_BUILD})
354 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbs84bb3a22013-06-26 07:57:53 +0000355
356 list(FIND LLVM_ALL_TARGETS ${t} idx)
357 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
358 if( idx LESS 0 AND idy LESS 0 )
359 message(FATAL_ERROR "The target `${t}' does not exist.
360 It should be one of\n${LLVM_ALL_TARGETS}")
361 else()
362 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
363 endif()
364
Daniel Dunbar7b1dd9a2011-11-04 19:04:42 +0000365 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
366 if( asmp_file )
367 set(LLVM_ENUM_ASM_PRINTERS
368 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
369 endif()
370 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
371 set(LLVM_ENUM_ASM_PARSERS
372 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
373 endif()
374 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
375 set(LLVM_ENUM_DISASSEMBLERS
376 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
377 endif()
378endforeach(t)
379
380# Produce the target definition files, which provide a way for clients to easily
381# include various classes of targets.
382configure_file(
383 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
384 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
385 )
386configure_file(
387 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
388 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
389 )
390configure_file(
391 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
392 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
393 )
394configure_file(
395 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
396 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
397 )
398
399# Configure the three LLVM configuration header files.
Oscar Fuentesd538e242011-02-03 20:57:36 +0000400configure_file(
401 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
402 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000403configure_file(
404 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
405 ${LLVM_BINARY_DIR}/include/llvm/Config/llvm-config.h)
Oscar Fuentesd538e242011-02-03 20:57:36 +0000406configure_file(
407 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
408 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h)
Oscar Fuentes2c5e0b82011-01-09 14:34:39 +0000409
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000410set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
411set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
412set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
413
Oscar Fuentesc08830d2011-02-14 20:13:58 +0000414set(CMAKE_INCLUDE_CURRENT_DIR ON)
415
Oscar Fuentes980e8422008-10-29 02:33:15 +0000416include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000417
David Chisnall579ad502013-02-14 15:40:44 +0000418if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
419 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
420 # with libxml2, iconv.h, etc., we must add /usr/local paths.
421 include_directories("/usr/local/include")
422 link_directories("/usr/local/lib")
423endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
424
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000425if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2341a3c2011-07-17 17:35:15 +0000426 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000427endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
428
Rafael Espindola436633e2013-04-04 01:01:32 +0000429# Make sure we don't get -rdynamic in every binary. For those that need it,
430# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
431set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
432
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000433include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000434include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000435
Michael J. Spencer1c4e9342010-09-11 02:13:39 +0000436if( MINGW )
Oscar Fuentes53bf3ee2011-01-07 20:31:03 +0000437 # People report that -O3 is unreliable on MinGW. The traditional
438 # build also uses -O2 for that reason:
439 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
440endif()
441
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000442# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000443add_subdirectory(lib/Support)
Peter Collingbourne7c788882011-10-01 16:41:13 +0000444add_subdirectory(lib/TableGen)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000445
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000446add_subdirectory(utils/TableGen)
447
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000448add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000449
Oscar Fuentes6d857ca2011-02-18 22:06:14 +0000450add_subdirectory(lib)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000451
Douglas Gregor4d20c242009-07-20 18:30:25 +0000452add_subdirectory(utils/FileCheck)
Michael J. Spencer014e1892010-12-09 17:54:44 +0000453add_subdirectory(utils/FileUpdate)
Daniel Dunbar48f7ce82009-09-24 06:23:57 +0000454add_subdirectory(utils/count)
455add_subdirectory(utils/not)
Michael J. Spencerbecf3922010-09-13 17:52:38 +0000456add_subdirectory(utils/llvm-lit)
Michael J. Spencer93210e82012-04-03 23:09:22 +0000457add_subdirectory(utils/yaml-bench)
Douglas Gregor4d20c242009-07-20 18:30:25 +0000458
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000459add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000460
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000461if( LLVM_INCLUDE_TOOLS )
462 add_subdirectory(tools)
463endif()
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000464
Nick Lewyckye88c7242011-04-26 05:48:41 +0000465if( LLVM_INCLUDE_RUNTIME )
466 add_subdirectory(runtime)
467endif()
468
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000469if( LLVM_INCLUDE_EXAMPLES )
470 add_subdirectory(examples)
471endif()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000472
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000473if( LLVM_INCLUDE_TESTS )
474 add_subdirectory(test)
475 add_subdirectory(utils/unittest)
476 add_subdirectory(unittests)
NAKAMURA Takumi15b337c2010-10-26 05:08:27 +0000477 if (MSVC)
Joel Jones1d3b7e72012-12-13 15:25:07 +0000478 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencerbbb9ea72010-10-11 19:55:38 +0000479 # Windows.
480 add_subdirectory(utils/KillTheDoctor)
481 endif()
Chandler Carruthcf23bd32012-06-30 10:14:14 +0000482
483 # Add a global check rule now that all subdirectories have been traversed
484 # and we know the total set of lit testsuites.
485 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
486 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
487 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
488 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
489 add_lit_target(check-all
490 "Running all regression tests"
491 ${LLVM_LIT_TESTSUITES}
492 PARAMS ${LLVM_LIT_PARAMS}
493 DEPENDS ${LLVM_LIT_DEPENDS}
494 ARGS ${LLVM_LIT_EXTRA_ARGS}
495 )
Oscar Fuentesa6c1dbd2010-09-25 20:43:06 +0000496endif()
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000497
Michael Gottesman5b83d0c2013-08-24 07:25:21 +0000498if (LLVM_INCLUDE_DOCS)
499 add_subdirectory(docs)
500endif()
501
Oscar Fuentes6252e982010-08-09 03:26:43 +0000502add_subdirectory(cmake/modules)
503
Hans Wennborg2982c082013-08-24 00:20:36 +0000504if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
505 install(DIRECTORY include/
506 DESTINATION include
507 FILES_MATCHING
508 PATTERN "*.def"
509 PATTERN "*.h"
510 PATTERN "*.td"
511 PATTERN "*.inc"
512 PATTERN "LICENSE.TXT"
513 PATTERN ".svn" EXCLUDE
514 )
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000515
Hans Wennborg2982c082013-08-24 00:20:36 +0000516 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
517 DESTINATION include
518 FILES_MATCHING
519 PATTERN "*.def"
520 PATTERN "*.h"
521 PATTERN "*.gen"
522 PATTERN "*.inc"
523 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
524 PATTERN "CMakeFiles" EXCLUDE
525 PATTERN ".svn" EXCLUDE
526 )
527endif()
528
NAKAMURA Takumi4c8710d2010-11-19 03:19:18 +0000529# Workaround for MSVS10 to avoid the Dialog Hell
530# FIXME: This could be removed with future version of CMake.
531if(MSVC_VERSION EQUAL 1600)
532 set(LLVM_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/LLVM.sln")
533 if( EXISTS "${LLVM_SLN_FILENAME}" )
534 file(APPEND "${LLVM_SLN_FILENAME}" "\n# This should be regenerated!\n")
535 endif()
536endif()