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 | c677c5d | 2010-08-03 15:07:17 +0000 | [diff] [blame] | 4 | cmake_minimum_required(VERSION 2.8) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 5 | |
Oscar Fuentes | ee99317 | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 17 | set(PACKAGE_NAME llvm) |
Chris Lattner | 8c46e85 | 2009-01-28 17:49:03 +0000 | [diff] [blame] | 18 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
Oscar Fuentes | f7e73b9 | 2008-10-25 03:49:35 +0000 | [diff] [blame] | 19 | set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 20 | |
Oscar Fuentes | 6326a0d | 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 | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 30 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 31 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 32 | set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 33 | set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include) |
Oscar Fuentes | 3d01fc7 | 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 | af0f65f | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 38 | |
Oscar Fuentes | 6761c5d | 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 | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 57 | set(LLVM_ALL_TARGETS |
| 58 | Alpha |
| 59 | ARM |
Jakob Stoklund Olesen | 73b7bb7 | 2009-08-02 17:32:37 +0000 | [diff] [blame] | 60 | Blackfin |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 61 | CBackend |
| 62 | CellSPU |
| 63 | CppBackend |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 64 | Mips |
Wesley Peck | c84a956 | 2010-03-05 15:15:55 +0000 | [diff] [blame] | 65 | MBlaze |
Richard Pennington | a51984b | 2009-07-09 20:27:09 +0000 | [diff] [blame] | 66 | MSP430 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 67 | PIC16 |
| 68 | PowerPC |
| 69 | Sparc |
Daniel Dunbar | 3f189a3 | 2009-07-20 00:24:17 +0000 | [diff] [blame] | 70 | SystemZ |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 71 | X86 |
| 72 | XCore |
| 73 | ) |
| 74 | |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 75 | if( MSVC ) |
| 76 | set(LLVM_TARGETS_TO_BUILD X86 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 77 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 78 | else( MSVC ) |
Oscar Fuentes | 4f21c13 | 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 | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 81 | endif( MSVC ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 82 | |
Oscar Fuentes | 8e3c169 | 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 | a9ff139 | 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 | 4b44283 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 89 | option(LLVM_ENABLE_THREADS "Use threads if available." ON) |
| 90 | |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 91 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 92 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 93 | else() |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 94 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 95 | endif() |
| 96 | |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 97 | if( LLVM_ENABLE_ASSERTIONS ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 98 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
Oscar Fuentes | e8c81ea | 2009-07-05 23:58:20 +0000 | [diff] [blame] | 99 | if( NOT MSVC ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 100 | add_definitions( -D_DEBUG ) |
| 101 | endif() |
Oscar Fuentes | 76941b2 | 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 | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 111 | endif() |
| 112 | |
Oscar Fuentes | 4f21c13 | 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 | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 117 | set(LLVM_ENUM_TARGETS "") |
Oscar Fuentes | 4f21c13 | 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 | 9befba8 | 2009-08-12 08:37:37 +0000 | [diff] [blame] | 121 | message(FATAL_ERROR "The target `${c}' does not exist. |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 122 | It should be one of\n${LLVM_ALL_TARGETS}") |
Douglas Gregor | 1555a23 | 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 | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 125 | endif() |
| 126 | endforeach(c) |
| 127 | |
Douglas Gregor | 1555a23 | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 134 | set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm) |
| 135 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 136 | include(AddLLVMDefinitions) |
| 137 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 138 | if(WIN32) |
Oscar Fuentes | 4fd38b8 | 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 | 3d01fc7 | 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 | 05dafd8 | 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 | 3d01fc7 | 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 | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 167 | include(config-ix) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 168 | |
Oscar Fuentes | 1e02bf0 | 2009-08-18 15:29:35 +0000 | [diff] [blame] | 169 | option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 170 | |
Douglas Gregor | 318de60 | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 171 | set(ENABLE_PIC 0) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 172 | if( LLVM_ENABLE_PIC ) |
Daniel Dunbar | 3620618 | 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 | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 186 | endif() |
| 187 | |
Oscar Fuentes | 3d01fc7 | 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 | 9a0107d | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 196 | |
Daniel Dunbar | 9ea3a2c | 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 | f12a900 | 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 | b0c5699 | 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 | 6307b94 | 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 | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 211 | message(STATUS "Building 32 bits executables and libraries.") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 212 | add_llvm_definitions( -m32 ) |
Oscar Fuentes | 6307b94 | 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 | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 215 | endif( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 216 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 217 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 218 | if( MSVC ) |
Oscar Fuentes | 02a8f76 | 2010-08-05 01:25:48 +0000 | [diff] [blame] | 219 | include(ChooseMSVCCRT) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 220 | |
Oscar Fuentes | 9a0107d | 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 | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 226 | |
Daniel Dunbar | 2c4df5a | 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 | f12a900 | 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 | 2343b10 | 2009-11-30 23:50:14 +0000 | [diff] [blame] | 240 | elseif( CMAKE_COMPILER_IS_GNUCXX ) |
Oscar Fuentes | f12a900 | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 250 | endif( MSVC ) |
| 251 | |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 252 | include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR}) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 253 | |
Edward O'Callaghan | c6cf5fe | 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 | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 258 | include(AddLLVM) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 259 | include(TableGen) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 260 | |
| 261 | add_subdirectory(lib/Support) |
| 262 | add_subdirectory(lib/System) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 263 | |
| 264 | # Everything else depends on Support and System: |
| 265 | set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} ) |
| 266 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 267 | set(LLVM_TABLEGEN "tblgen" CACHE |
Oscar Fuentes | 41bdedf | 2008-11-10 02:35:55 +0000 | [diff] [blame] | 268 | STRING "Native TableGen executable. Saves building one when cross-compiling.") |
Oscar Fuentes | 99b9489 | 2009-06-11 04:16:10 +0000 | [diff] [blame] | 269 | # Effective tblgen executable to be used: |
| 270 | set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN}) |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 271 | |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 272 | add_subdirectory(utils/TableGen) |
| 273 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 274 | if( CMAKE_CROSSCOMPILING ) |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 275 | # 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] | 276 | include( CrossCompileLLVM ) |
| 277 | endif( CMAKE_CROSSCOMPILING ) |
| 278 | |
Oscar Fuentes | 422fcf3 | 2008-11-15 00:24:38 +0000 | [diff] [blame] | 279 | add_subdirectory(include/llvm) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 280 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 281 | add_subdirectory(lib/VMCore) |
| 282 | add_subdirectory(lib/CodeGen) |
| 283 | add_subdirectory(lib/CodeGen/SelectionDAG) |
| 284 | add_subdirectory(lib/CodeGen/AsmPrinter) |
| 285 | add_subdirectory(lib/Bitcode/Reader) |
| 286 | add_subdirectory(lib/Bitcode/Writer) |
| 287 | add_subdirectory(lib/Transforms/Utils) |
| 288 | add_subdirectory(lib/Transforms/Instrumentation) |
Douglas Gregor | f1c3a86 | 2010-01-04 21:58:55 +0000 | [diff] [blame] | 289 | add_subdirectory(lib/Transforms/InstCombine) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 290 | add_subdirectory(lib/Transforms/Scalar) |
| 291 | add_subdirectory(lib/Transforms/IPO) |
| 292 | add_subdirectory(lib/Transforms/Hello) |
| 293 | add_subdirectory(lib/Linker) |
| 294 | add_subdirectory(lib/Analysis) |
| 295 | add_subdirectory(lib/Analysis/IPA) |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 296 | add_subdirectory(lib/MC) |
Daniel Dunbar | 4bd8dc3 | 2010-01-22 02:04:33 +0000 | [diff] [blame] | 297 | add_subdirectory(lib/MC/MCParser) |
Chris Lattner | 847da55 | 2010-07-20 18:25:19 +0000 | [diff] [blame] | 298 | add_subdirectory(lib/MC/MCDisassembler) |
Daniel Dunbar | a177492 | 2009-09-22 07:38:44 +0000 | [diff] [blame] | 299 | add_subdirectory(test) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 300 | |
Douglas Gregor | 4d20c24 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 301 | add_subdirectory(utils/FileCheck) |
Daniel Dunbar | 48f7ce8 | 2009-09-24 06:23:57 +0000 | [diff] [blame] | 302 | add_subdirectory(utils/count) |
| 303 | add_subdirectory(utils/not) |
Douglas Gregor | 4d20c24 | 2009-07-20 18:30:25 +0000 | [diff] [blame] | 304 | |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 305 | set(LLVM_ENUM_ASM_PRINTERS "") |
| 306 | set(LLVM_ENUM_ASM_PARSERS "") |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 307 | set(LLVM_ENUM_DISASSEMBLERS "") |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 308 | foreach(t ${LLVM_TARGETS_TO_BUILD}) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 309 | message(STATUS "Targeting ${t}") |
| 310 | add_subdirectory(lib/Target/${t}) |
Daniel Dunbar | b5a8c08 | 2009-07-15 07:04:27 +0000 | [diff] [blame] | 311 | add_subdirectory(lib/Target/${t}/TargetInfo) |
Oscar Fuentes | cccecb8 | 2008-11-14 22:21:02 +0000 | [diff] [blame] | 312 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 313 | add_subdirectory(lib/Target/${t}/AsmPrinter) |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 314 | set(LLVM_ENUM_ASM_PRINTERS |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 315 | "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n") |
| 316 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 317 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 318 | add_subdirectory(lib/Target/${t}/AsmParser) |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 319 | set(LLVM_ENUM_ASM_PARSERS |
Oscar Fuentes | 75caad4 | 2009-08-14 04:55:21 +0000 | [diff] [blame] | 320 | "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n") |
| 321 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 322 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
| 323 | add_subdirectory(lib/Target/${t}/Disassembler) |
| 324 | set(LLVM_ENUM_DISASSEMBLERS |
| 325 | "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n") |
| 326 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt ) |
Oscar Fuentes | b78829e | 2009-08-16 05:16:43 +0000 | [diff] [blame] | 327 | set(CURRENT_LLVM_TARGET) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 328 | endforeach(t) |
| 329 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 330 | # Produce llvm/Config/AsmPrinters.def |
| 331 | configure_file( |
| 332 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in |
| 333 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def |
| 334 | ) |
| 335 | |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 336 | # Produce llvm/Config/AsmParsers.def |
| 337 | configure_file( |
| 338 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in |
| 339 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def |
| 340 | ) |
| 341 | |
Daniel Dunbar | fa3f0b9 | 2009-11-25 04:30:13 +0000 | [diff] [blame] | 342 | # Produce llvm/Config/Disassemblers.def |
| 343 | configure_file( |
| 344 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in |
| 345 | ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def |
| 346 | ) |
| 347 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 348 | add_subdirectory(lib/ExecutionEngine) |
| 349 | add_subdirectory(lib/ExecutionEngine/Interpreter) |
| 350 | add_subdirectory(lib/ExecutionEngine/JIT) |
| 351 | add_subdirectory(lib/Target) |
| 352 | add_subdirectory(lib/AsmParser) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 353 | add_subdirectory(lib/Archive) |
| 354 | |
Oscar Fuentes | 5c6bf65 | 2009-03-06 01:16:52 +0000 | [diff] [blame] | 355 | add_subdirectory(projects) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 356 | |
Oscar Fuentes | c81f56d | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 357 | option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON) |
Oscar Fuentes | b8352de | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 358 | add_subdirectory(tools) |
Oscar Fuentes | c81f56d | 2009-08-16 20:56:30 +0000 | [diff] [blame] | 359 | |
Daniel Dunbar | e1caa98 | 2009-11-18 17:42:22 +0000 | [diff] [blame] | 360 | option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF) |
Oscar Fuentes | b8352de | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 361 | add_subdirectory(examples) |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 362 | |
Oscar Fuentes | 6252e98 | 2010-08-09 03:26:43 +0000 | [diff] [blame] | 363 | add_subdirectory(cmake/modules) |
| 364 | |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 365 | install(DIRECTORY include/ |
| 366 | DESTINATION include |
| 367 | FILES_MATCHING |
Oscar Fuentes | bc2eb13 | 2009-10-30 11:42:08 +0000 | [diff] [blame] | 368 | PATTERN "*.def" |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 369 | PATTERN "*.h" |
| 370 | PATTERN "*.td" |
Oscar Fuentes | a2281e7 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 371 | PATTERN "*.inc" |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 372 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 373 | ) |
| 374 | |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 375 | install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ |
| 376 | DESTINATION include |
| 377 | FILES_MATCHING |
| 378 | PATTERN "*.def" |
| 379 | PATTERN "*.h" |
| 380 | PATTERN "*.gen" |
Oscar Fuentes | a2281e7 | 2009-10-27 20:04:22 +0000 | [diff] [blame] | 381 | PATTERN "*.inc" |
Oscar Fuentes | 1d7c43b | 2009-10-27 19:57:29 +0000 | [diff] [blame] | 382 | # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def" |
| 383 | PATTERN "CMakeFiles" EXCLUDE |
| 384 | PATTERN ".svn" EXCLUDE |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 385 | ) |
| 386 | |
| 387 | # TODO: make and install documentation. |