1 # See docs/CMake.html for instructions about how to build LLVM with CMake.
4 cmake_minimum_required(VERSION 2.6.1)
7 set(PACKAGE_VERSION 2.6svn)
8 set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
9 set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
11 if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
12 message(FATAL_ERROR "In-source builds are not allowed.
13 CMake would overwrite the makefiles distributed with LLVM.
14 Please create a directory and run cmake from there, passing the path
15 to this source directory as the last argument.
16 This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
20 string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
22 set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
23 set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
24 set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
25 set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
26 set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
27 set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
29 if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
31 tablegenned_files_on_include_dir
32 "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen")
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,
38 probably as the result of running `configure' and `make' on
40 This may cause problems. The suspicious files are:
41 ${tablegenned_files_on_lib_dir}
42 ${tablegenned_files_on_include_dir}
43 Please clean the source directory.")
66 set(LLVM_TARGETS_TO_BUILD X86
67 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
69 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
70 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
73 option(LLVM_ENABLE_THREADS "Use threads if available." ON)
75 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
76 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
78 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
81 if( LLVM_ENABLE_ASSERTIONS )
82 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
84 add_definitions( -D_DEBUG )
86 # On Release builds cmake automatically defines NDEBUG, so we
87 # explicitly undefine it:
88 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
89 add_definitions( -UNDEBUG )
92 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
93 add_definitions( -DNDEBUG )
97 if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
98 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
101 set(LLVM_ENUM_TARGETS "")
102 foreach(c ${LLVM_TARGETS_TO_BUILD})
103 list(FIND LLVM_ALL_TARGETS ${c} idx)
105 message(FATAL_ERROR "The target `${c}' does not exists.
106 It should be one of\n${LLVM_ALL_TARGETS}")
108 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
112 # Produce llvm/Config/Targets.def
114 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
115 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
118 set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
120 # Add path for custom modules
121 set(CMAKE_MODULE_PATH
123 "${LLVM_MAIN_SRC_DIR}/cmake"
124 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
127 include(AddLLVMDefinitions)
137 set(LTDL_SHLIB_EXT ".dll")
139 # Maximum path length is 160 for non-unicode paths
145 set(LTDL_SHLIB_EXT ".so")
147 # FIXME: Maximum path length is currently set to 'safe' fixed value
150 MESSAGE(SEND_ERROR "Unable to determine platform")
156 option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
159 if( LLVM_ENABLE_PIC )
160 if( SUPPORTS_FPIC_FLAG )
161 message(STATUS "Building with -fPIC")
162 add_llvm_definitions(-fPIC)
164 else( SUPPORTS_FPIC_FLAG )
165 message(STATUS "Warning: -fPIC not supported.")
169 set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
170 set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
171 set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
173 # set(CMAKE_VERBOSE_MAKEFILE true)
175 add_llvm_definitions( -D__STDC_LIMIT_MACROS )
176 add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
178 if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
179 # TODO: support other platforms and toolchains.
180 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
181 if( LLVM_BUILD_32_BITS )
182 message(STATUS "Building 32 bits executables and libraries.")
183 add_llvm_definitions( -m32 )
184 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
185 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
186 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
187 endif( LLVM_BUILD_32_BITS )
188 endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
191 # List of valid CRTs for MSVC
196 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
197 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
198 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
199 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
200 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
201 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
203 # Suppress 'new behavior: elements of array 'array' will be default initialized'
204 add_llvm_definitions( -wd4351 )
206 if (NOT ${LLVM_USE_CRT} STREQUAL "")
207 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
209 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
211 add_llvm_definitions("/${LLVM_USE_CRT}")
212 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
213 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
216 include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
221 add_subdirectory(lib/Support)
222 add_subdirectory(lib/System)
224 # Everything else depends on Support and System:
225 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
227 set(LLVM_TABLEGEN "tblgen" CACHE
228 STRING "Native TableGen executable. Saves building one when cross-compiling.")
229 # Effective tblgen executable to be used:
230 set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
232 add_subdirectory(utils/TableGen)
234 if( CMAKE_CROSSCOMPILING )
235 # This adds a dependency on target `tblgen', so must go after utils/TableGen
236 include( CrossCompileLLVM )
237 endif( CMAKE_CROSSCOMPILING )
239 add_subdirectory(include/llvm)
241 add_subdirectory(lib/VMCore)
242 add_subdirectory(lib/CodeGen)
243 add_subdirectory(lib/CodeGen/SelectionDAG)
244 add_subdirectory(lib/CodeGen/AsmPrinter)
245 add_subdirectory(lib/Bitcode/Reader)
246 add_subdirectory(lib/Bitcode/Writer)
247 add_subdirectory(lib/Transforms/Utils)
248 add_subdirectory(lib/Transforms/Instrumentation)
249 add_subdirectory(lib/Transforms/Scalar)
250 add_subdirectory(lib/Transforms/IPO)
251 add_subdirectory(lib/Transforms/Hello)
252 add_subdirectory(lib/Linker)
253 add_subdirectory(lib/Analysis)
254 add_subdirectory(lib/Analysis/IPA)
255 add_subdirectory(lib/MC)
257 add_subdirectory(utils/FileCheck)
259 set(LLVM_ENUM_ASM_PRINTERS "")
260 set(LLVM_ENUM_ASM_PARSERS "")
261 foreach(t ${LLVM_TARGETS_TO_BUILD})
262 message(STATUS "Targeting ${t}")
263 add_subdirectory(lib/Target/${t})
264 add_subdirectory(lib/Target/${t}/TargetInfo)
265 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
266 add_subdirectory(lib/Target/${t}/AsmPrinter)
267 set(LLVM_ENUM_ASM_PRINTERS
268 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
269 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
270 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
271 add_subdirectory(lib/Target/${t}/AsmParser)
272 set(LLVM_ENUM_ASM_PARSERS
273 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
274 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
277 # Produce llvm/Config/AsmPrinters.def
279 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
280 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
283 # Produce llvm/Config/AsmParsers.def
285 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
286 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
289 add_subdirectory(lib/ExecutionEngine)
290 add_subdirectory(lib/ExecutionEngine/Interpreter)
291 add_subdirectory(lib/ExecutionEngine/JIT)
292 add_subdirectory(lib/Target)
293 add_subdirectory(lib/AsmParser)
294 add_subdirectory(lib/Debugger)
295 add_subdirectory(lib/Archive)
297 add_subdirectory(projects)
298 add_subdirectory(tools)
300 option(LLVM_EXAMPLES "Build LLVM example programs." OFF)
302 add_subdirectory(examples)
305 install(DIRECTORY include
307 PATTERN ".svn" EXCLUDE
308 PATTERN "*.cmake" EXCLUDE
309 PATTERN "*.in" EXCLUDE
310 PATTERN "*.tmp" EXCLUDE
313 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
317 # TODO: make and install documentation.