blob: 362a395e2ab2f13515d6f943e1ec30f575a41831 [file] [log] [blame]
Oscar Fuentesfff33a32009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Cedric Venet6c9f3ec2008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00004cmake_minimum_required(VERSION 2.6.1)
5
6set(PACKAGE_NAME llvm)
Douglas Gregorcd44dad2009-08-22 06:30:31 +00007set(PACKAGE_VERSION 2.7svn)
Chris Lattnerff2d99d2009-01-28 17:49:03 +00008set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentes24617b72008-10-25 03:49:35 +00009set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000010
Oscar Fuentesa5f83562008-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 Fuentes61338132009-06-03 15:11:25 +000020string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000022set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes2500aae2008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentesa229b3c2008-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 Fuentes46fed3b2009-06-12 02:49:53 +000027set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000028
Oscar Fuentes304396a2009-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 Fuentese9edc2c2008-11-10 01:47:07 +000047set(LLVM_ALL_TARGETS
48 Alpha
49 ARM
Jakob Stoklund Olesen526e8032009-08-02 17:32:37 +000050 Blackfin
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000051 CBackend
52 CellSPU
53 CppBackend
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000054 Mips
55 MSIL
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000056 MSP430
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000057 PIC16
58 PowerPC
59 Sparc
Daniel Dunbar88f35c82009-07-20 00:24:17 +000060 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000061 X86
62 XCore
63 )
64
Oscar Fuentescdc95492008-09-26 04:40:32 +000065if( MSVC )
66 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000067 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentescdc95492008-09-26 04:40:32 +000068else( MSVC )
Oscar Fuentese9edc2c2008-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 Fuentescdc95492008-09-26 04:40:32 +000071endif( MSVC )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000072
Oscar Fuentesb9a78132009-09-13 22:18:38 +000073set(LLVM_TARGET_ARCH "host"
74 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
75
Oscar Fuentes366fbb72008-11-18 23:45:21 +000076option(LLVM_ENABLE_THREADS "Use threads if available." ON)
77
Oscar Fuentes61338132009-06-03 15:11:25 +000078if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes208a8732009-06-04 09:26:16 +000079 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes61338132009-06-03 15:11:25 +000080else()
Oscar Fuentes208a8732009-06-04 09:26:16 +000081 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes61338132009-06-03 15:11:25 +000082endif()
83
Oscar Fuentes208a8732009-06-04 09:26:16 +000084if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentes56745312009-07-05 18:43:52 +000085 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentesc296b892009-07-05 23:58:20 +000086 if( NOT MSVC )
Oscar Fuentes56745312009-07-05 18:43:52 +000087 add_definitions( -D_DEBUG )
88 endif()
Oscar Fuentes208a8732009-06-04 09:26:16 +000089 # On Release builds cmake automatically defines NDEBUG, so we
90 # explicitly undefine it:
91 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
92 add_definitions( -UNDEBUG )
93 endif()
94else()
95 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
96 add_definitions( -DNDEBUG )
97 endif()
Oscar Fuentes61338132009-06-03 15:11:25 +000098endif()
99
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000100if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
101 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
102endif()
103
Douglas Gregor1b731d52009-06-16 20:12:29 +0000104set(LLVM_ENUM_TARGETS "")
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000105foreach(c ${LLVM_TARGETS_TO_BUILD})
106 list(FIND LLVM_ALL_TARGETS ${c} idx)
107 if( idx LESS 0 )
Gabor Greif27c7a9d2009-08-12 08:37:37 +0000108 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000109 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1b731d52009-06-16 20:12:29 +0000110 else()
111 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000112 endif()
113endforeach(c)
114
Douglas Gregor1b731d52009-06-16 20:12:29 +0000115# Produce llvm/Config/Targets.def
116configure_file(
117 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
118 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
119 )
120
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000121set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
122
123# Add path for custom modules
124set(CMAKE_MODULE_PATH
125 ${CMAKE_MODULE_PATH}
126 "${LLVM_MAIN_SRC_DIR}/cmake"
127 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
128 )
129
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000130include(AddLLVMDefinitions)
131
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000132if(WIN32)
Oscar Fuentes876aa172008-10-30 17:15:54 +0000133 if(CYGWIN)
134 set(LLVM_ON_WIN32 0)
135 set(LLVM_ON_UNIX 1)
136 else(CYGWIN)
137 set(LLVM_ON_WIN32 1)
138 set(LLVM_ON_UNIX 0)
139 endif(CYGWIN)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000140 set(LTDL_SHLIB_EXT ".dll")
141 set(EXEEXT ".exe")
142 # Maximum path length is 160 for non-unicode paths
143 set(MAXPATHLEN 160)
144else(WIN32)
145 if(UNIX)
146 set(LLVM_ON_WIN32 0)
147 set(LLVM_ON_UNIX 1)
Daniel Dunbar6ce1ab12009-09-22 06:09:37 +0000148 if(APPLE)
149 set(LTDL_SHLIB_EXT ".dylib")
150 else(APPLE)
151 set(LTDL_SHLIB_EXT ".so")
152 endif(APPLE)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000153 set(EXEEXT "")
154 # FIXME: Maximum path length is currently set to 'safe' fixed value
155 set(MAXPATHLEN 2024)
156 else(UNIX)
157 MESSAGE(SEND_ERROR "Unable to determine platform")
158 endif(UNIX)
159endif(WIN32)
160
Oscar Fuentesa9ac9092008-10-25 03:29:36 +0000161include(config-ix)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000162
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000163option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000164
Douglas Gregor5f11afc2009-06-05 23:46:34 +0000165set(ENABLE_PIC 0)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000166if( LLVM_ENABLE_PIC )
167 if( SUPPORTS_FPIC_FLAG )
168 message(STATUS "Building with -fPIC")
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000169 add_llvm_definitions(-fPIC)
Douglas Gregor5f11afc2009-06-05 23:46:34 +0000170 set(ENABLE_PIC 1)
171 else( SUPPORTS_FPIC_FLAG )
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000172 message(STATUS "Warning: -fPIC not supported.")
173 endif()
174endif()
175
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000176set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
177set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
178set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
179
180# set(CMAKE_VERBOSE_MAKEFILE true)
181
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000182add_llvm_definitions( -D__STDC_LIMIT_MACROS )
183add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000184
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000185if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
186 # TODO: support other platforms and toolchains.
Oscar Fuentes32581492008-11-19 00:10:39 +0000187 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
188 if( LLVM_BUILD_32_BITS )
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000189 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000190 add_llvm_definitions( -m32 )
Oscar Fuentes32581492008-11-19 00:10:39 +0000191 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
192 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentes32581492008-11-19 00:10:39 +0000193 endif( LLVM_BUILD_32_BITS )
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000194endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
195
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000196if( MSVC )
Stefanus Du Toit6b602ad2009-06-08 21:18:31 +0000197 # List of valid CRTs for MSVC
198 set(MSVC_CRT
199 MD
200 MDd)
201
202 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000203 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
204 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
205 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
206 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
207 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit6b602ad2009-06-08 21:18:31 +0000208
Daniel Dunbaracd56a02009-07-19 01:35:10 +0000209 # Suppress 'new behavior: elements of array 'array' will be default initialized'
210 add_llvm_definitions( -wd4351 )
211
Stefanus Du Toit6b602ad2009-06-08 21:18:31 +0000212 if (NOT ${LLVM_USE_CRT} STREQUAL "")
213 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
214 if (idx LESS 0)
215 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
216 endif (idx LESS 0)
217 add_llvm_definitions("/${LLVM_USE_CRT}")
218 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
219 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000220endif( MSVC )
221
Oscar Fuentes2500aae2008-10-29 02:33:15 +0000222include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000223
224include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000225include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000226
227add_subdirectory(lib/Support)
228add_subdirectory(lib/System)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000229
230# Everything else depends on Support and System:
231set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
232
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000233set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes9530edd2008-11-10 02:35:55 +0000234 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentescaa7a942009-06-11 04:16:10 +0000235# Effective tblgen executable to be used:
236set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000237
Oscar Fuentese352ca02008-11-10 01:32:14 +0000238add_subdirectory(utils/TableGen)
239
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000240if( CMAKE_CROSSCOMPILING )
Oscar Fuentese352ca02008-11-10 01:32:14 +0000241 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000242 include( CrossCompileLLVM )
243endif( CMAKE_CROSSCOMPILING )
244
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000245add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000246
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000247add_subdirectory(lib/VMCore)
248add_subdirectory(lib/CodeGen)
249add_subdirectory(lib/CodeGen/SelectionDAG)
250add_subdirectory(lib/CodeGen/AsmPrinter)
251add_subdirectory(lib/Bitcode/Reader)
252add_subdirectory(lib/Bitcode/Writer)
253add_subdirectory(lib/Transforms/Utils)
254add_subdirectory(lib/Transforms/Instrumentation)
255add_subdirectory(lib/Transforms/Scalar)
256add_subdirectory(lib/Transforms/IPO)
257add_subdirectory(lib/Transforms/Hello)
258add_subdirectory(lib/Linker)
259add_subdirectory(lib/Analysis)
260add_subdirectory(lib/Analysis/IPA)
Daniel Dunbarca29e4d2009-06-23 22:01:43 +0000261add_subdirectory(lib/MC)
Daniel Dunbar28830b32009-09-22 07:38:44 +0000262add_subdirectory(test)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000263
Douglas Gregor289dfc52009-07-20 18:30:25 +0000264add_subdirectory(utils/FileCheck)
265
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000266set(LLVM_ENUM_ASM_PRINTERS "")
267set(LLVM_ENUM_ASM_PARSERS "")
268foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentescdc95492008-09-26 04:40:32 +0000269 message(STATUS "Targeting ${t}")
270 add_subdirectory(lib/Target/${t})
Daniel Dunbarb3ec4882009-07-15 07:04:27 +0000271 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes070114f2008-11-14 22:21:02 +0000272 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000273 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1b731d52009-06-16 20:12:29 +0000274 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000275 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
276 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbar71475772009-07-17 20:42:00 +0000277 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000278 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbar71475772009-07-17 20:42:00 +0000279 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000280 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
281 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes8160d282009-08-16 05:16:43 +0000282 set(CURRENT_LLVM_TARGET)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000283endforeach(t)
284
Douglas Gregor1b731d52009-06-16 20:12:29 +0000285# Produce llvm/Config/AsmPrinters.def
286configure_file(
287 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
288 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
289 )
290
Daniel Dunbar71475772009-07-17 20:42:00 +0000291# Produce llvm/Config/AsmParsers.def
292configure_file(
293 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
294 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
295 )
296
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000297add_subdirectory(lib/ExecutionEngine)
298add_subdirectory(lib/ExecutionEngine/Interpreter)
299add_subdirectory(lib/ExecutionEngine/JIT)
300add_subdirectory(lib/Target)
301add_subdirectory(lib/AsmParser)
302add_subdirectory(lib/Debugger)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000303add_subdirectory(lib/Archive)
304
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000305add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000306
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000307option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
308if(LLVM_BUILD_TOOLS)
309 add_subdirectory(tools)
310endif()
311
312option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." ON)
313if(LLVM_BUILD_EXAMPLES)
Douglas Gregor32f546b2009-06-16 22:25:45 +0000314 add_subdirectory(examples)
315endif ()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000316
317install(DIRECTORY include
318 DESTINATION .
319 PATTERN ".svn" EXCLUDE
320 PATTERN "*.cmake" EXCLUDE
321 PATTERN "*.in" EXCLUDE
Oscar Fuentesfc081d62009-08-12 01:37:33 +0000322 PATTERN "*.tmp" EXCLUDE
Oscar Fuentes64c99622008-10-22 02:56:07 +0000323 )
324
325install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
326 DESTINATION .
327 )
328
329# TODO: make and install documentation.