blob: ba63484d8c0a2561c01471dc47d082cbae7edcc3 [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" )
61 option(LLVM_ENABLE_ASSERTS "Enable asserts" OFF)
62else()
63 option(LLVM_ENABLE_ASSERTS "Enable asserts" ON)
64endif()
65
66if( LLVM_ENABLE_ASSERTS )
67 add_definitions( -D_DEBUG -UNDEBUG )
68endif()
69
Oscar Fuentes4f21c132008-11-10 01:47:07 +000070if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
71 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
72endif()
73
74foreach(c ${LLVM_TARGETS_TO_BUILD})
75 list(FIND LLVM_ALL_TARGETS ${c} idx)
76 if( idx LESS 0 )
77 message(FATAL_ERROR "The target `${c}' does not exists.
78 It should be one of\n${LLVM_ALL_TARGETS}")
79 endif()
80endforeach(c)
81
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000082set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
83
84# Add path for custom modules
85set(CMAKE_MODULE_PATH
86 ${CMAKE_MODULE_PATH}
87 "${LLVM_MAIN_SRC_DIR}/cmake"
88 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
89 )
90
Oscar Fuentes9a0107d2009-04-04 22:41:07 +000091include(AddLLVMDefinitions)
92
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000093if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +000094 if(CYGWIN)
95 set(LLVM_ON_WIN32 0)
96 set(LLVM_ON_UNIX 1)
97 else(CYGWIN)
98 set(LLVM_ON_WIN32 1)
99 set(LLVM_ON_UNIX 0)
100 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000101 set(LTDL_SHLIB_EXT ".dll")
102 set(EXEEXT ".exe")
103 # Maximum path length is 160 for non-unicode paths
104 set(MAXPATHLEN 160)
105else(WIN32)
106 if(UNIX)
107 set(LLVM_ON_WIN32 0)
108 set(LLVM_ON_UNIX 1)
109 set(LTDL_SHLIB_EXT ".so")
110 set(EXEEXT "")
111 # FIXME: Maximum path length is currently set to 'safe' fixed value
112 set(MAXPATHLEN 2024)
113 else(UNIX)
114 MESSAGE(SEND_ERROR "Unable to determine platform")
115 endif(UNIX)
116endif(WIN32)
117
118if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
119 set(HAVE_LLVM_CONFIG 1)
120endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000121
Oscar Fuentesde98db32008-10-25 03:29:36 +0000122include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000123
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000124option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
125
126if( LLVM_ENABLE_PIC )
127 if( SUPPORTS_FPIC_FLAG )
128 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000129 add_llvm_definitions(-fPIC)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000130 else( SUPPORTS_FPIC_FLAG )
131 message(STATUS "Warning: -fPIC not supported.")
132 endif()
133endif()
134
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000135set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
136set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
137set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
138
139# set(CMAKE_VERBOSE_MAKEFILE true)
140
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000141add_llvm_definitions( -D__STDC_LIMIT_MACROS )
142add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000143
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000144set(LLVM_PLO_FLAGS "" CACHE
145 STRING "Flags for creating partially linked objects.")
146
147if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
148 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000149 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
150 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000151 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000152 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000153 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
154 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000155 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000156 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000157endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
158
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000159if( MSVC )
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000160 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
161 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
162 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
163 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
164 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000165endif( MSVC )
166
Oscar Fuentes980e8422008-10-29 02:33:15 +0000167include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000168
169include(AddLLVM)
170include(AddPartiallyLinkedObject)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000171include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000172
173add_subdirectory(lib/Support)
174add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000175
176# Everything else depends on Support and System:
177set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
178
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000179set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000180 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000181
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000182add_subdirectory(utils/TableGen)
183
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000184if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000185 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000186 include( CrossCompileLLVM )
187endif( CMAKE_CROSSCOMPILING )
188
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000189add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000190
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000191add_subdirectory(lib/VMCore)
192add_subdirectory(lib/CodeGen)
193add_subdirectory(lib/CodeGen/SelectionDAG)
194add_subdirectory(lib/CodeGen/AsmPrinter)
195add_subdirectory(lib/Bitcode/Reader)
196add_subdirectory(lib/Bitcode/Writer)
197add_subdirectory(lib/Transforms/Utils)
198add_subdirectory(lib/Transforms/Instrumentation)
199add_subdirectory(lib/Transforms/Scalar)
200add_subdirectory(lib/Transforms/IPO)
201add_subdirectory(lib/Transforms/Hello)
202add_subdirectory(lib/Linker)
203add_subdirectory(lib/Analysis)
204add_subdirectory(lib/Analysis/IPA)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000205
206foreach(t ${LLVM_TARGETS_TO_BUILD})
207 message(STATUS "Targeting ${t}")
208 add_subdirectory(lib/Target/${t})
Oscar Fuentescccecb82008-11-14 22:21:02 +0000209 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000210 add_subdirectory(lib/Target/${t}/AsmPrinter)
Oscar Fuentescccecb82008-11-14 22:21:02 +0000211 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000212endforeach(t)
213
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000214add_subdirectory(lib/ExecutionEngine)
215add_subdirectory(lib/ExecutionEngine/Interpreter)
216add_subdirectory(lib/ExecutionEngine/JIT)
217add_subdirectory(lib/Target)
218add_subdirectory(lib/AsmParser)
219add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000220add_subdirectory(lib/Archive)
221
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000222add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000223add_subdirectory(tools)
224
225add_subdirectory(examples)
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000226
227install(DIRECTORY include
228 DESTINATION .
229 PATTERN ".svn" EXCLUDE
230 PATTERN "*.cmake" EXCLUDE
231 PATTERN "*.in" EXCLUDE
232 )
233
234install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
235 DESTINATION .
236 )
237
238# TODO: make and install documentation.