blob: a95ca51d18a157406e3646577e408d2efd81b955 [file] [log] [blame]
Oscar Fuentes34fc5172009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Cedric Venet1d083f42008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +00004cmake_minimum_required(VERSION 2.6.1)
5
6set(PACKAGE_NAME llvm)
Chris Lattner8c46e852009-01-28 17:49:03 +00007set(PACKAGE_VERSION 2.6svn)
8set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentesf7e73b92008-10-25 03:49:35 +00009set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000010
Oscar Fuentes6326a0d2008-11-14 03:43:18 +000011if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
12 message(FATAL_ERROR "In-source builds are not allowed.
13CMake would overwrite the makefiles distributed with LLVM.
14Please create a directory and run cmake from there, passing the path
15to this source directory as the last argument.
16This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
17Please delete them.")
18endif()
19
Oscar Fuentes81a87552009-06-03 15:11:25 +000020string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000022set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes980e8422008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000024set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
25set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
26set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentesaf0f65f2009-06-12 02:49:53 +000027set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000028
Oscar Fuentes6761c5d2009-07-13 21:58:44 +000029if( 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,
38probably as the result of running `configure' and `make' on
39${LLVM_MAIN_SRC_DIR}.
40This may cause problems. The suspicious files are:
41${tablegenned_files_on_lib_dir}
42${tablegenned_files_on_include_dir}
43Please clean the source directory.")
44 endif()
45endif()
46
Oscar Fuentes4f21c132008-11-10 01:47:07 +000047set(LLVM_ALL_TARGETS
48 Alpha
49 ARM
Jakob Stoklund Olesen73b7bb72009-08-02 17:32:37 +000050 Blackfin
Oscar Fuentes4f21c132008-11-10 01:47:07 +000051 CBackend
52 CellSPU
53 CppBackend
Oscar Fuentes4f21c132008-11-10 01:47:07 +000054 Mips
55 MSIL
Richard Penningtona51984b2009-07-09 20:27:09 +000056 MSP430
Oscar Fuentes4f21c132008-11-10 01:47:07 +000057 PIC16
58 PowerPC
59 Sparc
Daniel Dunbar3f189a32009-07-20 00:24:17 +000060 SystemZ
Oscar Fuentes4f21c132008-11-10 01:47:07 +000061 X86
62 XCore
63 )
64
Oscar Fuentese1ad0872008-09-26 04:40:32 +000065if( MSVC )
66 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000067 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000068else( MSVC )
Oscar Fuentes4f21c132008-11-10 01:47:07 +000069 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
70 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000071endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000072
Oscar Fuentes4b442832008-11-18 23:45:21 +000073option(LLVM_ENABLE_THREADS "Use threads if available." ON)
74
Oscar Fuentes81a87552009-06-03 15:11:25 +000075if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes76941b22009-06-04 09:26:16 +000076 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes81a87552009-06-03 15:11:25 +000077else()
Oscar Fuentes76941b22009-06-04 09:26:16 +000078 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes81a87552009-06-03 15:11:25 +000079endif()
80
Oscar Fuentes76941b22009-06-04 09:26:16 +000081if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaf109102009-07-05 18:43:52 +000082 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentese8c81ea2009-07-05 23:58:20 +000083 if( NOT MSVC )
Oscar Fuentesaf109102009-07-05 18:43:52 +000084 add_definitions( -D_DEBUG )
85 endif()
Oscar Fuentes76941b22009-06-04 09:26:16 +000086 # On Release builds cmake automatically defines NDEBUG, so we
87 # explicitly undefine it:
88 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
89 add_definitions( -UNDEBUG )
90 endif()
91else()
92 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
93 add_definitions( -DNDEBUG )
94 endif()
Oscar Fuentes81a87552009-06-03 15:11:25 +000095endif()
96
Gabor Greif9befba82009-08-12 08:37:37 +000097if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
98 set( LLVM_COMPACT_SENTINELS 1 )
99else( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
100 set( LLVM_COMPACT_SENTINELS 0 )
101endif( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
102
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000103if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
104 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
105endif()
106
Douglas Gregor1555a232009-06-16 20:12:29 +0000107set(LLVM_ENUM_TARGETS "")
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000108foreach(c ${LLVM_TARGETS_TO_BUILD})
109 list(FIND LLVM_ALL_TARGETS ${c} idx)
110 if( idx LESS 0 )
Gabor Greif9befba82009-08-12 08:37:37 +0000111 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000112 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1555a232009-06-16 20:12:29 +0000113 else()
114 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000115 endif()
116endforeach(c)
117
Douglas Gregor1555a232009-06-16 20:12:29 +0000118# Produce llvm/Config/Targets.def
119configure_file(
120 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
121 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
122 )
123
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000124set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
125
126# Add path for custom modules
127set(CMAKE_MODULE_PATH
128 ${CMAKE_MODULE_PATH}
129 "${LLVM_MAIN_SRC_DIR}/cmake"
130 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
131 )
132
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000133include(AddLLVMDefinitions)
134
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000135if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +0000136 if(CYGWIN)
137 set(LLVM_ON_WIN32 0)
138 set(LLVM_ON_UNIX 1)
139 else(CYGWIN)
140 set(LLVM_ON_WIN32 1)
141 set(LLVM_ON_UNIX 0)
142 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000143 set(LTDL_SHLIB_EXT ".dll")
144 set(EXEEXT ".exe")
145 # Maximum path length is 160 for non-unicode paths
146 set(MAXPATHLEN 160)
147else(WIN32)
148 if(UNIX)
149 set(LLVM_ON_WIN32 0)
150 set(LLVM_ON_UNIX 1)
151 set(LTDL_SHLIB_EXT ".so")
152 set(EXEEXT "")
153 # FIXME: Maximum path length is currently set to 'safe' fixed value
154 set(MAXPATHLEN 2024)
155 else(UNIX)
156 MESSAGE(SEND_ERROR "Unable to determine platform")
157 endif(UNIX)
158endif(WIN32)
159
Oscar Fuentesde98db32008-10-25 03:29:36 +0000160include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000161
Oscar Fuentes1e02bf02009-08-18 15:29:35 +0000162option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000163
Douglas Gregor318de602009-06-05 23:46:34 +0000164set(ENABLE_PIC 0)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000165if( LLVM_ENABLE_PIC )
166 if( SUPPORTS_FPIC_FLAG )
167 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000168 add_llvm_definitions(-fPIC)
Douglas Gregor318de602009-06-05 23:46:34 +0000169 set(ENABLE_PIC 1)
170 else( SUPPORTS_FPIC_FLAG )
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000171 message(STATUS "Warning: -fPIC not supported.")
172 endif()
173endif()
174
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000175set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
176set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
177set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
178
179# set(CMAKE_VERBOSE_MAKEFILE true)
180
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000181add_llvm_definitions( -D__STDC_LIMIT_MACROS )
182add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000183
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000184if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
185 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000186 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
187 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000188 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000189 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000190 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
191 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentes6307b942008-11-19 00:10:39 +0000192 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000193endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
194
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000195if( MSVC )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000196 # List of valid CRTs for MSVC
197 set(MSVC_CRT
198 MD
199 MDd)
200
201 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000202 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
203 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
204 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
205 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
206 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000207
Daniel Dunbar2c4df5a2009-07-19 01:35:10 +0000208 # Suppress 'new behavior: elements of array 'array' will be default initialized'
209 add_llvm_definitions( -wd4351 )
210
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000211 if (NOT ${LLVM_USE_CRT} STREQUAL "")
212 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
213 if (idx LESS 0)
214 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
215 endif (idx LESS 0)
216 add_llvm_definitions("/${LLVM_USE_CRT}")
217 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
218 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000219endif( MSVC )
220
Oscar Fuentes980e8422008-10-29 02:33:15 +0000221include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000222
223include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000224include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000225
226add_subdirectory(lib/Support)
227add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000228
229# Everything else depends on Support and System:
230set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
231
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000232set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000233 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes99b94892009-06-11 04:16:10 +0000234# Effective tblgen executable to be used:
235set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000236
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000237add_subdirectory(utils/TableGen)
238
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000239if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000240 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000241 include( CrossCompileLLVM )
242endif( CMAKE_CROSSCOMPILING )
243
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000244add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000245
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000246add_subdirectory(lib/VMCore)
247add_subdirectory(lib/CodeGen)
248add_subdirectory(lib/CodeGen/SelectionDAG)
249add_subdirectory(lib/CodeGen/AsmPrinter)
250add_subdirectory(lib/Bitcode/Reader)
251add_subdirectory(lib/Bitcode/Writer)
252add_subdirectory(lib/Transforms/Utils)
253add_subdirectory(lib/Transforms/Instrumentation)
254add_subdirectory(lib/Transforms/Scalar)
255add_subdirectory(lib/Transforms/IPO)
256add_subdirectory(lib/Transforms/Hello)
257add_subdirectory(lib/Linker)
258add_subdirectory(lib/Analysis)
259add_subdirectory(lib/Analysis/IPA)
Daniel Dunbarecc63f82009-06-23 22:01:43 +0000260add_subdirectory(lib/MC)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000261
Douglas Gregor4d20c242009-07-20 18:30:25 +0000262add_subdirectory(utils/FileCheck)
263
Oscar Fuentes75caad42009-08-14 04:55:21 +0000264set(LLVM_ENUM_ASM_PRINTERS "")
265set(LLVM_ENUM_ASM_PARSERS "")
266foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000267 message(STATUS "Targeting ${t}")
268 add_subdirectory(lib/Target/${t})
Daniel Dunbarb5a8c082009-07-15 07:04:27 +0000269 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentescccecb82008-11-14 22:21:02 +0000270 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes75caad42009-08-14 04:55:21 +0000271 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1555a232009-06-16 20:12:29 +0000272 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes75caad42009-08-14 04:55:21 +0000273 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
274 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000275 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes75caad42009-08-14 04:55:21 +0000276 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000277 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes75caad42009-08-14 04:55:21 +0000278 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
279 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentesb78829e2009-08-16 05:16:43 +0000280 set(CURRENT_LLVM_TARGET)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000281endforeach(t)
282
Douglas Gregor1555a232009-06-16 20:12:29 +0000283# Produce llvm/Config/AsmPrinters.def
284configure_file(
285 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
286 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
287 )
288
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000289# Produce llvm/Config/AsmParsers.def
290configure_file(
291 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
292 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
293 )
294
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000295add_subdirectory(lib/ExecutionEngine)
296add_subdirectory(lib/ExecutionEngine/Interpreter)
297add_subdirectory(lib/ExecutionEngine/JIT)
298add_subdirectory(lib/Target)
299add_subdirectory(lib/AsmParser)
300add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000301add_subdirectory(lib/Archive)
302
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000303add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000304
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000305option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
306if(LLVM_BUILD_TOOLS)
307 add_subdirectory(tools)
308endif()
309
310option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." ON)
311if(LLVM_BUILD_EXAMPLES)
Douglas Gregor5dd42722009-06-16 22:25:45 +0000312 add_subdirectory(examples)
313endif ()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000314
315install(DIRECTORY include
316 DESTINATION .
317 PATTERN ".svn" EXCLUDE
318 PATTERN "*.cmake" EXCLUDE
319 PATTERN "*.in" EXCLUDE
Oscar Fuentes4ae953b2009-08-12 01:37:33 +0000320 PATTERN "*.tmp" EXCLUDE
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000321 )
322
323install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
324 DESTINATION .
325 )
326
327# TODO: make and install documentation.