blob: a846eaeb2a4695f3d29fac57714c21a414bbcbb9 [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)
29
Oscar Fuentes4f21c132008-11-10 01:47:07 +000030set(LLVM_ALL_TARGETS
31 Alpha
32 ARM
33 CBackend
34 CellSPU
35 CppBackend
36 IA64
37 Mips
38 MSIL
39 PIC16
40 PowerPC
41 Sparc
42 X86
43 XCore
44 )
45
Oscar Fuentes7f6f21e2008-11-15 22:51:03 +000046# List of targets whose asmprinters need to be forced to link
47# into executables on some platforms (i.e. Windows):
48set(LLVM_ASMPRINTERS_FORCE_LINK X86 PowerPC)
49
Oscar Fuentese1ad0872008-09-26 04:40:32 +000050if( MSVC )
51 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000052 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000053else( MSVC )
Oscar Fuentes4f21c132008-11-10 01:47:07 +000054 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
55 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000056endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000057
Oscar Fuentes4b442832008-11-18 23:45:21 +000058option(LLVM_ENABLE_THREADS "Use threads if available." ON)
59
Oscar Fuentes81a87552009-06-03 15:11:25 +000060if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes76941b22009-06-04 09:26:16 +000061 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes81a87552009-06-03 15:11:25 +000062else()
Oscar Fuentes76941b22009-06-04 09:26:16 +000063 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes81a87552009-06-03 15:11:25 +000064endif()
65
Oscar Fuentes76941b22009-06-04 09:26:16 +000066if( LLVM_ENABLE_ASSERTIONS )
67 add_definitions( -D_DEBUG )
68 # On Release builds cmake automatically defines NDEBUG, so we
69 # explicitly undefine it:
70 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
71 add_definitions( -UNDEBUG )
72 endif()
73else()
74 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
75 add_definitions( -DNDEBUG )
76 endif()
Oscar Fuentes81a87552009-06-03 15:11:25 +000077endif()
78
Oscar Fuentes4f21c132008-11-10 01:47:07 +000079if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
80 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
81endif()
82
83foreach(c ${LLVM_TARGETS_TO_BUILD})
84 list(FIND LLVM_ALL_TARGETS ${c} idx)
85 if( idx LESS 0 )
86 message(FATAL_ERROR "The target `${c}' does not exists.
87 It should be one of\n${LLVM_ALL_TARGETS}")
88 endif()
89endforeach(c)
90
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000091set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
92
93# Add path for custom modules
94set(CMAKE_MODULE_PATH
95 ${CMAKE_MODULE_PATH}
96 "${LLVM_MAIN_SRC_DIR}/cmake"
97 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
98 )
99
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000100include(AddLLVMDefinitions)
101
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000102if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +0000103 if(CYGWIN)
104 set(LLVM_ON_WIN32 0)
105 set(LLVM_ON_UNIX 1)
106 else(CYGWIN)
107 set(LLVM_ON_WIN32 1)
108 set(LLVM_ON_UNIX 0)
109 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000110 set(LTDL_SHLIB_EXT ".dll")
111 set(EXEEXT ".exe")
112 # Maximum path length is 160 for non-unicode paths
113 set(MAXPATHLEN 160)
114else(WIN32)
115 if(UNIX)
116 set(LLVM_ON_WIN32 0)
117 set(LLVM_ON_UNIX 1)
118 set(LTDL_SHLIB_EXT ".so")
119 set(EXEEXT "")
120 # FIXME: Maximum path length is currently set to 'safe' fixed value
121 set(MAXPATHLEN 2024)
122 else(UNIX)
123 MESSAGE(SEND_ERROR "Unable to determine platform")
124 endif(UNIX)
125endif(WIN32)
126
127if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
128 set(HAVE_LLVM_CONFIG 1)
129endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000130
Oscar Fuentesde98db32008-10-25 03:29:36 +0000131include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000132
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000133option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
134
135if( LLVM_ENABLE_PIC )
136 if( SUPPORTS_FPIC_FLAG )
137 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000138 add_llvm_definitions(-fPIC)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000139 else( SUPPORTS_FPIC_FLAG )
140 message(STATUS "Warning: -fPIC not supported.")
141 endif()
142endif()
143
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000144set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
145set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
146set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
147
148# set(CMAKE_VERBOSE_MAKEFILE true)
149
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000150add_llvm_definitions( -D__STDC_LIMIT_MACROS )
151add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000152
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000153set(LLVM_PLO_FLAGS "" CACHE
154 STRING "Flags for creating partially linked objects.")
155
156if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
157 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000158 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
159 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000160 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000161 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000162 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
163 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000164 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000165 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000166endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
167
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000168if( MSVC )
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000169 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
170 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
171 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
172 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
173 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000174endif( MSVC )
175
Oscar Fuentes980e8422008-10-29 02:33:15 +0000176include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000177
178include(AddLLVM)
179include(AddPartiallyLinkedObject)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000180include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000181
182add_subdirectory(lib/Support)
183add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000184
185# Everything else depends on Support and System:
186set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
187
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000188set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000189 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000190
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000191add_subdirectory(utils/TableGen)
192
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000193if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000194 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000195 include( CrossCompileLLVM )
196endif( CMAKE_CROSSCOMPILING )
197
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000198add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000199
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000200add_subdirectory(lib/VMCore)
201add_subdirectory(lib/CodeGen)
202add_subdirectory(lib/CodeGen/SelectionDAG)
203add_subdirectory(lib/CodeGen/AsmPrinter)
204add_subdirectory(lib/Bitcode/Reader)
205add_subdirectory(lib/Bitcode/Writer)
206add_subdirectory(lib/Transforms/Utils)
207add_subdirectory(lib/Transforms/Instrumentation)
208add_subdirectory(lib/Transforms/Scalar)
209add_subdirectory(lib/Transforms/IPO)
210add_subdirectory(lib/Transforms/Hello)
211add_subdirectory(lib/Linker)
212add_subdirectory(lib/Analysis)
213add_subdirectory(lib/Analysis/IPA)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000214
215foreach(t ${LLVM_TARGETS_TO_BUILD})
216 message(STATUS "Targeting ${t}")
217 add_subdirectory(lib/Target/${t})
Oscar Fuentescccecb82008-11-14 22:21:02 +0000218 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000219 add_subdirectory(lib/Target/${t}/AsmPrinter)
Oscar Fuentescccecb82008-11-14 22:21:02 +0000220 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000221endforeach(t)
222
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000223add_subdirectory(lib/ExecutionEngine)
224add_subdirectory(lib/ExecutionEngine/Interpreter)
225add_subdirectory(lib/ExecutionEngine/JIT)
226add_subdirectory(lib/Target)
227add_subdirectory(lib/AsmParser)
228add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000229add_subdirectory(lib/Archive)
230
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000231add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000232add_subdirectory(tools)
233
234add_subdirectory(examples)
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000235
236install(DIRECTORY include
237 DESTINATION .
238 PATTERN ".svn" EXCLUDE
239 PATTERN "*.cmake" EXCLUDE
240 PATTERN "*.in" EXCLUDE
241 )
242
243install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
244 DESTINATION .
245 )
246
247# TODO: make and install documentation.