| Oscar Fuentes | fff33a3 | 2009-04-04 22:52:02 +0000 | [diff] [blame] | 1 | # See docs/CMake.html for instructions about how to build LLVM with CMake. |
| 2 | |
| Chris Bieneman | 6a1b54a | 2015-03-23 20:03:57 +0000 | [diff] [blame] | 3 | cmake_minimum_required(VERSION 2.8.12.2) |
| Chris Bieneman | 9d9da0d | 2015-02-09 22:07:49 +0000 | [diff] [blame] | 4 | |
| Chris Bieneman | 9b7f832 | 2015-02-20 19:02:59 +0000 | [diff] [blame] | 5 | if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
| 6 | message(STATUS "No build type selected, default to Debug") |
| 7 | set(CMAKE_BUILD_TYPE "Debug") |
| 8 | endif() |
| 9 | |
| Chris Bieneman | 6a1b54a | 2015-03-23 20:03:57 +0000 | [diff] [blame] | 10 | if(POLICY CMP0022) |
| 11 | cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required |
| Chris Bieneman | 9d9da0d | 2015-02-09 22:07:49 +0000 | [diff] [blame] | 12 | endif() |
| NAKAMURA Takumi | 9cd9ad6 | 2014-02-26 06:45:11 +0000 | [diff] [blame] | 13 | |
| Zachary Turner | b7e4158 | 2015-02-24 23:32:47 +0000 | [diff] [blame] | 14 | if (POLICY CMP0051) |
| 15 | # CMake 3.1 and higher include generator expressions of the form |
| 16 | # $<TARGETLIB:obj> in the SOURCES property. These need to be |
| 17 | # stripped everywhere that access the SOURCES property, so we just |
| 18 | # defer to the OLD behavior of not including generator expressions |
| 19 | # in the output for now. |
| 20 | cmake_policy(SET CMP0051 OLD) |
| 21 | endif() |
| 22 | |
| Peter Collingbourne | a7fb5cf | 2014-11-17 22:16:15 +0000 | [diff] [blame] | 23 | if(CMAKE_VERSION VERSION_LESS 3.1.20141117) |
| 24 | set(cmake_3_2_USES_TERMINAL) |
| 25 | else() |
| 26 | set(cmake_3_2_USES_TERMINAL USES_TERMINAL) |
| 27 | endif() |
| 28 | |
| Douglas Katzman | 280ee91 | 2015-07-28 14:43:53 +0000 | [diff] [blame] | 29 | project(LLVM C CXX ASM) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 30 | |
| Evgeniy Stepanov | f1c381738 | 2014-11-19 10:30:02 +0000 | [diff] [blame] | 31 | # The following only works with the Ninja generator in CMake >= 3.0. |
| 32 | set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING |
| 33 | "Define the maximum number of concurrent compilation jobs.") |
| 34 | if(LLVM_PARALLEL_COMPILE_JOBS) |
| Chris Bieneman | 35b7f81 | 2015-06-04 19:33:23 +0000 | [diff] [blame] | 35 | if(CMAKE_VERSION VERSION_LESS 3.0 OR NOT CMAKE_MAKE_PROGRAM MATCHES "ninja$") |
| Chris Bieneman | 762cbe7 | 2015-06-04 15:33:08 +0000 | [diff] [blame] | 36 | message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.") |
| 37 | else() |
| 38 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS}) |
| 39 | set(CMAKE_JOB_POOL_COMPILE compile_job_pool) |
| 40 | endif() |
| Evgeniy Stepanov | f1c381738 | 2014-11-19 10:30:02 +0000 | [diff] [blame] | 41 | endif() |
| 42 | |
| 43 | set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING |
| 44 | "Define the maximum number of concurrent link jobs.") |
| 45 | if(LLVM_PARALLEL_LINK_JOBS) |
| Chris Bieneman | 35b7f81 | 2015-06-04 19:33:23 +0000 | [diff] [blame] | 46 | if(CMAKE_VERSION VERSION_LESS 3.0 OR NOT CMAKE_MAKE_PROGRAM MATCHES "ninja$") |
| Chris Bieneman | 762cbe7 | 2015-06-04 15:33:08 +0000 | [diff] [blame] | 47 | message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.") |
| 48 | else() |
| 49 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS}) |
| 50 | set(CMAKE_JOB_POOL_LINK link_job_pool) |
| 51 | endif() |
| Evgeniy Stepanov | f1c381738 | 2014-11-19 10:30:02 +0000 | [diff] [blame] | 52 | endif() |
| 53 | |
| Oscar Fuentes | 052c23c | 2010-08-03 17:28:09 +0000 | [diff] [blame] | 54 | # Add path for custom modules |
| 55 | set(CMAKE_MODULE_PATH |
| 56 | ${CMAKE_MODULE_PATH} |
| 57 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" |
| 58 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" |
| 59 | ) |
| 60 | |
| Dylan Noblesmith | c6c7a58 | 2012-02-13 18:48:10 +0000 | [diff] [blame] | 61 | set(LLVM_VERSION_MAJOR 3) |
| Hans Wennborg | 8a6340d | 2015-07-14 22:35:57 +0000 | [diff] [blame] | 62 | set(LLVM_VERSION_MINOR 8) |
| Tom Stellard | e6ba81d | 2014-03-03 15:22:00 +0000 | [diff] [blame] | 63 | set(LLVM_VERSION_PATCH 0) |
| Chris Bieneman | a8a0596 | 2015-02-18 18:52:06 +0000 | [diff] [blame] | 64 | set(LLVM_VERSION_SUFFIX svn) |
| Dylan Noblesmith | c6c7a58 | 2012-02-13 18:48:10 +0000 | [diff] [blame] | 65 | |
| Hans Wennborg | 09d108b | 2013-11-21 22:47:21 +0000 | [diff] [blame] | 66 | if (NOT PACKAGE_VERSION) |
| Reid Kleckner | 2e3d1e0 | 2015-02-27 18:22:46 +0000 | [diff] [blame] | 67 | set(PACKAGE_VERSION |
| 68 | "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}") |
| Hans Wennborg | 09d108b | 2013-11-21 22:47:21 +0000 | [diff] [blame] | 69 | endif() |
| Oscar Fuentes | 7064035 | 2010-12-20 09:47:13 +0000 | [diff] [blame] | 70 | |
| Derek Schuff | ef9928e | 2015-03-27 16:53:06 +0000 | [diff] [blame] | 71 | option(LLVM_INSTALL_UTILS "Include utility binaries in the 'install' target." OFF) |
| 72 | |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 73 | option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF) |
| 74 | |
| Manuel Klimek | 13cfa00 | 2012-05-09 15:10:54 +0000 | [diff] [blame] | 75 | option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON) |
| 76 | if ( LLVM_USE_FOLDERS ) |
| 77 | set_property(GLOBAL PROPERTY USE_FOLDERS ON) |
| 78 | endif() |
| Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 79 | |
| Oscar Fuentes | 052c23c | 2010-08-03 17:28:09 +0000 | [diff] [blame] | 80 | include(VersionFromVCS) |
| Oscar Fuentes | 7064035 | 2010-12-20 09:47:13 +0000 | [diff] [blame] | 81 | |
| 82 | option(LLVM_APPEND_VC_REV |
| 83 | "Append the version control system revision id to LLVM version" OFF) |
| 84 | |
| 85 | if( LLVM_APPEND_VC_REV ) |
| 86 | add_version_info_from_vcs(PACKAGE_VERSION) |
| 87 | endif() |
| Oscar Fuentes | 052c23c | 2010-08-03 17:28:09 +0000 | [diff] [blame] | 88 | |
| Dylan Noblesmith | 67c4970 | 2011-12-18 18:50:16 +0000 | [diff] [blame] | 89 | set(PACKAGE_NAME LLVM) |
| Chris Lattner | ff2d99d | 2009-01-28 17:49:03 +0000 | [diff] [blame] | 90 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
| Dylan Noblesmith | 67c4970 | 2011-12-18 18:50:16 +0000 | [diff] [blame] | 91 | set(PACKAGE_BUGREPORT "http://llvm.org/bugs/") |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 92 | |
| NAKAMURA Takumi | f0a1ab8 | 2014-01-13 05:25:13 +0000 | [diff] [blame] | 93 | set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING |
| 94 | "Default URL where bug reports are to be submitted.") |
| 95 | |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 96 | # Configure CPack. |
| Hans Wennborg | 09d108b | 2013-11-21 22:47:21 +0000 | [diff] [blame] | 97 | set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM") |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 98 | set(CPACK_PACKAGE_VENDOR "LLVM") |
| 99 | set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR}) |
| 100 | set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR}) |
| Tom Stellard | e6ba81d | 2014-03-03 15:22:00 +0000 | [diff] [blame] | 101 | set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH}) |
| Hans Wennborg | 09d108b | 2013-11-21 22:47:21 +0000 | [diff] [blame] | 102 | set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION}) |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 103 | set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT") |
| Ismail Donmez | 9b673bf | 2015-05-14 17:07:41 +0000 | [diff] [blame] | 104 | set(CPACK_NSIS_COMPRESSOR "/SOLID lzma \r\n SetCompressorDictSize 32") |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 105 | if(WIN32 AND NOT UNIX) |
| Hans Wennborg | 09d108b | 2013-11-21 22:47:21 +0000 | [diff] [blame] | 106 | set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM") |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 107 | set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp") |
| Hans Wennborg | a3c3b81 | 2014-03-27 20:48:37 +0000 | [diff] [blame] | 108 | set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico") |
| 109 | set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico") |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 110 | set(CPACK_NSIS_MODIFY_PATH "ON") |
| 111 | set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON") |
| 112 | set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS |
| 113 | "ExecWait '$INSTDIR/tools/msbuild/install.bat'") |
| 114 | set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS |
| 115 | "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'") |
| Hans Wennborg | 9148e17 | 2015-02-03 18:31:29 +0000 | [diff] [blame] | 116 | if( CMAKE_CL_64 ) |
| 117 | set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") |
| 118 | endif() |
| Reid Kleckner | c974f09 | 2013-08-29 22:09:43 +0000 | [diff] [blame] | 119 | endif() |
| 120 | include(CPack) |
| 121 | |
| Daniel Dunbar | ad3946a | 2011-11-04 19:04:39 +0000 | [diff] [blame] | 122 | # Sanity check our source directory to make sure that we are not trying to |
| 123 | # generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make |
| 124 | # sure that we don't have any stray generated files lying around in the tree |
| 125 | # (which would end up getting picked up by header search, instead of the correct |
| 126 | # versions). |
| Oscar Fuentes | a5f8356 | 2008-11-14 03:43:18 +0000 | [diff] [blame] | 127 | if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) |
| 128 | message(FATAL_ERROR "In-source builds are not allowed. |
| 129 | CMake would overwrite the makefiles distributed with LLVM. |
| 130 | Please create a directory and run cmake from there, passing the path |
| 131 | to this source directory as the last argument. |
| 132 | This process created the file `CMakeCache.txt' and the directory `CMakeFiles'. |
| 133 | Please delete them.") |
| 134 | endif() |
| Daniel Dunbar | ad3946a | 2011-11-04 19:04:39 +0000 | [diff] [blame] | 135 | if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) |
| 136 | file(GLOB_RECURSE |
| 137 | tablegenned_files_on_include_dir |
| 138 | "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen") |
| 139 | file(GLOB_RECURSE |
| 140 | tablegenned_files_on_lib_dir |
| 141 | "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc") |
| 142 | if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir) |
| 143 | message(FATAL_ERROR "Apparently there is a previous in-source build, |
| 144 | probably as the result of running `configure' and `make' on |
| 145 | ${CMAKE_CURRENT_SOURCE_DIR}. |
| 146 | This may cause problems. The suspicious files are: |
| 147 | ${tablegenned_files_on_lib_dir} |
| 148 | ${tablegenned_files_on_include_dir} |
| 149 | Please clean the source directory.") |
| 150 | endif() |
| 151 | endif() |
| Oscar Fuentes | a5f8356 | 2008-11-14 03:43:18 +0000 | [diff] [blame] | 152 | |
| Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 153 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 154 | |
| Justin Bogner | 74009be | 2015-08-11 18:17:41 +0000 | [diff] [blame] | 155 | if (CMAKE_BUILD_TYPE AND |
| 156 | NOT uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL)$") |
| 157 | message(FATAL_ERROR "Invalid value for CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") |
| 158 | endif() |
| 159 | |
| Chandler Carruth | a78e24e | 2014-12-29 11:16:19 +0000 | [diff] [blame] | 160 | set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" ) |
| 161 | |
| NAKAMURA Takumi | 0190e94 | 2014-01-19 12:47:26 +0000 | [diff] [blame] | 162 | # They are used as destination of target generators. |
| 163 | set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin) |
| Chandler Carruth | a78e24e | 2014-12-29 11:16:19 +0000 | [diff] [blame] | 164 | set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}) |
| NAKAMURA Takumi | 6c5fbbc | 2014-07-04 04:23:26 +0000 | [diff] [blame] | 165 | if(WIN32 OR CYGWIN) |
| 166 | # DLL platform -- put DLLs into bin. |
| 167 | set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) |
| 168 | else() |
| 169 | set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) |
| 170 | endif() |
| NAKAMURA Takumi | 0190e94 | 2014-01-19 12:47:26 +0000 | [diff] [blame] | 171 | |
| 172 | # Each of them corresponds to llvm-config's. |
| NAKAMURA Takumi | ce78b80 | 2014-01-19 12:52:10 +0000 | [diff] [blame] | 173 | set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir |
| 174 | set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir |
| NAKAMURA Takumi | 0190e94 | 2014-01-19 12:47:26 +0000 | [diff] [blame] | 175 | set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root |
| 176 | set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir |
| 177 | set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix |
| 178 | |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 179 | set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples) |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 180 | set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 181 | |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 182 | set(LLVM_ALL_TARGETS |
| Tim Northover | 3b0846e | 2014-05-24 12:50:23 +0000 | [diff] [blame] | 183 | AArch64 |
| Tom Stellard | 45bb48e | 2015-06-13 03:28:10 +0000 | [diff] [blame] | 184 | AMDGPU |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 185 | ARM |
| Alexei Starovoitov | bb9e345 | 2015-06-09 15:46:00 +0000 | [diff] [blame] | 186 | BPF |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 187 | CppBackend |
| Tony Linthicum | 1213a7a | 2011-12-12 21:14:40 +0000 | [diff] [blame] | 188 | Hexagon |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 189 | Mips |
| Richard Pennington | 9f3bd4a | 2009-07-09 20:27:09 +0000 | [diff] [blame] | 190 | MSP430 |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 191 | NVPTX |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 192 | PowerPC |
| 193 | Sparc |
| Ulrich Weigand | 92b2085 | 2013-05-06 16:23:07 +0000 | [diff] [blame] | 194 | SystemZ |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 195 | X86 |
| 196 | XCore |
| 197 | ) |
| 198 | |
| Oscar Fuentes | 465f936 | 2011-03-23 17:42:13 +0000 | [diff] [blame] | 199 | # List of targets with JIT support: |
| Tim Northover | 3b0846e | 2014-05-24 12:50:23 +0000 | [diff] [blame] | 200 | set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ) |
| Oscar Fuentes | 465f936 | 2011-03-23 17:42:13 +0000 | [diff] [blame] | 201 | |
| Tim Northover | 865f4bc | 2013-04-15 11:53:05 +0000 | [diff] [blame] | 202 | set(LLVM_TARGETS_TO_BUILD "all" |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 203 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 204 | |
| Victor Oliveira | 9d4b8f5 | 2012-08-09 01:13:59 +0000 | [diff] [blame] | 205 | set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD "" |
| 206 | CACHE STRING "Semicolon-separated list of experimental targets to build.") |
| 207 | |
| Dylan Noblesmith | af9be0b | 2012-02-01 14:49:39 +0000 | [diff] [blame] | 208 | option(BUILD_SHARED_LIBS |
| 209 | "Build all libraries as shared libraries instead of static" OFF) |
| 210 | |
| Oscar Fuentes | c8cb58e | 2011-01-11 12:31:54 +0000 | [diff] [blame] | 211 | option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON) |
| 212 | if(LLVM_ENABLE_TIMESTAMPS) |
| 213 | set(ENABLE_TIMESTAMPS 1) |
| 214 | endif() |
| 215 | |
| Benjamin Kramer | 5651cbd | 2012-09-28 10:10:46 +0000 | [diff] [blame] | 216 | option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON) |
| 217 | if(LLVM_ENABLE_BACKTRACES) |
| 218 | set(ENABLE_BACKTRACES 1) |
| 219 | endif() |
| 220 | |
| Daniel Dunbar | eb6c708 | 2013-08-30 20:39:21 +0000 | [diff] [blame] | 221 | option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON) |
| 222 | if(LLVM_ENABLE_CRASH_OVERRIDES) |
| 223 | set(ENABLE_CRASH_OVERRIDES 1) |
| 224 | endif() |
| 225 | |
| Oscar Fuentes | 6495595 | 2011-01-21 15:42:54 +0000 | [diff] [blame] | 226 | option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF) |
| 227 | set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so") |
| 228 | set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h") |
| 229 | |
| Sebastian Pop | 82622dc | 2012-08-08 18:04:45 +0000 | [diff] [blame] | 230 | set(LLVM_TARGET_ARCH "host" |
| 231 | CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.") |
| Oscar Fuentes | b9a7813 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 232 | |
| Chandler Carruth | f11f1e4 | 2013-08-12 09:49:17 +0000 | [diff] [blame] | 233 | option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON) |
| Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 234 | |
| Oscar Fuentes | 366fbb7 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 235 | option(LLVM_ENABLE_THREADS "Use threads if available." ON) |
| 236 | |
| Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 237 | option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON) |
| 238 | |
| Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 239 | if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) |
| 240 | set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) |
| 241 | endif() |
| 242 | |
| Victor Oliveira | 18023e4 | 2012-08-15 22:35:36 +0000 | [diff] [blame] | 243 | set(LLVM_TARGETS_TO_BUILD |
| 244 | ${LLVM_TARGETS_TO_BUILD} |
| 245 | ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD}) |
| Rafael Espindola | cf1e657 | 2013-05-22 02:45:28 +0000 | [diff] [blame] | 246 | list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD) |
| Victor Oliveira | 18023e4 | 2012-08-15 22:35:36 +0000 | [diff] [blame] | 247 | |
| Oscar Fuentes | bda403b | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 248 | include(AddLLVMDefinitions) |
| 249 | |
| Oscar Fuentes | 6d61f55 | 2009-08-18 15:29:35 +0000 | [diff] [blame] | 250 | option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON) |
| Andrew Kaylor | 73bd76ac | 2015-04-07 19:01:01 +0000 | [diff] [blame] | 251 | option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON) |
| Richard Smith | 2b91a7f | 2014-09-26 22:40:15 +0000 | [diff] [blame] | 252 | option(LLVM_ENABLE_MODULES "Compile with C++ modules enabled." OFF) |
| Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 253 | option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF) |
| Jean-Daniel Dupas | edad1b4 | 2014-01-06 18:27:27 +0000 | [diff] [blame] | 254 | option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF) |
| Chandler Carruth | dc57c48 | 2015-03-07 10:30:34 +0000 | [diff] [blame] | 255 | option(LLVM_ENABLE_LIBCXXABI "Use libc++abi when using libc++." OFF) |
| Oscar Fuentes | 1276e32 | 2011-03-01 22:31:19 +0000 | [diff] [blame] | 256 | option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON) |
| 257 | option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) |
| Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 258 | |
| Duncan Sands | 80f122f | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 259 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" ) |
| Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 260 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF) |
| 261 | else() |
| 262 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON) |
| Oscar Fuentes | 073b0b1 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 263 | endif() |
| 264 | |
| Sanjoy Das | 8ce6499 | 2015-03-26 19:25:01 +0000 | [diff] [blame] | 265 | set(LLVM_ABI_BREAKING_CHECKS "WITH_ASSERTS" CACHE STRING |
| 266 | "Enable abi-breaking checks. Can be WITH_ASSERTS, FORCE_ON or FORCE_OFF.") |
| 267 | |
| Chandler Carruth | 8388597 | 2014-01-13 22:21:34 +0000 | [diff] [blame] | 268 | option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN |
| 269 | "Set to ON to force using an old, unsupported host toolchain." OFF) |
| 270 | |
| Eli Bendersky | 5262ad2 | 2012-03-13 08:33:15 +0000 | [diff] [blame] | 271 | option(LLVM_USE_INTEL_JITEVENTS |
| 272 | "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code" |
| 273 | OFF) |
| 274 | |
| 275 | if( LLVM_USE_INTEL_JITEVENTS ) |
| 276 | # Verify we are on a supported platform |
| Andrew Kaylor | 5808c7d | 2012-09-28 17:35:20 +0000 | [diff] [blame] | 277 | if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" ) |
| Eli Bendersky | 5262ad2 | 2012-03-13 08:33:15 +0000 | [diff] [blame] | 278 | message(FATAL_ERROR |
| 279 | "Intel JIT API support is available on Linux and Windows only.") |
| 280 | endif() |
| 281 | endif( LLVM_USE_INTEL_JITEVENTS ) |
| 282 | |
| 283 | option(LLVM_USE_OPROFILE |
| 284 | "Use opagent JIT interface to inform OProfile about JIT code" OFF) |
| 285 | |
| Joel Jones | 54594f2 | 2012-12-13 15:25:07 +0000 | [diff] [blame] | 286 | # If enabled, verify we are on a platform that supports oprofile. |
| Eli Bendersky | 5262ad2 | 2012-03-13 08:33:15 +0000 | [diff] [blame] | 287 | if( LLVM_USE_OPROFILE ) |
| 288 | if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" ) |
| Matt Arsenault | d31b63e | 2014-06-12 21:27:03 +0000 | [diff] [blame] | 289 | message(FATAL_ERROR "OProfile support is available on Linux only.") |
| Eli Bendersky | 5262ad2 | 2012-03-13 08:33:15 +0000 | [diff] [blame] | 290 | endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" ) |
| 291 | endif( LLVM_USE_OPROFILE ) |
| 292 | |
| Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 293 | set(LLVM_USE_SANITIZER "" CACHE STRING |
| 294 | "Define the sanitizer used to build binaries and tests.") |
| 295 | |
| Eric Christopher | 3987806 | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 296 | option(LLVM_USE_SPLIT_DWARF |
| 297 | "Use -gsplit-dwarf when compiling llvm." OFF) |
| 298 | |
| Alp Toker | 6ae079e | 2014-06-06 06:39:00 +0000 | [diff] [blame] | 299 | option(WITH_POLLY "Build LLVM with Polly" ON) |
| 300 | option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF) |
| 301 | |
| Daniel Dunbar | 10fa2df | 2011-11-04 19:04:35 +0000 | [diff] [blame] | 302 | # Define an option controlling whether we should build for 32-bit on 64-bit |
| 303 | # platforms, where supported. |
| 304 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 305 | # TODO: support other platforms and toolchains. |
| 306 | option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF) |
| 307 | endif() |
| 308 | |
| Daniel Dunbar | 10fa2df | 2011-11-04 19:04:35 +0000 | [diff] [blame] | 309 | # Define the default arguments to use with 'lit', and an option for the user to |
| 310 | # override. |
| 311 | set(LIT_ARGS_DEFAULT "-sv") |
| Reid Kleckner | 3b7e6ef | 2015-08-11 21:24:59 +0000 | [diff] [blame^] | 312 | if (MSVC_IDE OR XCODE) |
| Daniel Dunbar | 10fa2df | 2011-11-04 19:04:35 +0000 | [diff] [blame] | 313 | set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar") |
| 314 | endif() |
| 315 | set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit") |
| 316 | |
| NAKAMURA Takumi | ba330ae | 2011-12-11 03:07:53 +0000 | [diff] [blame] | 317 | # On Win32 hosts, provide an option to specify the path to the GnuWin32 tools. |
| 318 | if( WIN32 AND NOT CYGWIN ) |
| Daniel Dunbar | 10fa2df | 2011-11-04 19:04:35 +0000 | [diff] [blame] | 319 | set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools") |
| 320 | endif() |
| 321 | |
| Daniel Dunbar | 511e296 | 2011-11-04 19:04:37 +0000 | [diff] [blame] | 322 | # Define options to control the inclusion and default build behavior for |
| Chandler Carruth | ea56494 | 2013-10-02 15:42:23 +0000 | [diff] [blame] | 323 | # components which may not strictly be necessary (tools, examples, and tests). |
| Daniel Dunbar | 511e296 | 2011-11-04 19:04:37 +0000 | [diff] [blame] | 324 | # |
| 325 | # This is primarily to support building smaller or faster project files. |
| 326 | option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON) |
| 327 | option(LLVM_BUILD_TOOLS |
| 328 | "Build the LLVM tools. If OFF, just generate build targets." ON) |
| 329 | |
| Pete Cooper | 4da0a0c | 2014-04-02 22:49:58 +0000 | [diff] [blame] | 330 | option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON) |
| 331 | |
| Alexey Samsonov | 693e1a5 | 2013-10-04 10:41:38 +0000 | [diff] [blame] | 332 | option(LLVM_BUILD_RUNTIME |
| 333 | "Build the LLVM runtime libraries." ON) |
| Daniel Dunbar | 511e296 | 2011-11-04 19:04:37 +0000 | [diff] [blame] | 334 | option(LLVM_BUILD_EXAMPLES |
| 335 | "Build the LLVM example programs. If OFF, just generate build targets." OFF) |
| 336 | option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON) |
| 337 | |
| 338 | option(LLVM_BUILD_TESTS |
| 339 | "Build LLVM unit tests. If OFF, just generate build targets." OFF) |
| 340 | option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON) |
| 341 | |
| Michael Gottesman | 4d35b90 | 2013-08-24 07:25:21 +0000 | [diff] [blame] | 342 | option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF) |
| 343 | option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON) |
| Reid Kleckner | 9f5eb63 | 2014-04-18 21:45:25 +0000 | [diff] [blame] | 344 | option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF) |
| 345 | option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF) |
| Michael Gottesman | 4d35b90 | 2013-08-24 07:25:21 +0000 | [diff] [blame] | 346 | |
| Alexey Samsonov | f431a83 | 2014-02-27 08:59:01 +0000 | [diff] [blame] | 347 | option (LLVM_BUILD_EXTERNAL_COMPILER_RT |
| 348 | "Build compiler-rt as an external project." OFF) |
| 349 | |
| Chris Bieneman | adffd01 | 2014-10-23 17:22:14 +0000 | [diff] [blame] | 350 | option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" OFF) |
| Chris Bieneman | 168ddf4 | 2015-04-13 21:29:46 +0000 | [diff] [blame] | 351 | option(LLVM_DYLIB_EXPORT_ALL "Export all symbols from libLLVM.dylib (default is C API only" OFF) |
| Chris Bieneman | 5d388e1 | 2014-12-09 18:49:55 +0000 | [diff] [blame] | 352 | option(LLVM_DISABLE_LLVM_DYLIB_ATEXIT "Disable llvm-shlib's atexit destructors." ON) |
| 353 | if(LLVM_DISABLE_LLVM_DYLIB_ATEXIT) |
| 354 | set(DISABLE_LLVM_DYLIB_ATEXIT 1) |
| 355 | endif() |
| Chris Bieneman | adffd01 | 2014-10-23 17:22:14 +0000 | [diff] [blame] | 356 | |
| Chris Bieneman | da91ceb | 2015-03-10 20:48:02 +0000 | [diff] [blame] | 357 | option(LLVM_OPTIMIZED_TABLEGEN "Force TableGen to be built with optimization" OFF) |
| 358 | if(CMAKE_CROSSCOMPILING OR (LLVM_OPTIMIZED_TABLEGEN AND LLVM_ENABLE_ASSERTIONS)) |
| 359 | set(LLVM_USE_HOST_TOOLS ON) |
| 360 | endif() |
| 361 | |
| Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 362 | # All options referred to from HandleLLVMOptions have to be specified |
| Oscar Fuentes | 1276e32 | 2011-03-01 22:31:19 +0000 | [diff] [blame] | 363 | # BEFORE this include, otherwise options will not be correctly set on |
| 364 | # first cmake run |
| 365 | include(config-ix) |
| Sebastian Pop | faeca29 | 2012-08-20 19:56:52 +0000 | [diff] [blame] | 366 | |
| 367 | # By default, we target the host, but this can be overridden at CMake |
| 368 | # invocation time. |
| 369 | set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING |
| 370 | "Default target for which LLVM will generate code." ) |
| NAKAMURA Takumi | f9573f1 | 2012-12-10 07:14:29 +0000 | [diff] [blame] | 371 | set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}") |
| Sebastian Pop | faeca29 | 2012-08-20 19:56:52 +0000 | [diff] [blame] | 372 | |
| Oscar Fuentes | 1276e32 | 2011-03-01 22:31:19 +0000 | [diff] [blame] | 373 | include(HandleLLVMOptions) |
| 374 | |
| Reid Kleckner | 63784ba | 2013-06-24 13:21:16 +0000 | [diff] [blame] | 375 | # Verify that we can find a Python 2 interpreter. Python 3 is unsupported. |
| Chandler Carruth | d86ab89 | 2014-12-29 19:36:05 +0000 | [diff] [blame] | 376 | # FIXME: We should support systems with only Python 3, but that requires work |
| 377 | # on LLDB. |
| 378 | set(Python_ADDITIONAL_VERSIONS 2.7) |
| Daniel Dunbar | 21079ca | 2011-11-04 23:04:05 +0000 | [diff] [blame] | 379 | include(FindPythonInterp) |
| 380 | if( NOT PYTHONINTERP_FOUND ) |
| 381 | message(FATAL_ERROR |
| 382 | "Unable to find Python interpreter, required for builds and testing. |
| 383 | |
| 384 | Please install Python or specify the PYTHON_EXECUTABLE CMake variable.") |
| 385 | endif() |
| 386 | |
| Chandler Carruth | d86ab89 | 2014-12-29 19:36:05 +0000 | [diff] [blame] | 387 | if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 ) |
| 388 | message(FATAL_ERROR "Python 2.7 or newer is required") |
| 389 | endif() |
| 390 | |
| Daniel Dunbar | 6437126 | 2011-11-05 06:30:03 +0000 | [diff] [blame] | 391 | ###### |
| 392 | # LLVMBuild Integration |
| 393 | # |
| 394 | # We use llvm-build to generate all the data required by the CMake based |
| 395 | # build system in one swoop: |
| 396 | # |
| 397 | # - We generate a file (a CMake fragment) in the object root which contains |
| 398 | # all the definitions that are required by CMake. |
| 399 | # |
| 400 | # - We generate the library table used by llvm-config. |
| 401 | # |
| 402 | # - We generate the dependencies for the CMake fragment, so that we will |
| 403 | # automatically reconfigure outselves. |
| 404 | |
| 405 | set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build") |
| 406 | set(LLVMCONFIGLIBRARYDEPENDENCIESINC |
| Daniel Dunbar | ab0ad4e | 2011-12-01 20:18:09 +0000 | [diff] [blame] | 407 | "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc") |
| Daniel Dunbar | 6437126 | 2011-11-05 06:30:03 +0000 | [diff] [blame] | 408 | set(LLVMBUILDCMAKEFRAG |
| 409 | "${LLVM_BINARY_DIR}/LLVMBuild.cmake") |
| Preston Gurd | e65f4e6 | 2012-05-07 19:38:40 +0000 | [diff] [blame] | 410 | |
| 411 | # Create the list of optional components that are enabled |
| 412 | if (LLVM_USE_INTEL_JITEVENTS) |
| 413 | set(LLVMOPTIONALCOMPONENTS IntelJITEvents) |
| 414 | endif (LLVM_USE_INTEL_JITEVENTS) |
| 415 | if (LLVM_USE_OPROFILE) |
| 416 | set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT) |
| 417 | endif (LLVM_USE_OPROFILE) |
| 418 | |
| Daniel Dunbar | 6437126 | 2011-11-05 06:30:03 +0000 | [diff] [blame] | 419 | message(STATUS "Constructing LLVMBuild project information") |
| 420 | execute_process( |
| 421 | COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL} |
| Daniel Dunbar | 807c6e4 | 2011-11-10 01:16:48 +0000 | [diff] [blame] | 422 | --native-target "${LLVM_NATIVE_ARCH}" |
| 423 | --enable-targets "${LLVM_TARGETS_TO_BUILD}" |
| Preston Gurd | e65f4e6 | 2012-05-07 19:38:40 +0000 | [diff] [blame] | 424 | --enable-optional-components "${LLVMOPTIONALCOMPONENTS}" |
| Daniel Dunbar | 6437126 | 2011-11-05 06:30:03 +0000 | [diff] [blame] | 425 | --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC} |
| 426 | --write-cmake-fragment ${LLVMBUILDCMAKEFRAG} |
| Michael Gottesman | 21c6948 | 2013-08-15 04:16:12 +0000 | [diff] [blame] | 427 | OUTPUT_VARIABLE LLVMBUILDOUTPUT |
| Daniel Dunbar | 6437126 | 2011-11-05 06:30:03 +0000 | [diff] [blame] | 428 | ERROR_VARIABLE LLVMBUILDERRORS |
| 429 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 430 | ERROR_STRIP_TRAILING_WHITESPACE |
| 431 | RESULT_VARIABLE LLVMBUILDRESULT) |
| 432 | |
| 433 | # On Win32, CMake doesn't properly handle piping the default output/error |
| 434 | # streams into the GUI console. So, we explicitly catch and report them. |
| 435 | if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "") |
| 436 | message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}") |
| 437 | endif() |
| 438 | if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" ) |
| 439 | message(FATAL_ERROR |
| 440 | "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}") |
| 441 | endif() |
| 442 | |
| 443 | # Include the generated CMake fragment. This will define properties from the |
| 444 | # LLVMBuild files in a format which is easy to consume from CMake, and will add |
| 445 | # the dependencies so that CMake will reconfigure properly when the LLVMBuild |
| 446 | # files change. |
| 447 | include(${LLVMBUILDCMAKEFRAG}) |
| 448 | |
| 449 | ###### |
| 450 | |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 451 | # Configure all of the various header file fragments LLVM uses which depend on |
| 452 | # configuration variables. |
| Andy Gibbs | f5dede1 | 2013-06-26 07:57:53 +0000 | [diff] [blame] | 453 | set(LLVM_ENUM_TARGETS "") |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 454 | set(LLVM_ENUM_ASM_PRINTERS "") |
| 455 | set(LLVM_ENUM_ASM_PARSERS "") |
| 456 | set(LLVM_ENUM_DISASSEMBLERS "") |
| 457 | foreach(t ${LLVM_TARGETS_TO_BUILD}) |
| 458 | set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} ) |
| Andy Gibbs | f5dede1 | 2013-06-26 07:57:53 +0000 | [diff] [blame] | 459 | |
| 460 | list(FIND LLVM_ALL_TARGETS ${t} idx) |
| 461 | list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy) |
| 462 | if( idx LESS 0 AND idy LESS 0 ) |
| 463 | message(FATAL_ERROR "The target `${t}' does not exist. |
| 464 | It should be one of\n${LLVM_ALL_TARGETS}") |
| 465 | else() |
| 466 | set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n") |
| 467 | endif() |
| 468 | |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 469 | file(GLOB asmp_file "${td}/*AsmPrinter.cpp") |
| 470 | if( asmp_file ) |
| 471 | set(LLVM_ENUM_ASM_PRINTERS |
| 472 | "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n") |
| 473 | endif() |
| 474 | if( EXISTS ${td}/AsmParser/CMakeLists.txt ) |
| 475 | set(LLVM_ENUM_ASM_PARSERS |
| 476 | "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n") |
| 477 | endif() |
| 478 | if( EXISTS ${td}/Disassembler/CMakeLists.txt ) |
| 479 | set(LLVM_ENUM_DISASSEMBLERS |
| 480 | "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n") |
| 481 | endif() |
| 482 | endforeach(t) |
| 483 | |
| 484 | # Produce the target definition files, which provide a way for clients to easily |
| 485 | # include various classes of targets. |
| 486 | configure_file( |
| 487 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 488 | ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 489 | ) |
| 490 | configure_file( |
| 491 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 492 | ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 493 | ) |
| 494 | configure_file( |
| 495 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 496 | ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 497 | ) |
| 498 | configure_file( |
| 499 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 500 | ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def |
| Daniel Dunbar | 4a2eab0 | 2011-11-04 19:04:42 +0000 | [diff] [blame] | 501 | ) |
| 502 | |
| 503 | # Configure the three LLVM configuration header files. |
| Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 504 | configure_file( |
| 505 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 506 | ${LLVM_INCLUDE_DIR}/llvm/Config/config.h) |
| Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 507 | configure_file( |
| 508 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 509 | ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h) |
| Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 510 | configure_file( |
| 511 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 512 | ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h) |
| Oscar Fuentes | edfc184 | 2011-01-09 14:34:39 +0000 | [diff] [blame] | 513 | |
| NAKAMURA Takumi | 0ec65f1 | 2014-01-19 12:47:22 +0000 | [diff] [blame] | 514 | # They are not referenced. See set_output_directory(). |
| 515 | set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin ) |
| Chandler Carruth | a78e24e | 2014-12-29 11:16:19 +0000 | [diff] [blame] | 516 | set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) |
| 517 | set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 518 | |
| Rafael Espindola | 478873c | 2014-02-22 13:29:31 +0000 | [diff] [blame] | 519 | set(CMAKE_BUILD_WITH_INSTALL_RPATH ON) |
| 520 | if (APPLE) |
| Rafael Espindola | c80968e | 2014-02-28 13:48:03 +0000 | [diff] [blame] | 521 | set(CMAKE_INSTALL_NAME_DIR "@rpath") |
| Rafael Espindola | 478873c | 2014-02-22 13:29:31 +0000 | [diff] [blame] | 522 | set(CMAKE_INSTALL_RPATH "@executable_path/../lib") |
| 523 | else(UNIX) |
| Bernard Ogden | 301bafe | 2014-02-24 22:23:43 +0000 | [diff] [blame] | 524 | if(NOT DEFINED CMAKE_INSTALL_RPATH) |
| Chandler Carruth | a78e24e | 2014-12-29 11:16:19 +0000 | [diff] [blame] | 525 | set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}") |
| Reid Kleckner | 916698d | 2015-08-11 20:28:28 +0000 | [diff] [blame] | 526 | if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") |
| Ed Maste | 644aef8 | 2014-03-09 18:48:45 +0000 | [diff] [blame] | 527 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin") |
| Viktor Kutuzov | 5e0db8b | 2014-08-01 19:23:15 +0000 | [diff] [blame] | 528 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin") |
| Ed Maste | 644aef8 | 2014-03-09 18:48:45 +0000 | [diff] [blame] | 529 | endif() |
| Bernard Ogden | 301bafe | 2014-02-24 22:23:43 +0000 | [diff] [blame] | 530 | endif(NOT DEFINED CMAKE_INSTALL_RPATH) |
| Rafael Espindola | 478873c | 2014-02-22 13:29:31 +0000 | [diff] [blame] | 531 | endif() |
| Rafael Espindola | 6ad1b3f | 2013-12-19 23:13:58 +0000 | [diff] [blame] | 532 | |
| Rafael Espindola | f9dcf90 | 2014-11-07 15:33:56 +0000 | [diff] [blame] | 533 | # Work around a broken bfd ld behavior. When linking a binary with a |
| 534 | # foo.so library, it will try to find any library that foo.so uses and |
| 535 | # check its symbols. This is wasteful (the check was done when foo.so |
| 536 | # was created) and can fail since it is not the dynamic linker and |
| 537 | # doesn't know how to handle search paths correctly. |
| Rafael Espindola | 9f0ca31 | 2015-06-22 18:24:01 +0000 | [diff] [blame] | 538 | if (UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS") |
| Rafael Espindola | f9dcf90 | 2014-11-07 15:33:56 +0000 | [diff] [blame] | 539 | set(CMAKE_EXE_LINKER_FLAGS |
| 540 | "${CMAKE_EXE_LINKER_FLAGS} -Wl,-allow-shlib-undefined") |
| 541 | endif() |
| 542 | |
| Oscar Fuentes | 210b06a | 2011-02-14 20:13:58 +0000 | [diff] [blame] | 543 | set(CMAKE_INCLUDE_CURRENT_DIR ON) |
| 544 | |
| NAKAMURA Takumi | 03932fb | 2013-12-16 15:05:39 +0000 | [diff] [blame] | 545 | include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR}) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 546 | |
| Chris Bieneman | 5007741 | 2014-09-03 23:21:18 +0000 | [diff] [blame] | 547 | # when crosscompiling import the executable targets from a file |
| Chris Bieneman | da91ceb | 2015-03-10 20:48:02 +0000 | [diff] [blame] | 548 | if(LLVM_USE_HOST_TOOLS) |
| Chris Bieneman | 5007741 | 2014-09-03 23:21:18 +0000 | [diff] [blame] | 549 | include(CrossCompile) |
| Chris Bieneman | da91ceb | 2015-03-10 20:48:02 +0000 | [diff] [blame] | 550 | endif(LLVM_USE_HOST_TOOLS) |
| Chris Bieneman | 5007741 | 2014-09-03 23:21:18 +0000 | [diff] [blame] | 551 | |
| Reid Kleckner | 916698d | 2015-08-11 20:28:28 +0000 | [diff] [blame] | 552 | if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") |
| David Chisnall | 7945013 | 2013-02-14 15:40:44 +0000 | [diff] [blame] | 553 | # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM |
| 554 | # with libxml2, iconv.h, etc., we must add /usr/local paths. |
| 555 | include_directories("/usr/local/include") |
| 556 | link_directories("/usr/local/lib") |
| Reid Kleckner | 916698d | 2015-08-11 20:28:28 +0000 | [diff] [blame] | 557 | endif(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") |
| David Chisnall | 7945013 | 2013-02-14 15:40:44 +0000 | [diff] [blame] | 558 | |
| Edward O'Callaghan | 396ed2b | 2009-10-12 04:00:11 +0000 | [diff] [blame] | 559 | if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| Oscar Fuentes | 2d48f65 | 2011-07-17 17:35:15 +0000 | [diff] [blame] | 560 | SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h") |
| Edward O'Callaghan | 396ed2b | 2009-10-12 04:00:11 +0000 | [diff] [blame] | 561 | endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| 562 | |
| Rafael Espindola | 76f9227 | 2013-04-04 01:01:32 +0000 | [diff] [blame] | 563 | # Make sure we don't get -rdynamic in every binary. For those that need it, |
| Reid Kleckner | 3e8c445 | 2015-03-18 20:09:13 +0000 | [diff] [blame] | 564 | # use export_executable_symbols(target). |
| Rafael Espindola | 76f9227 | 2013-04-04 01:01:32 +0000 | [diff] [blame] | 565 | set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") |
| 566 | |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 567 | include(AddLLVM) |
| Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 568 | include(TableGen) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 569 | |
| Michael J. Spencer | 7c3a5ee | 2010-09-11 02:13:39 +0000 | [diff] [blame] | 570 | if( MINGW ) |
| Oscar Fuentes | 9bf2595 | 2011-01-07 20:31:03 +0000 | [diff] [blame] | 571 | # People report that -O3 is unreliable on MinGW. The traditional |
| 572 | # build also uses -O2 for that reason: |
| 573 | llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2") |
| 574 | endif() |
| 575 | |
| Oscar Fuentes | 5ed9626 | 2011-02-18 22:06:14 +0000 | [diff] [blame] | 576 | # Put this before tblgen. Else we have a circular dependence. |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 577 | add_subdirectory(lib/Support) |
| Peter Collingbourne | 84c287e | 2011-10-01 16:41:13 +0000 | [diff] [blame] | 578 | add_subdirectory(lib/TableGen) |
| Oscar Fuentes | 8807bdd | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 579 | |
| Oscar Fuentes | e352ca0 | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 580 | add_subdirectory(utils/TableGen) |
| 581 | |
| Oscar Fuentes | dc8d56e | 2008-11-15 00:24:38 +0000 | [diff] [blame] | 582 | add_subdirectory(include/llvm) |
| Oscar Fuentes | 8807bdd | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 583 | |
| Oscar Fuentes | 5ed9626 | 2011-02-18 22:06:14 +0000 | [diff] [blame] | 584 | add_subdirectory(lib) |
| Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 585 | |
| Pete Cooper | 4da0a0c | 2014-04-02 22:49:58 +0000 | [diff] [blame] | 586 | if( LLVM_INCLUDE_UTILS ) |
| 587 | add_subdirectory(utils/FileCheck) |
| Alexey Samsonov | e825c85 | 2014-05-07 16:54:00 +0000 | [diff] [blame] | 588 | add_subdirectory(utils/PerfectShuffle) |
| Pete Cooper | 4da0a0c | 2014-04-02 22:49:58 +0000 | [diff] [blame] | 589 | add_subdirectory(utils/count) |
| 590 | add_subdirectory(utils/not) |
| 591 | add_subdirectory(utils/llvm-lit) |
| 592 | add_subdirectory(utils/yaml-bench) |
| 593 | else() |
| 594 | if ( LLVM_INCLUDE_TESTS ) |
| 595 | message(FATAL_ERROR "Including tests when not building utils will not work. |
| 596 | Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.") |
| 597 | endif() |
| 598 | endif() |
| Douglas Gregor | 289dfc5 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 599 | |
| NAKAMURA Takumi | 5a0234f | 2014-01-31 17:32:46 +0000 | [diff] [blame] | 600 | if(LLVM_INCLUDE_TESTS) |
| 601 | add_subdirectory(utils/unittest) |
| 602 | endif() |
| 603 | |
| Peter Zotov | b20073c | 2014-12-01 19:50:23 +0000 | [diff] [blame] | 604 | foreach( binding ${LLVM_BINDINGS_LIST} ) |
| 605 | if( EXISTS "${LLVM_MAIN_SRC_DIR}/bindings/${binding}/CMakeLists.txt" ) |
| 606 | add_subdirectory(bindings/${binding}) |
| 607 | endif() |
| 608 | endforeach() |
| 609 | |
| Oscar Fuentes | afbe975 | 2009-03-06 01:16:52 +0000 | [diff] [blame] | 610 | add_subdirectory(projects) |
| Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 611 | |
| Sebastian Pop | f7d02d4 | 2014-03-11 22:42:07 +0000 | [diff] [blame] | 612 | if(WITH_POLLY) |
| 613 | if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt) |
| 614 | set(WITH_POLLY OFF) |
| 615 | endif() |
| 616 | endif(WITH_POLLY) |
| 617 | |
| Oscar Fuentes | bf03084 | 2010-09-25 20:43:06 +0000 | [diff] [blame] | 618 | if( LLVM_INCLUDE_TOOLS ) |
| 619 | add_subdirectory(tools) |
| 620 | endif() |
| Oscar Fuentes | acfd9ad | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 621 | |
| Oscar Fuentes | bf03084 | 2010-09-25 20:43:06 +0000 | [diff] [blame] | 622 | if( LLVM_INCLUDE_EXAMPLES ) |
| 623 | add_subdirectory(examples) |
| 624 | endif() |
| Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 625 | |
| Oscar Fuentes | bf03084 | 2010-09-25 20:43:06 +0000 | [diff] [blame] | 626 | if( LLVM_INCLUDE_TESTS ) |
| 627 | add_subdirectory(test) |
| Oscar Fuentes | bf03084 | 2010-09-25 20:43:06 +0000 | [diff] [blame] | 628 | add_subdirectory(unittests) |
| NAKAMURA Takumi | 4bb599c | 2010-10-26 05:08:27 +0000 | [diff] [blame] | 629 | if (MSVC) |
| Joel Jones | 54594f2 | 2012-12-13 15:25:07 +0000 | [diff] [blame] | 630 | # This utility is used to prevent crashing tests from calling Dr. Watson on |
| Michael J. Spencer | 279362d | 2010-10-11 19:55:38 +0000 | [diff] [blame] | 631 | # Windows. |
| 632 | add_subdirectory(utils/KillTheDoctor) |
| 633 | endif() |
| Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 634 | |
| 635 | # Add a global check rule now that all subdirectories have been traversed |
| 636 | # and we know the total set of lit testsuites. |
| 637 | get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES) |
| 638 | get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS) |
| 639 | get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS) |
| 640 | get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS) |
| 641 | add_lit_target(check-all |
| 642 | "Running all regression tests" |
| 643 | ${LLVM_LIT_TESTSUITES} |
| 644 | PARAMS ${LLVM_LIT_PARAMS} |
| 645 | DEPENDS ${LLVM_LIT_DEPENDS} |
| 646 | ARGS ${LLVM_LIT_EXTRA_ARGS} |
| 647 | ) |
| Oscar Fuentes | bf03084 | 2010-09-25 20:43:06 +0000 | [diff] [blame] | 648 | endif() |
| Michael J. Spencer | 10d274d | 2010-09-24 09:01:13 +0000 | [diff] [blame] | 649 | |
| Michael Gottesman | 4d35b90 | 2013-08-24 07:25:21 +0000 | [diff] [blame] | 650 | if (LLVM_INCLUDE_DOCS) |
| 651 | add_subdirectory(docs) |
| 652 | endif() |
| 653 | |
| Oscar Fuentes | a389c58 | 2010-08-09 03:26:43 +0000 | [diff] [blame] | 654 | add_subdirectory(cmake/modules) |
| 655 | |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 656 | if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) |
| NAKAMURA Takumi | c70006e | 2014-02-10 10:50:55 +0000 | [diff] [blame] | 657 | install(DIRECTORY include/llvm include/llvm-c |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 658 | DESTINATION include |
| Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 659 | COMPONENT llvm-headers |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 660 | FILES_MATCHING |
| 661 | PATTERN "*.def" |
| 662 | PATTERN "*.h" |
| 663 | PATTERN "*.td" |
| 664 | PATTERN "*.inc" |
| 665 | PATTERN "LICENSE.TXT" |
| 666 | PATTERN ".svn" EXCLUDE |
| 667 | ) |
| Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 668 | |
| NAKAMURA Takumi | c70006e | 2014-02-10 10:50:55 +0000 | [diff] [blame] | 669 | install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 670 | DESTINATION include |
| Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 671 | COMPONENT llvm-headers |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 672 | FILES_MATCHING |
| 673 | PATTERN "*.def" |
| 674 | PATTERN "*.h" |
| 675 | PATTERN "*.gen" |
| 676 | PATTERN "*.inc" |
| 677 | # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def" |
| 678 | PATTERN "CMakeFiles" EXCLUDE |
| Alp Toker | 65faa29 | 2014-06-12 11:25:18 +0000 | [diff] [blame] | 679 | PATTERN "config.h" EXCLUDE |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 680 | PATTERN ".svn" EXCLUDE |
| 681 | ) |
| Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 682 | |
| 683 | if (NOT CMAKE_CONFIGURATION_TYPES) |
| 684 | add_custom_target(installhdrs |
| 685 | DEPENDS ${name} |
| 686 | COMMAND "${CMAKE_COMMAND}" |
| 687 | -DCMAKE_INSTALL_COMPONENT=llvm-headers |
| 688 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 689 | endif() |
| Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 690 | endif() |