blob: 6abfa4f215e5a766c6d7f7740f543dd1d33d2680 [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 +000022include(FindPerl)
23
24set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes980e8422008-10-29 02:33:15 +000025set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000026set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
27set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
28set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentesaf0f65f2009-06-12 02:49:53 +000029set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000030
Oscar Fuentes4f21c132008-11-10 01:47:07 +000031set(LLVM_ALL_TARGETS
32 Alpha
33 ARM
34 CBackend
35 CellSPU
36 CppBackend
37 IA64
38 Mips
39 MSIL
40 PIC16
41 PowerPC
42 Sparc
43 X86
44 XCore
45 )
46
Oscar Fuentes7f6f21e2008-11-15 22:51:03 +000047# List of targets whose asmprinters need to be forced to link
48# into executables on some platforms (i.e. Windows):
49set(LLVM_ASMPRINTERS_FORCE_LINK X86 PowerPC)
50
Oscar Fuentese1ad0872008-09-26 04:40:32 +000051if( MSVC )
52 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000053 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000054else( MSVC )
Oscar Fuentes4f21c132008-11-10 01:47:07 +000055 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
56 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000057endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000058
Oscar Fuentes4b442832008-11-18 23:45:21 +000059option(LLVM_ENABLE_THREADS "Use threads if available." ON)
60
Oscar Fuentes81a87552009-06-03 15:11:25 +000061if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes76941b22009-06-04 09:26:16 +000062 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes81a87552009-06-03 15:11:25 +000063else()
Oscar Fuentes76941b22009-06-04 09:26:16 +000064 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes81a87552009-06-03 15:11:25 +000065endif()
66
Oscar Fuentes76941b22009-06-04 09:26:16 +000067if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaf109102009-07-05 18:43:52 +000068 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
69 if( NOT MSVC OR NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
70 add_definitions( -D_DEBUG )
71 endif()
Oscar Fuentes76941b22009-06-04 09:26:16 +000072 # On Release builds cmake automatically defines NDEBUG, so we
73 # explicitly undefine it:
74 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
75 add_definitions( -UNDEBUG )
76 endif()
77else()
78 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
79 add_definitions( -DNDEBUG )
80 endif()
Oscar Fuentes81a87552009-06-03 15:11:25 +000081endif()
82
Oscar Fuentes4f21c132008-11-10 01:47:07 +000083if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
84 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
85endif()
86
Douglas Gregor1555a232009-06-16 20:12:29 +000087set(LLVM_ENUM_TARGETS "")
Oscar Fuentes4f21c132008-11-10 01:47:07 +000088foreach(c ${LLVM_TARGETS_TO_BUILD})
89 list(FIND LLVM_ALL_TARGETS ${c} idx)
90 if( idx LESS 0 )
91 message(FATAL_ERROR "The target `${c}' does not exists.
92 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1555a232009-06-16 20:12:29 +000093 else()
94 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentes4f21c132008-11-10 01:47:07 +000095 endif()
96endforeach(c)
97
Douglas Gregor1555a232009-06-16 20:12:29 +000098# Produce llvm/Config/Targets.def
99configure_file(
100 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
101 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
102 )
103
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000104set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
105
106# Add path for custom modules
107set(CMAKE_MODULE_PATH
108 ${CMAKE_MODULE_PATH}
109 "${LLVM_MAIN_SRC_DIR}/cmake"
110 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
111 )
112
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000113include(AddLLVMDefinitions)
114
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000115if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +0000116 if(CYGWIN)
117 set(LLVM_ON_WIN32 0)
118 set(LLVM_ON_UNIX 1)
119 else(CYGWIN)
120 set(LLVM_ON_WIN32 1)
121 set(LLVM_ON_UNIX 0)
122 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000123 set(LTDL_SHLIB_EXT ".dll")
124 set(EXEEXT ".exe")
125 # Maximum path length is 160 for non-unicode paths
126 set(MAXPATHLEN 160)
127else(WIN32)
128 if(UNIX)
129 set(LLVM_ON_WIN32 0)
130 set(LLVM_ON_UNIX 1)
131 set(LTDL_SHLIB_EXT ".so")
132 set(EXEEXT "")
133 # FIXME: Maximum path length is currently set to 'safe' fixed value
134 set(MAXPATHLEN 2024)
135 else(UNIX)
136 MESSAGE(SEND_ERROR "Unable to determine platform")
137 endif(UNIX)
138endif(WIN32)
139
140if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
141 set(HAVE_LLVM_CONFIG 1)
142endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000143
Oscar Fuentesde98db32008-10-25 03:29:36 +0000144include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000145
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000146option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
147
Douglas Gregor318de602009-06-05 23:46:34 +0000148set(ENABLE_PIC 0)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000149if( LLVM_ENABLE_PIC )
150 if( SUPPORTS_FPIC_FLAG )
151 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000152 add_llvm_definitions(-fPIC)
Douglas Gregor318de602009-06-05 23:46:34 +0000153 set(ENABLE_PIC 1)
154 else( SUPPORTS_FPIC_FLAG )
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000155 message(STATUS "Warning: -fPIC not supported.")
156 endif()
157endif()
158
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000159set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
160set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
161set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
162
163# set(CMAKE_VERBOSE_MAKEFILE true)
164
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000165add_llvm_definitions( -D__STDC_LIMIT_MACROS )
166add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000167
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000168if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
169 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000170 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
171 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000172 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000173 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000174 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
175 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000176 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000177 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000178endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
179
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000180if( MSVC )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000181 # List of valid CRTs for MSVC
182 set(MSVC_CRT
183 MD
184 MDd)
185
186 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000187 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
188 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
189 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
190 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
191 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000192
193 if (NOT ${LLVM_USE_CRT} STREQUAL "")
194 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
195 if (idx LESS 0)
196 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
197 endif (idx LESS 0)
198 add_llvm_definitions("/${LLVM_USE_CRT}")
199 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
200 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000201endif( MSVC )
202
Oscar Fuentes980e8422008-10-29 02:33:15 +0000203include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000204
205include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000206include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000207
208add_subdirectory(lib/Support)
209add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000210
211# Everything else depends on Support and System:
212set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
213
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000214set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000215 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes99b94892009-06-11 04:16:10 +0000216# Effective tblgen executable to be used:
217set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000218
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000219add_subdirectory(utils/TableGen)
220
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000221if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000222 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000223 include( CrossCompileLLVM )
224endif( CMAKE_CROSSCOMPILING )
225
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000226add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000227
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000228add_subdirectory(lib/VMCore)
229add_subdirectory(lib/CodeGen)
230add_subdirectory(lib/CodeGen/SelectionDAG)
231add_subdirectory(lib/CodeGen/AsmPrinter)
232add_subdirectory(lib/Bitcode/Reader)
233add_subdirectory(lib/Bitcode/Writer)
234add_subdirectory(lib/Transforms/Utils)
235add_subdirectory(lib/Transforms/Instrumentation)
236add_subdirectory(lib/Transforms/Scalar)
237add_subdirectory(lib/Transforms/IPO)
238add_subdirectory(lib/Transforms/Hello)
239add_subdirectory(lib/Linker)
240add_subdirectory(lib/Analysis)
241add_subdirectory(lib/Analysis/IPA)
Daniel Dunbarecc63f82009-06-23 22:01:43 +0000242add_subdirectory(lib/MC)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000243
Douglas Gregor1555a232009-06-16 20:12:29 +0000244 set(LLVM_ENUM_ASM_PRINTERS "")
245 foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000246 message(STATUS "Targeting ${t}")
247 add_subdirectory(lib/Target/${t})
Oscar Fuentescccecb82008-11-14 22:21:02 +0000248 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Douglas Gregor1555a232009-06-16 20:12:29 +0000249 add_subdirectory(lib/Target/${t}/AsmPrinter)
250 set(LLVM_ENUM_ASM_PRINTERS
251 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
252 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000253endforeach(t)
254
Douglas Gregor1555a232009-06-16 20:12:29 +0000255# Produce llvm/Config/AsmPrinters.def
256configure_file(
257 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
258 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
259 )
260
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000261add_subdirectory(lib/ExecutionEngine)
262add_subdirectory(lib/ExecutionEngine/Interpreter)
263add_subdirectory(lib/ExecutionEngine/JIT)
264add_subdirectory(lib/Target)
265add_subdirectory(lib/AsmParser)
266add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000267add_subdirectory(lib/Archive)
268
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000269add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000270add_subdirectory(tools)
271
Douglas Gregor5dd42722009-06-16 22:25:45 +0000272option(LLVM_EXAMPLES "Build LLVM example programs." OFF)
273if (LLVM_EXAMPLES)
274 add_subdirectory(examples)
275endif ()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000276
277install(DIRECTORY include
278 DESTINATION .
279 PATTERN ".svn" EXCLUDE
280 PATTERN "*.cmake" EXCLUDE
281 PATTERN "*.in" EXCLUDE
282 )
283
284install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
285 DESTINATION .
286 )
287
288# TODO: make and install documentation.