Oscar Fuentes | 34fc517 | 2009-04-04 22:52:02 +0000 | [diff] [blame] | 1 | # See docs/CMake.html for instructions about how to build LLVM with CMake. |
| 2 | |
Cedric Venet | 1d083f4 | 2008-10-30 21:22:00 +0000 | [diff] [blame] | 3 | project(LLVM) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 4 | cmake_minimum_required(VERSION 2.6.1) |
| 5 | |
| 6 | set(PACKAGE_NAME llvm) |
Daniel Dunbar | e53cd1a | 2010-06-25 16:29:14 +0000 | [diff] [blame] | 7 | set(PACKAGE_VERSION 2.8svn) |
Chris Lattner | 8c46e85 | 2009-01-28 17:49:03 +0000 | [diff] [blame] | 8 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
Oscar Fuentes | f7e73b9 | 2008-10-25 03:49:35 +0000 | [diff] [blame] | 9 | set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 10 | |
Oscar Fuentes | 6326a0d | 2008-11-14 03:43:18 +0000 | [diff] [blame] | 11 | if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) |
| 12 | message(FATAL_ERROR "In-source builds are not allowed. |
| 13 | CMake would overwrite the makefiles distributed with LLVM. |
| 14 | Please create a directory and run cmake from there, passing the path |
| 15 | to this source directory as the last argument. |
| 16 | This process created the file `CMakeCache.txt' and the directory `CMakeFiles'. |
| 17 | Please delete them.") |
| 18 | endif() |
| 19 | |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 20 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 21 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 22 | set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 23 | set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 24 | set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
| 25 | set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin) |
| 26 | set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples) |
Oscar Fuentes | af0f65f | 2009-06-12 02:49:53 +0000 | [diff] [blame] | 27 | set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 28 | |
Oscar Fuentes | 6761c5d | 2009-07-13 21:58:44 +0000 | [diff] [blame] | 29 | if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) |
| 30 | file(GLOB_RECURSE |
| 31 | tablegenned_files_on_include_dir |
| 32 | "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen") |
| 33 | file(GLOB_RECURSE |
| 34 | tablegenned_files_on_lib_dir |
| 35 | "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc") |
| 36 | if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir) |
| 37 | message(FATAL_ERROR "Apparently there is a previous in-source build, |
| 38 | probably as the result of running `configure' and `make' on |
| 39 | ${LLVM_MAIN_SRC_DIR}. |
| 40 | This may cause problems. The suspicious files are: |
| 41 | ${tablegenned_files_on_lib_dir} |
| 42 | ${tablegenned_files_on_include_dir} |
| 43 | Please clean the source directory.") |
| 44 | endif() |
| 45 | endif() |
| 46 | |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 47 | set(LLVM_ALL_TARGETS |
| 48 | Alpha |
| 49 | ARM |
Jakob Stoklund Olesen | 73b7bb7 | 2009-08-02 17:32:37 +0000 | [diff] [blame] | 50 | Blackfin |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 51 | CBackend |
| 52 | CellSPU |
| 53 | CppBackend |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 54 | Mips |
Wesley Peck | c84a956 | 2010-03-05 15:15:55 +0000 | [diff] [blame] | 55 | MBlaze |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 56 | MSIL |
Richard Pennington | a51984b | 2009-07-09 20:27:09 +0000 | [diff] [blame] | 57 | MSP430 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 58 | PIC16 |
| 59 | PowerPC |
| 60 | Sparc |
Daniel Dunbar | 3f189a3 | 2009-07-20 00:24:17 +0000 | [diff] [blame] | 61 | SystemZ |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 62 | X86 |
| 63 | XCore |
| 64 | ) |
| 65 | |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 66 | if( MSVC ) |
| 67 | set(LLVM_TARGETS_TO_BUILD X86 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 68 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 69 | else( MSVC ) |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 70 | set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} |
| 71 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 72 | endif( MSVC ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 73 | |
Oscar Fuentes | 8e3c169 | 2009-11-12 06:48:09 +0000 | [diff] [blame] | 74 | set(C_INCLUDE_DIRS "" CACHE STRING |
| 75 | "Colon separated list of directories clang will search for headers.") |
| 76 | |
Oscar Fuentes | a9ff139 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 77 | set(LLVM_TARGET_ARCH "host" |
| 78 | CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.") |
| 79 | |
Oscar Fuentes | 4b44283 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 80 | option(LLVM_ENABLE_THREADS "Use threads if available." ON) |
| 81 | |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 82 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 83 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 84 | else() |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 85 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 86 | endif() |
| 87 | |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 88 | if( LLVM_ENABLE_ASSERTIONS ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 89 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
Oscar Fuentes | e8c81ea | 2009-07-05 23:58:20 +0000 | [diff] [blame] | 90 | if( NOT MSVC ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 91 | add_definitions( -D_DEBUG ) |
| 92 | endif() |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 93 | # On Release builds cmake automatically defines NDEBUG, so we |
| 94 | # explicitly undefine it: |
| 95 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 96 | add_definitions( -UNDEBUG ) |
| 97 | endif() |
| 98 | else() |
| 99 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 100 | add_definitions( -DNDEBUG ) |
| 101 | endif() |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 102 | endif() |
| 103 | |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 104 | if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) |
| 105 | set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) |
| 106 | endif() |
| 107 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 108 | set(LLVM_ENUM_TARGETS "") |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 109 | foreach(c ${LLVM_TARGETS_TO_BUILD}) |
| 110 | list(FIND LLVM_ALL_TARGETS ${c} idx) |
| 111 | if( idx LESS 0 ) |
Gabor Greif | 9befba8 | 2009-08-12 08:37:37 +0000 | [diff] [blame] | 112 | message(FATAL_ERROR "The target `${c}' does not exist. |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 113 | It should be one of\n${LLVM_ALL_TARGETS}") |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 114 | else() |
| 115 | set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n") |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 116 | endif() |
| 117 | endforeach(c) |
| 118 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 119 | # Produce llvm/Config/Targets.def |
| 120 | configure_file( |
| 121 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in |
| 122 | ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def |
| 123 | ) |
| 124 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 125 | set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm) |
| 126 | |
| 127 | # Add path for custom modules |
| 128 | set(CMAKE_MODULE_PATH |
| 129 | ${CMAKE_MODULE_PATH} |
| 130 | "${LLVM_MAIN_SRC_DIR}/cmake" |
| 131 | "${LLVM_MAIN_SRC_DIR}/cmake/modules" |
| 132 | ) |
| 133 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 134 | include(AddLLVMDefinitions) |
| 135 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 136 | if(WIN32) |
Oscar Fuentes | 4fd38b8 | 2008-10-30 17:15:54 +0000 | [diff] [blame] | 137 | if(CYGWIN) |
| 138 | set(LLVM_ON_WIN32 0) |
| 139 | set(LLVM_ON_UNIX 1) |
| 140 | else(CYGWIN) |
| 141 | set(LLVM_ON_WIN32 1) |
| 142 | set(LLVM_ON_UNIX 0) |
| 143 | endif(CYGWIN) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 144 | set(LTDL_SHLIB_EXT ".dll") |
| 145 | set(EXEEXT ".exe") |
| 146 | # Maximum path length is 160 for non-unicode paths |
| 147 | set(MAXPATHLEN 160) |
| 148 | else(WIN32) |
| 149 | if(UNIX) |
| 150 | set(LLVM_ON_WIN32 0) |
| 151 | set(LLVM_ON_UNIX 1) |
Daniel Dunbar | 05dafd8 | 2009-09-22 06:09:37 +0000 | [diff] [blame] | 152 | if(APPLE) |
| 153 | set(LTDL_SHLIB_EXT ".dylib") |
| 154 | else(APPLE) |
| 155 | set(LTDL_SHLIB_EXT ".so") |
| 156 | endif(APPLE) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 157 | set(EXEEXT "") |
| 158 | # FIXME: Maximum path length is currently set to 'safe' fixed value |
| 159 | set(MAXPATHLEN 2024) |
| 160 | else(UNIX) |
| 161 | MESSAGE(SEND_ERROR "Unable to determine platform") |
| 162 | endif(UNIX) |
| 163 | endif(WIN32) |
| 164 | |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 165 | include(config-ix) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 166 | |
Oscar Fuentes | 1e02bf0 | 2009-08-18 15:29:35 +0000 | [diff] [blame] | 167 | option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 168 | |
Douglas Gregor | 318de60 | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 169 | set(ENABLE_PIC 0) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 170 | if( LLVM_ENABLE_PIC ) |
Daniel Dunbar | 3620618 | 2009-11-08 00:34:22 +0000 | [diff] [blame] | 171 | if( XCODE ) |
| 172 | # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't |
| 173 | # know how to disable this, so just force ENABLE_PIC off for now. |
| 174 | message(STATUS "Warning: -fPIC not supported with Xcode.") |
| 175 | else( XCODE ) |
| 176 | if( SUPPORTS_FPIC_FLAG ) |
| 177 | message(STATUS "Building with -fPIC") |
| 178 | add_llvm_definitions(-fPIC) |
| 179 | set(ENABLE_PIC 1) |
| 180 | else( SUPPORTS_FPIC_FLAG ) |
| 181 | message(STATUS "Warning: -fPIC not supported.") |
| 182 | endif() |
| 183 | endif() |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 184 | endif() |
| 185 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 186 | set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} ) |
| 187 | set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 188 | set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 189 | |
| 190 | # set(CMAKE_VERBOSE_MAKEFILE true) |
| 191 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 192 | add_llvm_definitions( -D__STDC_LIMIT_MACROS ) |
| 193 | add_llvm_definitions( -D__STDC_CONSTANT_MACROS ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 194 | |
Daniel Dunbar | 9ea3a2c | 2009-12-01 19:11:36 +0000 | [diff] [blame] | 195 | # MSVC has a gazillion warnings with this. |
| 196 | if( MSVC ) |
| 197 | option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF) |
| 198 | else( MSVC ) |
| 199 | option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON) |
| 200 | endif() |
| 201 | |
Oscar Fuentes | f12a900 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 202 | option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON) |
| 203 | option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) |
| 204 | |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 205 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 206 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 207 | option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF) |
| 208 | if( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 209 | message(STATUS "Building 32 bits executables and libraries.") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 210 | add_llvm_definitions( -m32 ) |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 211 | list(APPEND CMAKE_EXE_LINKER_FLAGS -m32) |
| 212 | list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32) |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 213 | endif( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 214 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 215 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 216 | if( MSVC ) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 217 | # List of valid CRTs for MSVC |
| 218 | set(MSVC_CRT |
| 219 | MD |
Oscar Fuentes | 3f0cc8c | 2010-03-18 13:52:05 +0000 | [diff] [blame] | 220 | MDd |
| 221 | MT |
| 222 | MTd) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 223 | |
| 224 | set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 225 | add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS ) |
| 226 | add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS ) |
| 227 | add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE ) |
| 228 | add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 ) |
| 229 | add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 ) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 230 | |
Daniel Dunbar | 2c4df5a | 2009-07-19 01:35:10 +0000 | [diff] [blame] | 231 | # Suppress 'new behavior: elements of array 'array' will be default initialized' |
| 232 | add_llvm_definitions( -wd4351 ) |
| 233 | |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 234 | if (NOT ${LLVM_USE_CRT} STREQUAL "") |
| 235 | list(FIND MSVC_CRT ${LLVM_USE_CRT} idx) |
| 236 | if (idx LESS 0) |
| 237 | message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}") |
| 238 | endif (idx LESS 0) |
| 239 | add_llvm_definitions("/${LLVM_USE_CRT}") |
| 240 | message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}") |
| 241 | endif (NOT ${LLVM_USE_CRT} STREQUAL "") |
Oscar Fuentes | f12a900 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 242 | |
| 243 | # Enable warnings |
| 244 | if (LLVM_ENABLE_WARNINGS) |
| 245 | add_llvm_definitions( /W4 /Wall ) |
| 246 | if (LLVM_ENABLE_PEDANTIC) |
| 247 | # No MSVC equivalent available |
| 248 | endif (LLVM_ENABLE_PEDANTIC) |
| 249 | endif (LLVM_ENABLE_WARNINGS) |
| 250 | if (LLVM_ENABLE_WERROR) |
| 251 | add_llvm_definitions( /WX ) |
| 252 | endif (LLVM_ENABLE_WERROR) |
Oscar Fuentes | 2343b10 | 2009-11-30 23:50:14 +0000 | [diff] [blame] | 253 | elseif( CMAKE_COMPILER_IS_GNUCXX ) |
Oscar Fuentes | f12a900 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 254 | if (LLVM_ENABLE_WARNINGS) |
| 255 | add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings ) |
| 256 | if (LLVM_ENABLE_PEDANTIC) |
| 257 | add_llvm_definitions( -pedantic -Wno-long-long ) |
| 258 | endif (LLVM_ENABLE_PEDANTIC) |
| 259 | endif (LLVM_ENABLE_WARNINGS) |
| 260 | if (LLVM_ENABLE_WERROR) |
| 261 | add_llvm_definitions( -Werror ) |
| 262 | endif (LLVM_ENABLE_WERROR) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 263 | endif( MSVC ) |
| 264 | |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 265 | include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR}) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 266 | |
Edward O'Callaghan | c6cf5fe | 2009-10-12 04:00:11 +0000 | [diff] [blame] | 267 | if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| 268 | SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h") |
| 269 | endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| 270 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 271 | include(AddLLVM) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 272 | include(TableGen) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 273 | |
| 274 | add_subdirectory(lib/Support) |
| 275 | add_subdirectory(lib/System) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 276 | |
| 277 | # Everything else depends on Support and System: |
| 278 | set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} ) |
| 279 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 280 | set(LLVM_TABLEGEN "tblgen" CACHE |
Oscar Fuentes | 41bdedf | 2008-11-10 02:35:55 +0000 | [diff] [blame] | 281 | STRING "Native TableGen executable. Saves building one when cross-compiling.") |
Oscar Fuentes | 99b9489 | 2009-06-11 04:16:10 +0000 | [diff] [blame] | 282 | # Effective tblgen executable to be used: |
| 283 | set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN}) |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 284 | |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 285 | add_subdirectory(utils/TableGen) |
| 286 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 287 | if( CMAKE_CROSSCOMPILING ) |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 288 | # This adds a dependency on target `tblgen', so must go after utils/TableGen |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 289 | include( CrossCompileLLVM ) |
| 290 | endif( CMAKE_CROSSCOMPILING ) |
| 291 | |
Oscar Fuentes | 422fcf3 | 2008-11-15 00:24:38 +0000 | [diff] [blame] | 292 | add_subdirectory(include/llvm) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 293 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 294 | add_subdirectory(lib/VMCore) |
| 295 | add_subdirectory(lib/CodeGen) |
| 296 | add_subdirectory(lib/CodeGen/SelectionDAG) |
| 297 | add_subdirectory(lib/CodeGen/AsmPrinter) |
| 298 | add_subdirectory(lib/Bitcode/Reader) |
| 299 | add_subdirectory(lib/Bitcode/Writer) |
| 300 | add_subdirectory(lib/Transforms/Utils) |
| 301 | add_subdirectory(lib/Transforms/Instrumentation) |
Douglas Gregor | f1c3a86 | 2010-01-04 21:58:55 +0000 | [diff] [blame] | 302 | add_subdirectory(lib/Transforms/InstCombine) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 303 | add_subdirectory(lib/Transforms/Scalar) |
| 304 | add_subdirectory(lib/Transforms/IPO) |
| 305 | add_subdirectory(lib/Transforms/Hello) |
| 306 | add_subdirectory(lib/Linker) |
| 307 | add_subdirectory(lib/Analysis) |
| 308 | add_subdirectory(lib/Analysis/IPA) |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 309 | add_subdirectory(lib/MC) |
Daniel Dunbar | 4bd8dc3 | 2010-01-22 02:04:33 +0000 | [diff] [blame] | 310 | add_subdirectory(lib/MC/MCParser) |
Chris Lattner | 847da55 | 2010-07-20 18:25:19 +0000 | [diff] [blame^] | 311 | add_subdirectory(lib/MC/MCDisassembler) |
Daniel Dunbar | a177492 | 2009-09-22 07:38:44 +0000 | [diff] [blame] | 312 | add_subdirectory(test) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 313 | |
Douglas Gregor | 4d20c24 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 314 | add_subdirectory(utils/FileCheck) |
Daniel Dunbar | 48f7ce8 | 2009-09-24 06:23:57 +0000 | [diff] [blame] | 315 | add_subdirectory(utils/count) |
| 316 | add_subdirectory(utils/not) |
Douglas Gregor | 4d20c24 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 317 | |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 318 | set(LLVM_ENUM_ASM_PRINTERS "") |
| 319 | set(LLVM_ENUM_ASM_PARSERS "") |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 320 | set(LLVM_ENUM_DISASSEMBLERS "") |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 321 | foreach(t ${LLVM_TARGETS_TO_BUILD}) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 322 | message(STATUS "Targeting ${t}") |
| 323 | add_subdirectory(lib/Target/${t}) |
Daniel Dunbar | b5a8c08 | 2009-07-15 07:04:27 +0000 | [diff] [blame] | 324 | add_subdirectory(lib/Target/${t}/TargetInfo) |
Oscar Fuentes | cccecb8 | 2008-11-14 22:21:02 +0000 | [diff] [blame] | 325 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 326 | add_subdirectory(lib/Target/${t}/AsmPrinter) |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 327 | set(LLVM_ENUM_ASM_PRINTERS |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 328 | "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n") |
| 329 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 330 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 331 | add_subdirectory(lib/Target/${t}/AsmParser) |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 332 | set(LLVM_ENUM_ASM_PARSERS |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 333 | "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n") |
| 334 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 335 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
| 336 | add_subdirectory(lib/Target/${t}/Disassembler) |
| 337 | set(LLVM_ENUM_DISASSEMBLERS |
| 338 | "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n") |
| 339 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
Oscar Fuentes | b78829e | 2009-08-16 05:16:43 +0000 | [diff] [blame] | 340 | set(CURRENT_LLVM_TARGET) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 341 | endforeach(t) |
| 342 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 343 | # Produce llvm/Config/AsmPrinters.def |
| 344 | configure_file( |
| 345 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in |
| 346 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def |
| 347 | ) |
| 348 | |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 349 | # Produce llvm/Config/AsmParsers.def |
| 350 | configure_file( |
| 351 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in |
| 352 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def |
| 353 | ) |
| 354 | |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 355 | # Produce llvm/Config/Disassemblers.def |
| 356 | configure_file( |
| 357 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in |
| 358 | ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def |
| 359 | ) |
| 360 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 361 | add_subdirectory(lib/ExecutionEngine) |
| 362 | add_subdirectory(lib/ExecutionEngine/Interpreter) |
| 363 | add_subdirectory(lib/ExecutionEngine/JIT) |
| 364 | add_subdirectory(lib/Target) |
| 365 | add_subdirectory(lib/AsmParser) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 366 | add_subdirectory(lib/Archive) |
| 367 | |
Oscar Fuentes | 5c6bf65 | 2009-03-06 01:16:52 +0000 | [diff] [blame] | 368 | add_subdirectory(projects) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 369 | |
Oscar Fuentes | c81f56d | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 370 | option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON) |
Oscar Fuentes | b8352de | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 371 | add_subdirectory(tools) |
Oscar Fuentes | c81f56d | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 372 | |
Daniel Dunbar | e1caa98 | 2009-11-18 17:42:22 +0000 | [diff] [blame] | 373 | option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF) |
Oscar Fuentes | b8352de | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 374 | add_subdirectory(examples) |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 375 | |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 376 | install(DIRECTORY include/ |
| 377 | DESTINATION include |
| 378 | FILES_MATCHING |
Oscar Fuentes | bc2eb13 | 2009-10-30 11:42:08 +0000 | [diff] [blame] | 379 | PATTERN "*.def" |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 380 | PATTERN "*.h" |
| 381 | PATTERN "*.td" |
Oscar Fuentes | a2281e7 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 382 | PATTERN "*.inc" |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 383 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 384 | ) |
| 385 | |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 386 | install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ |
| 387 | DESTINATION include |
| 388 | FILES_MATCHING |
| 389 | PATTERN "*.def" |
| 390 | PATTERN "*.h" |
| 391 | PATTERN "*.gen" |
Oscar Fuentes | a2281e7 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 392 | PATTERN "*.inc" |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 393 | # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def" |
| 394 | PATTERN "CMakeFiles" EXCLUDE |
| 395 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 396 | ) |
| 397 | |
| 398 | # TODO: make and install documentation. |