blob: 31b1f3063bb06bddf439b99bd4791b83f8db737f [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 Fuentes6761c5d2009-07-13 21:58:44 +000031if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
32 file(GLOB_RECURSE
33 tablegenned_files_on_include_dir
34 "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen")
35 file(GLOB_RECURSE
36 tablegenned_files_on_lib_dir
37 "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc")
38 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
39 message(FATAL_ERROR "Apparently there is a previous in-source build,
40probably as the result of running `configure' and `make' on
41${LLVM_MAIN_SRC_DIR}.
42This may cause problems. The suspicious files are:
43${tablegenned_files_on_lib_dir}
44${tablegenned_files_on_include_dir}
45Please clean the source directory.")
46 endif()
47endif()
48
Oscar Fuentes4f21c132008-11-10 01:47:07 +000049set(LLVM_ALL_TARGETS
50 Alpha
51 ARM
52 CBackend
53 CellSPU
54 CppBackend
55 IA64
56 Mips
57 MSIL
Richard Penningtona51984b2009-07-09 20:27:09 +000058 MSP430
Oscar Fuentes4f21c132008-11-10 01:47:07 +000059 PIC16
60 PowerPC
61 Sparc
62 X86
63 XCore
64 )
65
Oscar Fuentes7f6f21e2008-11-15 22:51:03 +000066# List of targets whose asmprinters need to be forced to link
67# into executables on some platforms (i.e. Windows):
68set(LLVM_ASMPRINTERS_FORCE_LINK X86 PowerPC)
69
Oscar Fuentese1ad0872008-09-26 04:40:32 +000070if( MSVC )
71 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000072 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000073else( MSVC )
Oscar Fuentes4f21c132008-11-10 01:47:07 +000074 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
75 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000076endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000077
Oscar Fuentes4b442832008-11-18 23:45:21 +000078option(LLVM_ENABLE_THREADS "Use threads if available." ON)
79
Oscar Fuentes81a87552009-06-03 15:11:25 +000080if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes76941b22009-06-04 09:26:16 +000081 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes81a87552009-06-03 15:11:25 +000082else()
Oscar Fuentes76941b22009-06-04 09:26:16 +000083 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes81a87552009-06-03 15:11:25 +000084endif()
85
Oscar Fuentes76941b22009-06-04 09:26:16 +000086if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaf109102009-07-05 18:43:52 +000087 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentese8c81ea2009-07-05 23:58:20 +000088 if( NOT MSVC )
Oscar Fuentesaf109102009-07-05 18:43:52 +000089 add_definitions( -D_DEBUG )
90 endif()
Oscar Fuentes76941b22009-06-04 09:26:16 +000091 # On Release builds cmake automatically defines NDEBUG, so we
92 # explicitly undefine it:
93 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
94 add_definitions( -UNDEBUG )
95 endif()
96else()
97 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
98 add_definitions( -DNDEBUG )
99 endif()
Oscar Fuentes81a87552009-06-03 15:11:25 +0000100endif()
101
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000102if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
103 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
104endif()
105
Douglas Gregor1555a232009-06-16 20:12:29 +0000106set(LLVM_ENUM_TARGETS "")
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000107foreach(c ${LLVM_TARGETS_TO_BUILD})
108 list(FIND LLVM_ALL_TARGETS ${c} idx)
109 if( idx LESS 0 )
110 message(FATAL_ERROR "The target `${c}' does not exists.
111 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1555a232009-06-16 20:12:29 +0000112 else()
113 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000114 endif()
115endforeach(c)
116
Douglas Gregor1555a232009-06-16 20:12:29 +0000117# Produce llvm/Config/Targets.def
118configure_file(
119 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
120 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
121 )
122
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000123set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
124
125# Add path for custom modules
126set(CMAKE_MODULE_PATH
127 ${CMAKE_MODULE_PATH}
128 "${LLVM_MAIN_SRC_DIR}/cmake"
129 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
130 )
131
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000132include(AddLLVMDefinitions)
133
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000134if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +0000135 if(CYGWIN)
136 set(LLVM_ON_WIN32 0)
137 set(LLVM_ON_UNIX 1)
138 else(CYGWIN)
139 set(LLVM_ON_WIN32 1)
140 set(LLVM_ON_UNIX 0)
141 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000142 set(LTDL_SHLIB_EXT ".dll")
143 set(EXEEXT ".exe")
144 # Maximum path length is 160 for non-unicode paths
145 set(MAXPATHLEN 160)
146else(WIN32)
147 if(UNIX)
148 set(LLVM_ON_WIN32 0)
149 set(LLVM_ON_UNIX 1)
150 set(LTDL_SHLIB_EXT ".so")
151 set(EXEEXT "")
152 # FIXME: Maximum path length is currently set to 'safe' fixed value
153 set(MAXPATHLEN 2024)
154 else(UNIX)
155 MESSAGE(SEND_ERROR "Unable to determine platform")
156 endif(UNIX)
157endif(WIN32)
158
159if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
160 set(HAVE_LLVM_CONFIG 1)
161endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000162
Oscar Fuentesde98db32008-10-25 03:29:36 +0000163include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000164
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000165option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
166
Douglas Gregor318de602009-06-05 23:46:34 +0000167set(ENABLE_PIC 0)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000168if( LLVM_ENABLE_PIC )
169 if( SUPPORTS_FPIC_FLAG )
170 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000171 add_llvm_definitions(-fPIC)
Douglas Gregor318de602009-06-05 23:46:34 +0000172 set(ENABLE_PIC 1)
173 else( SUPPORTS_FPIC_FLAG )
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000174 message(STATUS "Warning: -fPIC not supported.")
175 endif()
176endif()
177
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000178set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
179set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
180set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
181
182# set(CMAKE_VERBOSE_MAKEFILE true)
183
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000184add_llvm_definitions( -D__STDC_LIMIT_MACROS )
185add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000186
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000187if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
188 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000189 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
190 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000191 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000192 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000193 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
194 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000195 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000196 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000197endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
198
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000199if( MSVC )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000200 # List of valid CRTs for MSVC
201 set(MSVC_CRT
202 MD
203 MDd)
204
205 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000206 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
207 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
208 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
209 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
210 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit4ba3a0e2009-06-08 21:18:31 +0000211
212 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 Fuentes3d01fc72008-09-22 01:08:49 +0000220endif( MSVC )
221
Oscar Fuentes980e8422008-10-29 02:33:15 +0000222include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000223
224include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000225include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000226
227add_subdirectory(lib/Support)
228add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-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 Fuentes3ab40ca2008-11-09 18:53:19 +0000233set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000234 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes99b94892009-06-11 04:16:10 +0000235# Effective tblgen executable to be used:
236set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000237
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000238add_subdirectory(utils/TableGen)
239
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000240if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000241 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000242 include( CrossCompileLLVM )
243endif( CMAKE_CROSSCOMPILING )
244
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000245add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000246
Oscar Fuentes3d01fc72008-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 Dunbarecc63f82009-06-23 22:01:43 +0000261add_subdirectory(lib/MC)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000262
Douglas Gregor1555a232009-06-16 20:12:29 +0000263 set(LLVM_ENUM_ASM_PRINTERS "")
264 foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000265 message(STATUS "Targeting ${t}")
266 add_subdirectory(lib/Target/${t})
Oscar Fuentescccecb82008-11-14 22:21:02 +0000267 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Douglas Gregor1555a232009-06-16 20:12:29 +0000268 add_subdirectory(lib/Target/${t}/AsmPrinter)
269 set(LLVM_ENUM_ASM_PRINTERS
270 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
271 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000272endforeach(t)
273
Douglas Gregor1555a232009-06-16 20:12:29 +0000274# Produce llvm/Config/AsmPrinters.def
275configure_file(
276 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
277 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
278 )
279
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000280add_subdirectory(lib/ExecutionEngine)
281add_subdirectory(lib/ExecutionEngine/Interpreter)
282add_subdirectory(lib/ExecutionEngine/JIT)
283add_subdirectory(lib/Target)
284add_subdirectory(lib/AsmParser)
285add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000286add_subdirectory(lib/Archive)
287
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000288add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000289add_subdirectory(tools)
290
Douglas Gregor5dd42722009-06-16 22:25:45 +0000291option(LLVM_EXAMPLES "Build LLVM example programs." OFF)
292if (LLVM_EXAMPLES)
293 add_subdirectory(examples)
294endif ()
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000295
296install(DIRECTORY include
297 DESTINATION .
298 PATTERN ".svn" EXCLUDE
299 PATTERN "*.cmake" EXCLUDE
300 PATTERN "*.in" EXCLUDE
301 )
302
303install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
304 DESTINATION .
305 )
306
307# TODO: make and install documentation.