blob: 6af569b25a0073adeb538bdec23268ab44a2a179 [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 Fuentes3d01fc72008-09-22 01:08:49 +000020include(FindPerl)
21
22set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes980e8422008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000024set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
25set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
26set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
27
Oscar Fuentes4f21c132008-11-10 01:47:07 +000028set(LLVM_ALL_TARGETS
29 Alpha
30 ARM
31 CBackend
32 CellSPU
33 CppBackend
34 IA64
35 Mips
36 MSIL
37 PIC16
38 PowerPC
39 Sparc
40 X86
41 XCore
42 )
43
Oscar Fuentes7f6f21e2008-11-15 22:51:03 +000044# List of targets whose asmprinters need to be forced to link
45# into executables on some platforms (i.e. Windows):
46set(LLVM_ASMPRINTERS_FORCE_LINK X86 PowerPC)
47
Oscar Fuentese1ad0872008-09-26 04:40:32 +000048if( MSVC )
49 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000050 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000051else( MSVC )
Oscar Fuentes4f21c132008-11-10 01:47:07 +000052 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
53 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000054endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000055
Oscar Fuentes4b442832008-11-18 23:45:21 +000056option(LLVM_ENABLE_THREADS "Use threads if available." ON)
57
Oscar Fuentes4f21c132008-11-10 01:47:07 +000058if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
59 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
60endif()
61
62foreach(c ${LLVM_TARGETS_TO_BUILD})
63 list(FIND LLVM_ALL_TARGETS ${c} idx)
64 if( idx LESS 0 )
65 message(FATAL_ERROR "The target `${c}' does not exists.
66 It should be one of\n${LLVM_ALL_TARGETS}")
67 endif()
68endforeach(c)
69
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000070set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
71
72# Add path for custom modules
73set(CMAKE_MODULE_PATH
74 ${CMAKE_MODULE_PATH}
75 "${LLVM_MAIN_SRC_DIR}/cmake"
76 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
77 )
78
Oscar Fuentes9a0107d2009-04-04 22:41:07 +000079include(AddLLVMDefinitions)
80
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000081if(WIN32)
Oscar Fuentes4fd38b82008-10-30 17:15:54 +000082 if(CYGWIN)
83 set(LLVM_ON_WIN32 0)
84 set(LLVM_ON_UNIX 1)
85 else(CYGWIN)
86 set(LLVM_ON_WIN32 1)
87 set(LLVM_ON_UNIX 0)
88 endif(CYGWIN)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000089 set(LTDL_SHLIB_EXT ".dll")
90 set(EXEEXT ".exe")
91 # Maximum path length is 160 for non-unicode paths
92 set(MAXPATHLEN 160)
93else(WIN32)
94 if(UNIX)
95 set(LLVM_ON_WIN32 0)
96 set(LLVM_ON_UNIX 1)
97 set(LTDL_SHLIB_EXT ".so")
98 set(EXEEXT "")
99 # FIXME: Maximum path length is currently set to 'safe' fixed value
100 set(MAXPATHLEN 2024)
101 else(UNIX)
102 MESSAGE(SEND_ERROR "Unable to determine platform")
103 endif(UNIX)
104endif(WIN32)
105
106if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
107 set(HAVE_LLVM_CONFIG 1)
108endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000109
Oscar Fuentesde98db32008-10-25 03:29:36 +0000110include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000111
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000112option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
113
114if( LLVM_ENABLE_PIC )
115 if( SUPPORTS_FPIC_FLAG )
116 message(STATUS "Building with -fPIC")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000117 add_llvm_definitions(-fPIC)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000118 else( SUPPORTS_FPIC_FLAG )
119 message(STATUS "Warning: -fPIC not supported.")
120 endif()
121endif()
122
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000123set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
124set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
125set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
126
127# set(CMAKE_VERBOSE_MAKEFILE true)
128
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000129add_llvm_definitions( -D__STDC_LIMIT_MACROS )
130add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000131
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000132set(LLVM_PLO_FLAGS "" CACHE
133 STRING "Flags for creating partially linked objects.")
134
135if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
136 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-11-19 00:10:39 +0000137 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
138 if( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000139 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000140 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000141 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
142 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000143 set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000144 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000145endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
146
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000147if( MSVC )
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000148 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
149 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
150 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
151 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
152 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000153endif( MSVC )
154
Oscar Fuentes980e8422008-10-29 02:33:15 +0000155include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000156
157include(AddLLVM)
158include(AddPartiallyLinkedObject)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000159include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000160
161add_subdirectory(lib/Support)
162add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000163
164# Everything else depends on Support and System:
165set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
166
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000167set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000168 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000169
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000170add_subdirectory(utils/TableGen)
171
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000172if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000173 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000174 include( CrossCompileLLVM )
175endif( CMAKE_CROSSCOMPILING )
176
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000177add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000178
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000179add_subdirectory(lib/VMCore)
180add_subdirectory(lib/CodeGen)
181add_subdirectory(lib/CodeGen/SelectionDAG)
182add_subdirectory(lib/CodeGen/AsmPrinter)
183add_subdirectory(lib/Bitcode/Reader)
184add_subdirectory(lib/Bitcode/Writer)
185add_subdirectory(lib/Transforms/Utils)
186add_subdirectory(lib/Transforms/Instrumentation)
187add_subdirectory(lib/Transforms/Scalar)
188add_subdirectory(lib/Transforms/IPO)
189add_subdirectory(lib/Transforms/Hello)
190add_subdirectory(lib/Linker)
191add_subdirectory(lib/Analysis)
192add_subdirectory(lib/Analysis/IPA)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000193
194foreach(t ${LLVM_TARGETS_TO_BUILD})
195 message(STATUS "Targeting ${t}")
196 add_subdirectory(lib/Target/${t})
Oscar Fuentescccecb82008-11-14 22:21:02 +0000197 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000198 add_subdirectory(lib/Target/${t}/AsmPrinter)
Oscar Fuentescccecb82008-11-14 22:21:02 +0000199 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000200endforeach(t)
201
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000202add_subdirectory(lib/ExecutionEngine)
203add_subdirectory(lib/ExecutionEngine/Interpreter)
204add_subdirectory(lib/ExecutionEngine/JIT)
205add_subdirectory(lib/Target)
206add_subdirectory(lib/AsmParser)
207add_subdirectory(lib/Debugger)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000208add_subdirectory(lib/Archive)
209
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000210add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000211add_subdirectory(tools)
212
213add_subdirectory(examples)
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000214
215install(DIRECTORY include
216 DESTINATION .
217 PATTERN ".svn" EXCLUDE
218 PATTERN "*.cmake" EXCLUDE
219 PATTERN "*.in" EXCLUDE
220 )
221
222install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
223 DESTINATION .
224 )
225
226# TODO: make and install documentation.