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 | |
Cedric Venet | 6c9f3ec | 2008-10-30 21:22:00 +0000 | [diff] [blame] | 3 | project(LLVM) |
Oscar Fuentes | 758f71a | 2010-08-03 15:07:17 +0000 | [diff] [blame] | 4 | cmake_minimum_required(VERSION 2.8) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 5 | |
Oscar Fuentes | 052c23c | 2010-08-03 17:28:09 +0000 | [diff] [blame] | 6 | # Add path for custom modules |
| 7 | set(CMAKE_MODULE_PATH |
| 8 | ${CMAKE_MODULE_PATH} |
| 9 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" |
| 10 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" |
| 11 | ) |
| 12 | |
| 13 | set(PACKAGE_VERSION "2.8") |
| 14 | include(VersionFromVCS) |
| 15 | add_version_info_from_vcs(PACKAGE_VERSION) |
| 16 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 17 | set(PACKAGE_NAME llvm) |
Chris Lattner | ff2d99d | 2009-01-28 17:49:03 +0000 | [diff] [blame] | 18 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
Oscar Fuentes | 24617b7 | 2008-10-25 03:49:35 +0000 | [diff] [blame] | 19 | set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 20 | |
Oscar Fuentes | a5f8356 | 2008-11-14 03:43:18 +0000 | [diff] [blame] | 21 | if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) |
| 22 | message(FATAL_ERROR "In-source builds are not allowed. |
| 23 | CMake would overwrite the makefiles distributed with LLVM. |
| 24 | Please create a directory and run cmake from there, passing the path |
| 25 | to this source directory as the last argument. |
| 26 | This process created the file `CMakeCache.txt' and the directory `CMakeFiles'. |
| 27 | Please delete them.") |
| 28 | endif() |
| 29 | |
Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 30 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 31 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 32 | set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
Oscar Fuentes | 2500aae | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 33 | set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 34 | set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
| 35 | set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin) |
| 36 | set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples) |
Oscar Fuentes | 46fed3b | 2009-06-12 02:49:53 +0000 | [diff] [blame] | 37 | set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" ) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 38 | |
Oscar Fuentes | 304396a | 2009-07-13 21:58:44 +0000 | [diff] [blame] | 39 | if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) |
| 40 | file(GLOB_RECURSE |
| 41 | tablegenned_files_on_include_dir |
| 42 | "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen") |
| 43 | file(GLOB_RECURSE |
| 44 | tablegenned_files_on_lib_dir |
| 45 | "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc") |
| 46 | if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir) |
| 47 | message(FATAL_ERROR "Apparently there is a previous in-source build, |
| 48 | probably as the result of running `configure' and `make' on |
| 49 | ${LLVM_MAIN_SRC_DIR}. |
| 50 | This may cause problems. The suspicious files are: |
| 51 | ${tablegenned_files_on_lib_dir} |
| 52 | ${tablegenned_files_on_include_dir} |
| 53 | Please clean the source directory.") |
| 54 | endif() |
| 55 | endif() |
| 56 | |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 57 | set(LLVM_ALL_TARGETS |
| 58 | Alpha |
| 59 | ARM |
Jakob Stoklund Olesen | 526e803 | 2009-08-02 17:32:37 +0000 | [diff] [blame] | 60 | Blackfin |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 61 | CBackend |
| 62 | CellSPU |
| 63 | CppBackend |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 64 | Mips |
Wesley Peck | b0578bf | 2010-03-05 15:15:55 +0000 | [diff] [blame] | 65 | MBlaze |
Richard Pennington | 9f3bd4a | 2009-07-09 20:27:09 +0000 | [diff] [blame] | 66 | MSP430 |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 67 | PIC16 |
| 68 | PowerPC |
| 69 | Sparc |
Daniel Dunbar | 88f35c8 | 2009-07-20 00:24:17 +0000 | [diff] [blame] | 70 | SystemZ |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 71 | X86 |
| 72 | XCore |
| 73 | ) |
| 74 | |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 75 | if( MSVC ) |
| 76 | set(LLVM_TARGETS_TO_BUILD X86 |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 77 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 78 | else( MSVC ) |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 79 | set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} |
| 80 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 81 | endif( MSVC ) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 82 | |
Oscar Fuentes | 700205c | 2009-11-12 06:48:09 +0000 | [diff] [blame] | 83 | set(C_INCLUDE_DIRS "" CACHE STRING |
| 84 | "Colon separated list of directories clang will search for headers.") |
| 85 | |
Oscar Fuentes | b9a7813 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 86 | set(LLVM_TARGET_ARCH "host" |
| 87 | CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.") |
| 88 | |
Oscar Fuentes | 366fbb7 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 89 | option(LLVM_ENABLE_THREADS "Use threads if available." ON) |
| 90 | |
Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 91 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
Oscar Fuentes | 208a873 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 92 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF) |
Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 93 | else() |
Oscar Fuentes | 208a873 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 94 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON) |
Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 95 | endif() |
| 96 | |
Oscar Fuentes | 208a873 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 97 | if( LLVM_ENABLE_ASSERTIONS ) |
Oscar Fuentes | 5674531 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 98 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
Oscar Fuentes | c296b89 | 2009-07-05 23:58:20 +0000 | [diff] [blame] | 99 | if( NOT MSVC ) |
Oscar Fuentes | 5674531 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 100 | add_definitions( -D_DEBUG ) |
| 101 | endif() |
Oscar Fuentes | 208a873 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 102 | # On Release builds cmake automatically defines NDEBUG, so we |
| 103 | # explicitly undefine it: |
| 104 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 105 | add_definitions( -UNDEBUG ) |
| 106 | endif() |
| 107 | else() |
| 108 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 109 | add_definitions( -DNDEBUG ) |
| 110 | endif() |
Oscar Fuentes | 6133813 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 111 | endif() |
| 112 | |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 113 | if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) |
| 114 | set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) |
| 115 | endif() |
| 116 | |
Douglas Gregor | 1b731d5 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 117 | set(LLVM_ENUM_TARGETS "") |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 118 | foreach(c ${LLVM_TARGETS_TO_BUILD}) |
| 119 | list(FIND LLVM_ALL_TARGETS ${c} idx) |
| 120 | if( idx LESS 0 ) |
Gabor Greif | 27c7a9d | 2009-08-12 08:37:37 +0000 | [diff] [blame] | 121 | message(FATAL_ERROR "The target `${c}' does not exist. |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 122 | It should be one of\n${LLVM_ALL_TARGETS}") |
Douglas Gregor | 1b731d5 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 123 | else() |
| 124 | set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n") |
Oscar Fuentes | e9edc2c | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 125 | endif() |
| 126 | endforeach(c) |
| 127 | |
Douglas Gregor | 1b731d5 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 128 | # Produce llvm/Config/Targets.def |
| 129 | configure_file( |
| 130 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in |
| 131 | ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def |
| 132 | ) |
| 133 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 134 | set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm) |
| 135 | |
Oscar Fuentes | bda403b | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 136 | include(AddLLVMDefinitions) |
| 137 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 138 | if(WIN32) |
Oscar Fuentes | 876aa17 | 2008-10-30 17:15:54 +0000 | [diff] [blame] | 139 | if(CYGWIN) |
| 140 | set(LLVM_ON_WIN32 0) |
| 141 | set(LLVM_ON_UNIX 1) |
| 142 | else(CYGWIN) |
| 143 | set(LLVM_ON_WIN32 1) |
| 144 | set(LLVM_ON_UNIX 0) |
| 145 | endif(CYGWIN) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 146 | set(LTDL_SHLIB_EXT ".dll") |
| 147 | set(EXEEXT ".exe") |
| 148 | # Maximum path length is 160 for non-unicode paths |
| 149 | set(MAXPATHLEN 160) |
| 150 | else(WIN32) |
| 151 | if(UNIX) |
| 152 | set(LLVM_ON_WIN32 0) |
| 153 | set(LLVM_ON_UNIX 1) |
Daniel Dunbar | 6ce1ab1 | 2009-09-22 06:09:37 +0000 | [diff] [blame] | 154 | if(APPLE) |
| 155 | set(LTDL_SHLIB_EXT ".dylib") |
| 156 | else(APPLE) |
| 157 | set(LTDL_SHLIB_EXT ".so") |
| 158 | endif(APPLE) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 159 | set(EXEEXT "") |
| 160 | # FIXME: Maximum path length is currently set to 'safe' fixed value |
| 161 | set(MAXPATHLEN 2024) |
| 162 | else(UNIX) |
| 163 | MESSAGE(SEND_ERROR "Unable to determine platform") |
| 164 | endif(UNIX) |
| 165 | endif(WIN32) |
| 166 | |
Oscar Fuentes | a9ac909 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 167 | include(config-ix) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 168 | |
Oscar Fuentes | 6d61f55 | 2009-08-18 15:29:35 +0000 | [diff] [blame] | 169 | option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON) |
Oscar Fuentes | 073b0b1 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 170 | |
Douglas Gregor | 5f11afc | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 171 | set(ENABLE_PIC 0) |
Oscar Fuentes | 073b0b1 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 172 | if( LLVM_ENABLE_PIC ) |
Daniel Dunbar | 3908a40 | 2009-11-08 00:34:22 +0000 | [diff] [blame] | 173 | if( XCODE ) |
| 174 | # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't |
| 175 | # know how to disable this, so just force ENABLE_PIC off for now. |
| 176 | message(STATUS "Warning: -fPIC not supported with Xcode.") |
| 177 | else( XCODE ) |
| 178 | if( SUPPORTS_FPIC_FLAG ) |
| 179 | message(STATUS "Building with -fPIC") |
| 180 | add_llvm_definitions(-fPIC) |
| 181 | set(ENABLE_PIC 1) |
| 182 | else( SUPPORTS_FPIC_FLAG ) |
| 183 | message(STATUS "Warning: -fPIC not supported.") |
| 184 | endif() |
| 185 | endif() |
Oscar Fuentes | 073b0b1 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 186 | endif() |
| 187 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 188 | set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} ) |
| 189 | set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 190 | set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 191 | |
| 192 | # set(CMAKE_VERBOSE_MAKEFILE true) |
| 193 | |
Oscar Fuentes | bda403b | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 194 | add_llvm_definitions( -D__STDC_LIMIT_MACROS ) |
| 195 | add_llvm_definitions( -D__STDC_CONSTANT_MACROS ) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 196 | |
Daniel Dunbar | 04433fe | 2009-12-01 19:11:36 +0000 | [diff] [blame] | 197 | # MSVC has a gazillion warnings with this. |
| 198 | if( MSVC ) |
| 199 | option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF) |
| 200 | else( MSVC ) |
| 201 | option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON) |
| 202 | endif() |
| 203 | |
Oscar Fuentes | 5c600b5 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 204 | option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON) |
| 205 | option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) |
| 206 | |
Oscar Fuentes | 7751a7b | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 207 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 208 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | 3258149 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 209 | option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF) |
| 210 | if( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | 7751a7b | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 211 | message(STATUS "Building 32 bits executables and libraries.") |
Oscar Fuentes | bda403b | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 212 | add_llvm_definitions( -m32 ) |
Oscar Fuentes | 3258149 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 213 | list(APPEND CMAKE_EXE_LINKER_FLAGS -m32) |
| 214 | list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32) |
Oscar Fuentes | 3258149 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 215 | endif( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | 7751a7b | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 216 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 217 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 218 | if( MSVC ) |
Oscar Fuentes | 396cc7d | 2010-08-05 01:25:48 +0000 | [diff] [blame] | 219 | include(ChooseMSVCCRT) |
Stefanus Du Toit | 6b602ad | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 220 | |
Oscar Fuentes | bda403b | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 221 | add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS ) |
| 222 | add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS ) |
| 223 | add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE ) |
| 224 | add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 ) |
| 225 | add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 ) |
Stefanus Du Toit | 6b602ad | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 226 | |
Daniel Dunbar | acd56a0 | 2009-07-19 01:35:10 +0000 | [diff] [blame] | 227 | # Suppress 'new behavior: elements of array 'array' will be default initialized' |
| 228 | add_llvm_definitions( -wd4351 ) |
| 229 | |
Oscar Fuentes | 5c600b5 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 230 | # Enable warnings |
| 231 | if (LLVM_ENABLE_WARNINGS) |
| 232 | add_llvm_definitions( /W4 /Wall ) |
| 233 | if (LLVM_ENABLE_PEDANTIC) |
| 234 | # No MSVC equivalent available |
| 235 | endif (LLVM_ENABLE_PEDANTIC) |
| 236 | endif (LLVM_ENABLE_WARNINGS) |
| 237 | if (LLVM_ENABLE_WERROR) |
| 238 | add_llvm_definitions( /WX ) |
| 239 | endif (LLVM_ENABLE_WERROR) |
Oscar Fuentes | cc71783 | 2009-11-30 23:50:14 +0000 | [diff] [blame] | 240 | elseif( CMAKE_COMPILER_IS_GNUCXX ) |
Oscar Fuentes | 5c600b5 | 2009-12-01 02:21:51 +0000 | [diff] [blame] | 241 | if (LLVM_ENABLE_WARNINGS) |
| 242 | add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings ) |
| 243 | if (LLVM_ENABLE_PEDANTIC) |
| 244 | add_llvm_definitions( -pedantic -Wno-long-long ) |
| 245 | endif (LLVM_ENABLE_PEDANTIC) |
| 246 | endif (LLVM_ENABLE_WARNINGS) |
| 247 | if (LLVM_ENABLE_WERROR) |
| 248 | add_llvm_definitions( -Werror ) |
| 249 | endif (LLVM_ENABLE_WERROR) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 250 | endif( MSVC ) |
| 251 | |
Oscar Fuentes | 2500aae | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 252 | include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR}) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 253 | |
Edward O'Callaghan | 396ed2b | 2009-10-12 04:00:11 +0000 | [diff] [blame] | 254 | if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| 255 | SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h") |
| 256 | endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS ) |
| 257 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 258 | include(AddLLVM) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 259 | include(TableGen) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 260 | |
Michael J. Spencer | 7c3a5ee | 2010-09-11 02:13:39 +0000 | [diff] [blame] | 261 | if( MINGW ) |
| 262 | get_system_libs(LLVM_SYSTEM_LIBS_LIST) |
| 263 | foreach(l ${LLVM_SYSTEM_LIBS_LIST}) |
| 264 | set(LLVM_SYSTEM_LIBS "${LLVM_SYSTEM_LIBS} -l${l}") |
| 265 | endforeach() |
| 266 | set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}") |
| 267 | set(CMAKE_C_STANDARD_LIBRARIES "${CMAKE_C_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}") |
| 268 | endif() |
| 269 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 270 | add_subdirectory(lib/Support) |
| 271 | add_subdirectory(lib/System) |
Oscar Fuentes | 8807bdd | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 272 | |
| 273 | # Everything else depends on Support and System: |
| 274 | set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} ) |
Michael J. Spencer | dc38d36 | 2010-09-10 21:14:25 +0000 | [diff] [blame] | 275 | set(LLVM_COMMON_LIBS LLVMSupport LLVMSystem) |
Oscar Fuentes | 8807bdd | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 276 | |
Oscar Fuentes | b45a43a | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 277 | set(LLVM_TABLEGEN "tblgen" CACHE |
Oscar Fuentes | 9530edd | 2008-11-10 02:35:55 +0000 | [diff] [blame] | 278 | STRING "Native TableGen executable. Saves building one when cross-compiling.") |
Oscar Fuentes | caa7a94 | 2009-06-11 04:16:10 +0000 | [diff] [blame] | 279 | # Effective tblgen executable to be used: |
| 280 | set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN}) |
Oscar Fuentes | b45a43a | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 281 | |
Oscar Fuentes | e352ca0 | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 282 | add_subdirectory(utils/TableGen) |
| 283 | |
Oscar Fuentes | b45a43a | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 284 | if( CMAKE_CROSSCOMPILING ) |
Oscar Fuentes | e352ca0 | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 285 | # This adds a dependency on target `tblgen', so must go after utils/TableGen |
Oscar Fuentes | b45a43a | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 286 | include( CrossCompileLLVM ) |
| 287 | endif( CMAKE_CROSSCOMPILING ) |
| 288 | |
Oscar Fuentes | dc8d56e | 2008-11-15 00:24:38 +0000 | [diff] [blame] | 289 | add_subdirectory(include/llvm) |
Oscar Fuentes | 8807bdd | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 290 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 291 | add_subdirectory(lib/VMCore) |
| 292 | add_subdirectory(lib/CodeGen) |
| 293 | add_subdirectory(lib/CodeGen/SelectionDAG) |
| 294 | add_subdirectory(lib/CodeGen/AsmPrinter) |
| 295 | add_subdirectory(lib/Bitcode/Reader) |
| 296 | add_subdirectory(lib/Bitcode/Writer) |
| 297 | add_subdirectory(lib/Transforms/Utils) |
| 298 | add_subdirectory(lib/Transforms/Instrumentation) |
Douglas Gregor | 5b88b8a | 2010-01-04 21:58:55 +0000 | [diff] [blame] | 299 | add_subdirectory(lib/Transforms/InstCombine) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 300 | add_subdirectory(lib/Transforms/Scalar) |
| 301 | add_subdirectory(lib/Transforms/IPO) |
| 302 | add_subdirectory(lib/Transforms/Hello) |
| 303 | add_subdirectory(lib/Linker) |
| 304 | add_subdirectory(lib/Analysis) |
| 305 | add_subdirectory(lib/Analysis/IPA) |
Daniel Dunbar | ca29e4d | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 306 | add_subdirectory(lib/MC) |
Daniel Dunbar | 4dcd3b2 | 2010-01-22 02:04:33 +0000 | [diff] [blame] | 307 | add_subdirectory(lib/MC/MCParser) |
Chris Lattner | 979634b | 2010-07-20 18:25:19 +0000 | [diff] [blame] | 308 | add_subdirectory(lib/MC/MCDisassembler) |
Daniel Dunbar | 28830b3 | 2009-09-22 07:38:44 +0000 | [diff] [blame] | 309 | add_subdirectory(test) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 310 | |
Douglas Gregor | 289dfc5 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 311 | add_subdirectory(utils/FileCheck) |
Daniel Dunbar | 00dd448 | 2009-09-24 06:23:57 +0000 | [diff] [blame] | 312 | add_subdirectory(utils/count) |
| 313 | add_subdirectory(utils/not) |
Michael J. Spencer | 885611b | 2010-09-13 17:52:38 +0000 | [diff] [blame^] | 314 | add_subdirectory(utils/llvm-lit) |
Douglas Gregor | 289dfc5 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 315 | |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 316 | set(LLVM_ENUM_ASM_PRINTERS "") |
| 317 | set(LLVM_ENUM_ASM_PARSERS "") |
Daniel Dunbar | f472129 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 318 | set(LLVM_ENUM_DISASSEMBLERS "") |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 319 | foreach(t ${LLVM_TARGETS_TO_BUILD}) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 320 | message(STATUS "Targeting ${t}") |
| 321 | add_subdirectory(lib/Target/${t}) |
Daniel Dunbar | b3ec488 | 2009-07-15 07:04:27 +0000 | [diff] [blame] | 322 | add_subdirectory(lib/Target/${t}/TargetInfo) |
Oscar Fuentes | 070114f | 2008-11-14 22:21:02 +0000 | [diff] [blame] | 323 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 324 | add_subdirectory(lib/Target/${t}/AsmPrinter) |
Douglas Gregor | 1b731d5 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 325 | set(LLVM_ENUM_ASM_PRINTERS |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 326 | "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n") |
| 327 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Daniel Dunbar | 7147577 | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 328 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 329 | add_subdirectory(lib/Target/${t}/AsmParser) |
Daniel Dunbar | 7147577 | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 330 | set(LLVM_ENUM_ASM_PARSERS |
Oscar Fuentes | 7a87d66 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 331 | "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n") |
| 332 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Daniel Dunbar | f472129 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 333 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
| 334 | add_subdirectory(lib/Target/${t}/Disassembler) |
| 335 | set(LLVM_ENUM_DISASSEMBLERS |
| 336 | "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n") |
| 337 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
Oscar Fuentes | 8160d28 | 2009-08-16 05:16:43 +0000 | [diff] [blame] | 338 | set(CURRENT_LLVM_TARGET) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 339 | endforeach(t) |
| 340 | |
Douglas Gregor | 1b731d5 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 341 | # Produce llvm/Config/AsmPrinters.def |
| 342 | configure_file( |
| 343 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in |
| 344 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def |
| 345 | ) |
| 346 | |
Daniel Dunbar | 7147577 | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 347 | # Produce llvm/Config/AsmParsers.def |
| 348 | configure_file( |
| 349 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in |
| 350 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def |
| 351 | ) |
| 352 | |
Daniel Dunbar | f472129 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 353 | # Produce llvm/Config/Disassemblers.def |
| 354 | configure_file( |
| 355 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in |
| 356 | ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def |
| 357 | ) |
| 358 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 359 | add_subdirectory(lib/ExecutionEngine) |
| 360 | add_subdirectory(lib/ExecutionEngine/Interpreter) |
| 361 | add_subdirectory(lib/ExecutionEngine/JIT) |
| 362 | add_subdirectory(lib/Target) |
| 363 | add_subdirectory(lib/AsmParser) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 364 | add_subdirectory(lib/Archive) |
| 365 | |
Oscar Fuentes | afbe975 | 2009-03-06 01:16:52 +0000 | [diff] [blame] | 366 | add_subdirectory(projects) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 367 | |
Oscar Fuentes | acfd9ad | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 368 | option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON) |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 369 | add_subdirectory(tools) |
Oscar Fuentes | acfd9ad | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 370 | |
Daniel Dunbar | 06d8c24 | 2009-11-18 17:42:22 +0000 | [diff] [blame] | 371 | option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF) |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 372 | add_subdirectory(examples) |
Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 373 | |
Oscar Fuentes | a389c58 | 2010-08-09 03:26:43 +0000 | [diff] [blame] | 374 | add_subdirectory(cmake/modules) |
| 375 | |
Michael J. Spencer | dc38d36 | 2010-09-10 21:14:25 +0000 | [diff] [blame] | 376 | install(EXPORT LLVM |
| 377 | DESTINATION lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm/ |
| 378 | FILE LLVMTargets.cmake |
| 379 | ) |
| 380 | |
Oscar Fuentes | 6997c64 | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 381 | install(DIRECTORY include/ |
| 382 | DESTINATION include |
| 383 | FILES_MATCHING |
Oscar Fuentes | 15716f6 | 2009-10-30 11:42:08 +0000 | [diff] [blame] | 384 | PATTERN "*.def" |
Oscar Fuentes | 6997c64 | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 385 | PATTERN "*.h" |
| 386 | PATTERN "*.td" |
Oscar Fuentes | 08875d1 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 387 | PATTERN "*.inc" |
Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 388 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 389 | ) |
| 390 | |
Oscar Fuentes | 6997c64 | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 391 | install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ |
| 392 | DESTINATION include |
| 393 | FILES_MATCHING |
| 394 | PATTERN "*.def" |
| 395 | PATTERN "*.h" |
| 396 | PATTERN "*.gen" |
Oscar Fuentes | 08875d1 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 397 | PATTERN "*.inc" |
Oscar Fuentes | 6997c64 | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 398 | # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def" |
| 399 | PATTERN "CMakeFiles" EXCLUDE |
| 400 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 64c9962 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 401 | ) |
| 402 | |
| 403 | # TODO: make and install documentation. |