blob: c6036f02bd02fc62fe0e34e10274a01ae57dcfd0 [file] [log] [blame]
Oscar Fuentes4d925f12009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Cédric Venet37275c62008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentes00905d52008-09-22 01:08:49 +00004cmake_minimum_required(VERSION 2.6.1)
5
6set(PACKAGE_NAME llvm)
Douglas Gregor7c502432009-08-22 06:30:31 +00007set(PACKAGE_VERSION 2.7svn)
Chris Lattner08e88a32009-01-28 17:49:03 +00008set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentes928b29e2008-10-25 03:49:35 +00009set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentes00905d52008-09-22 01:08:49 +000010
Oscar Fuentes3bece9d2008-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 Fuentes538764e2009-06-03 15:11:25 +000020string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
Oscar Fuentes00905d52008-09-22 01:08:49 +000022set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes3ae2f202008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes00905d52008-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 Fuentes1638ede2009-06-12 02:49:53 +000027set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes00905d52008-09-22 01:08:49 +000028
Oscar Fuentes44ddba72009-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 Fuentesbc90c272008-11-10 01:47:07 +000047set(LLVM_ALL_TARGETS
48 Alpha
49 ARM
Jakob Stoklund Olesenb62e9aa2009-08-02 17:32:37 +000050 Blackfin
Oscar Fuentesbc90c272008-11-10 01:47:07 +000051 CBackend
52 CellSPU
53 CppBackend
Oscar Fuentesbc90c272008-11-10 01:47:07 +000054 Mips
55 MSIL
Richard Pennington475cb1f2009-07-09 20:27:09 +000056 MSP430
Oscar Fuentesbc90c272008-11-10 01:47:07 +000057 PIC16
58 PowerPC
59 Sparc
Daniel Dunbar3f17ea92009-07-20 00:24:17 +000060 SystemZ
Oscar Fuentesbc90c272008-11-10 01:47:07 +000061 X86
62 XCore
63 )
64
Oscar Fuentesda2a8a12008-09-26 04:40:32 +000065if( MSVC )
66 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentesbc90c272008-11-10 01:47:07 +000067 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesda2a8a12008-09-26 04:40:32 +000068else( MSVC )
Oscar Fuentesbc90c272008-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 Fuentesda2a8a12008-09-26 04:40:32 +000071endif( MSVC )
Oscar Fuentes00905d52008-09-22 01:08:49 +000072
Oscar Fuentesaa3b3152008-11-18 23:45:21 +000073option(LLVM_ENABLE_THREADS "Use threads if available." ON)
74
Oscar Fuentes538764e2009-06-03 15:11:25 +000075if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes91d635d2009-06-04 09:26:16 +000076 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes538764e2009-06-03 15:11:25 +000077else()
Oscar Fuentes91d635d2009-06-04 09:26:16 +000078 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes538764e2009-06-03 15:11:25 +000079endif()
80
Oscar Fuentes91d635d2009-06-04 09:26:16 +000081if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000082 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentesf7ccc7f2009-07-05 23:58:20 +000083 if( NOT MSVC )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000084 add_definitions( -D_DEBUG )
85 endif()
Oscar Fuentes91d635d2009-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 Fuentes538764e2009-06-03 15:11:25 +000095endif()
96
Oscar Fuentesbc90c272008-11-10 01:47:07 +000097if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
98 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
99endif()
100
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000101set(LLVM_ENUM_TARGETS "")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000102foreach(c ${LLVM_TARGETS_TO_BUILD})
103 list(FIND LLVM_ALL_TARGETS ${c} idx)
104 if( idx LESS 0 )
Gabor Greif2fd98ab2009-08-12 08:37:37 +0000105 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000106 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000107 else()
108 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000109 endif()
110endforeach(c)
111
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000112# Produce llvm/Config/Targets.def
113configure_file(
114 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
115 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
116 )
117
Oscar Fuentes00905d52008-09-22 01:08:49 +0000118set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
119
120# Add path for custom modules
121set(CMAKE_MODULE_PATH
122 ${CMAKE_MODULE_PATH}
123 "${LLVM_MAIN_SRC_DIR}/cmake"
124 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
125 )
126
Oscar Fuentesa7374582009-04-04 22:41:07 +0000127include(AddLLVMDefinitions)
128
Oscar Fuentes00905d52008-09-22 01:08:49 +0000129if(WIN32)
Oscar Fuenteseaf1eeb2008-10-30 17:15:54 +0000130 if(CYGWIN)
131 set(LLVM_ON_WIN32 0)
132 set(LLVM_ON_UNIX 1)
133 else(CYGWIN)
134 set(LLVM_ON_WIN32 1)
135 set(LLVM_ON_UNIX 0)
136 endif(CYGWIN)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000137 set(LTDL_SHLIB_EXT ".dll")
138 set(EXEEXT ".exe")
139 # Maximum path length is 160 for non-unicode paths
140 set(MAXPATHLEN 160)
141else(WIN32)
142 if(UNIX)
143 set(LLVM_ON_WIN32 0)
144 set(LLVM_ON_UNIX 1)
145 set(LTDL_SHLIB_EXT ".so")
146 set(EXEEXT "")
147 # FIXME: Maximum path length is currently set to 'safe' fixed value
148 set(MAXPATHLEN 2024)
149 else(UNIX)
150 MESSAGE(SEND_ERROR "Unable to determine platform")
151 endif(UNIX)
152endif(WIN32)
153
Oscar Fuentesab469632008-10-25 03:29:36 +0000154include(config-ix)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000155
Oscar Fuentesca462fb2009-08-18 15:29:35 +0000156option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000157
Douglas Gregor5d8931b2009-06-05 23:46:34 +0000158set(ENABLE_PIC 0)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000159if( LLVM_ENABLE_PIC )
160 if( SUPPORTS_FPIC_FLAG )
161 message(STATUS "Building with -fPIC")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000162 add_llvm_definitions(-fPIC)
Douglas Gregor5d8931b2009-06-05 23:46:34 +0000163 set(ENABLE_PIC 1)
164 else( SUPPORTS_FPIC_FLAG )
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000165 message(STATUS "Warning: -fPIC not supported.")
166 endif()
167endif()
168
Oscar Fuentes00905d52008-09-22 01:08:49 +0000169set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
170set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
171set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
172
173# set(CMAKE_VERBOSE_MAKEFILE true)
174
Oscar Fuentesa7374582009-04-04 22:41:07 +0000175add_llvm_definitions( -D__STDC_LIMIT_MACROS )
176add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000177
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000178if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
179 # TODO: support other platforms and toolchains.
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000180 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
181 if( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000182 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000183 add_llvm_definitions( -m32 )
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000184 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
185 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000186 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000187endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
188
Oscar Fuentes00905d52008-09-22 01:08:49 +0000189if( MSVC )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000190 # List of valid CRTs for MSVC
191 set(MSVC_CRT
192 MD
193 MDd)
194
195 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000196 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
197 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
198 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
199 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
200 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000201
Daniel Dunbar1b6445a2009-07-19 01:35:10 +0000202 # Suppress 'new behavior: elements of array 'array' will be default initialized'
203 add_llvm_definitions( -wd4351 )
204
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000205 if (NOT ${LLVM_USE_CRT} STREQUAL "")
206 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
207 if (idx LESS 0)
208 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
209 endif (idx LESS 0)
210 add_llvm_definitions("/${LLVM_USE_CRT}")
211 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
212 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes00905d52008-09-22 01:08:49 +0000213endif( MSVC )
214
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000215include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes00905d52008-09-22 01:08:49 +0000216
217include(AddLLVM)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000218include(TableGen)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000219
220add_subdirectory(lib/Support)
221add_subdirectory(lib/System)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000222
223# Everything else depends on Support and System:
224set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
225
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000226set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentesc9a32592008-11-10 02:35:55 +0000227 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes232f1942009-06-11 04:16:10 +0000228# Effective tblgen executable to be used:
229set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000230
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000231add_subdirectory(utils/TableGen)
232
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000233if( CMAKE_CROSSCOMPILING )
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000234 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000235 include( CrossCompileLLVM )
236endif( CMAKE_CROSSCOMPILING )
237
Oscar Fuentes78939712008-11-15 00:24:38 +0000238add_subdirectory(include/llvm)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000239
Oscar Fuentes00905d52008-09-22 01:08:49 +0000240add_subdirectory(lib/VMCore)
241add_subdirectory(lib/CodeGen)
242add_subdirectory(lib/CodeGen/SelectionDAG)
243add_subdirectory(lib/CodeGen/AsmPrinter)
244add_subdirectory(lib/Bitcode/Reader)
245add_subdirectory(lib/Bitcode/Writer)
246add_subdirectory(lib/Transforms/Utils)
247add_subdirectory(lib/Transforms/Instrumentation)
248add_subdirectory(lib/Transforms/Scalar)
249add_subdirectory(lib/Transforms/IPO)
250add_subdirectory(lib/Transforms/Hello)
251add_subdirectory(lib/Linker)
252add_subdirectory(lib/Analysis)
253add_subdirectory(lib/Analysis/IPA)
Daniel Dunbar6bedec12009-06-23 22:01:43 +0000254add_subdirectory(lib/MC)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000255
Douglas Gregorda30a362009-07-20 18:30:25 +0000256add_subdirectory(utils/FileCheck)
257
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000258set(LLVM_ENUM_ASM_PRINTERS "")
259set(LLVM_ENUM_ASM_PARSERS "")
260foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000261 message(STATUS "Targeting ${t}")
262 add_subdirectory(lib/Target/${t})
Daniel Dunbar26a8dfc2009-07-15 07:04:27 +0000263 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes9cd56a02008-11-14 22:21:02 +0000264 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000265 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000266 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000267 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
268 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000269 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000270 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000271 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000272 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
273 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes01833482009-08-16 05:16:43 +0000274 set(CURRENT_LLVM_TARGET)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000275endforeach(t)
276
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000277# Produce llvm/Config/AsmPrinters.def
278configure_file(
279 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
280 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
281 )
282
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000283# Produce llvm/Config/AsmParsers.def
284configure_file(
285 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
286 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
287 )
288
Oscar Fuentes00905d52008-09-22 01:08:49 +0000289add_subdirectory(lib/ExecutionEngine)
290add_subdirectory(lib/ExecutionEngine/Interpreter)
291add_subdirectory(lib/ExecutionEngine/JIT)
292add_subdirectory(lib/Target)
293add_subdirectory(lib/AsmParser)
294add_subdirectory(lib/Debugger)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000295add_subdirectory(lib/Archive)
296
Oscar Fuentes7b6742b2009-03-06 01:16:52 +0000297add_subdirectory(projects)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000298
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000299option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
300if(LLVM_BUILD_TOOLS)
301 add_subdirectory(tools)
302endif()
303
304option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." ON)
305if(LLVM_BUILD_EXAMPLES)
Douglas Gregor374cca72009-06-16 22:25:45 +0000306 add_subdirectory(examples)
307endif ()
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000308
309install(DIRECTORY include
310 DESTINATION .
311 PATTERN ".svn" EXCLUDE
312 PATTERN "*.cmake" EXCLUDE
313 PATTERN "*.in" EXCLUDE
Oscar Fuentes58c6cfd2009-08-12 01:37:33 +0000314 PATTERN "*.tmp" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000315 )
316
317install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
318 DESTINATION .
319 )
320
321# TODO: make and install documentation.