CMake: Re-enabled build of llvm-config. Removed recursive invocation
[oota-llvm.git] / CMakeLists.txt
1 # See docs/CMake.html for instructions about how to build LLVM with CMake.
2
3 project(LLVM)
4 cmake_minimum_required(VERSION 2.6.1)
5
6 set(PACKAGE_NAME llvm)
7 set(PACKAGE_VERSION 2.6svn)
8 set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
9 set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
10
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'.
17 Please delete them.")
18 endif()
19
20 string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
22 include(FindPerl)
23
24 set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
25 set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
26 set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
27 set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
28 set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
29 set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
30
31 if( 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,
40 probably as the result of running `configure' and `make' on
41 ${LLVM_MAIN_SRC_DIR}.
42 This may cause problems. The suspicious files are:
43 ${tablegenned_files_on_lib_dir}
44 ${tablegenned_files_on_include_dir}
45 Please clean the source directory.")
46   endif()
47 endif()
48
49 set(LLVM_ALL_TARGETS
50   Alpha
51   ARM
52   Blackfin
53   CBackend
54   CellSPU
55   CppBackend
56   Mips
57   MSIL
58   MSP430
59   PIC16
60   PowerPC
61   Sparc
62   SystemZ
63   X86
64   XCore
65   )
66
67 if( MSVC )
68   set(LLVM_TARGETS_TO_BUILD X86
69     CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
70 else( MSVC )
71   set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
72     CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
73 endif( MSVC )
74
75 option(LLVM_ENABLE_THREADS "Use threads if available." ON)
76
77 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
78   option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
79 else()
80   option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
81 endif()
82
83 if( LLVM_ENABLE_ASSERTIONS )
84   # MSVC doesn't like _DEBUG on release builds. See PR 4379.
85   if( NOT MSVC )
86     add_definitions( -D_DEBUG )
87   endif()
88   # On Release builds cmake automatically defines NDEBUG, so we
89   # explicitly undefine it:
90   if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
91     add_definitions( -UNDEBUG )
92   endif()
93 else()
94   if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
95     add_definitions( -DNDEBUG )
96   endif()
97 endif()
98
99 if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
100   set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
101 endif()
102
103 set(LLVM_ENUM_TARGETS "")
104 foreach(c ${LLVM_TARGETS_TO_BUILD})
105   list(FIND LLVM_ALL_TARGETS ${c} idx)
106   if( idx LESS 0 )
107     message(FATAL_ERROR "The target `${c}' does not exists.
108     It should be one of\n${LLVM_ALL_TARGETS}")
109   else()
110     set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
111   endif()
112 endforeach(c)
113
114 # Produce llvm/Config/Targets.def
115 configure_file(
116   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
117   ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
118   )
119
120 set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
121
122 # Add path for custom modules
123 set(CMAKE_MODULE_PATH
124   ${CMAKE_MODULE_PATH}
125   "${LLVM_MAIN_SRC_DIR}/cmake"
126   "${LLVM_MAIN_SRC_DIR}/cmake/modules"
127   )
128
129 include(AddLLVMDefinitions)
130
131 if(WIN32)
132   if(CYGWIN)
133     set(LLVM_ON_WIN32 0)
134     set(LLVM_ON_UNIX 1)
135   else(CYGWIN)
136     set(LLVM_ON_WIN32 1)
137     set(LLVM_ON_UNIX 0)
138   endif(CYGWIN)
139   set(LTDL_SHLIB_EXT ".dll")
140   set(EXEEXT ".exe")
141   # Maximum path length is 160 for non-unicode paths
142   set(MAXPATHLEN 160)
143 else(WIN32)
144   if(UNIX)
145     set(LLVM_ON_WIN32 0)
146     set(LLVM_ON_UNIX 1)
147     set(LTDL_SHLIB_EXT ".so")
148     set(EXEEXT "")
149     # FIXME: Maximum path length is currently set to 'safe' fixed value
150     set(MAXPATHLEN 2024)
151   else(UNIX)
152     MESSAGE(SEND_ERROR "Unable to determine platform")
153   endif(UNIX)
154 endif(WIN32)
155
156 include(config-ix)
157
158 option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF)
159
160 set(ENABLE_PIC 0)
161 if( LLVM_ENABLE_PIC )
162   if( SUPPORTS_FPIC_FLAG )
163     message(STATUS "Building with -fPIC")
164     add_llvm_definitions(-fPIC)
165     set(ENABLE_PIC 1)
166  else( SUPPORTS_FPIC_FLAG )
167     message(STATUS "Warning: -fPIC not supported.")
168   endif()
169 endif()
170
171 set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
172 set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
173 set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
174
175 # set(CMAKE_VERBOSE_MAKEFILE true)
176
177 add_llvm_definitions( -D__STDC_LIMIT_MACROS )
178 add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
179
180 if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
181   # TODO: support other platforms and toolchains.
182   option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
183   if( LLVM_BUILD_32_BITS )
184     message(STATUS "Building 32 bits executables and libraries.")
185     add_llvm_definitions( -m32 )
186     list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
187     list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
188     set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
189   endif( LLVM_BUILD_32_BITS )
190 endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
191
192 if( MSVC )
193   # List of valid CRTs for MSVC
194   set(MSVC_CRT
195     MD
196     MDd)
197
198   set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
199   add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
200   add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
201   add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
202   add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
203   add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
204
205   # Suppress 'new behavior: elements of array 'array' will be default initialized'
206   add_llvm_definitions( -wd4351 )
207
208   if (NOT ${LLVM_USE_CRT} STREQUAL "")
209     list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
210     if (idx LESS 0)
211       message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
212     endif (idx LESS 0)
213     add_llvm_definitions("/${LLVM_USE_CRT}")
214     message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
215   endif (NOT ${LLVM_USE_CRT} STREQUAL "")
216 endif( MSVC )
217
218 include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
219
220 include(AddLLVM)
221 include(TableGen)
222
223 add_subdirectory(lib/Support)
224 add_subdirectory(lib/System)
225
226 # Everything else depends on Support and System:
227 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
228
229 set(LLVM_TABLEGEN "tblgen" CACHE
230   STRING "Native TableGen executable. Saves building one when cross-compiling.")
231 # Effective tblgen executable to be used:
232 set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
233
234 add_subdirectory(utils/TableGen)
235
236 if( CMAKE_CROSSCOMPILING )
237   # This adds a dependency on target `tblgen', so must go after utils/TableGen
238   include( CrossCompileLLVM )
239 endif( CMAKE_CROSSCOMPILING )
240
241 add_subdirectory(include/llvm)
242
243 add_subdirectory(lib/VMCore)
244 add_subdirectory(lib/CodeGen)
245 add_subdirectory(lib/CodeGen/SelectionDAG)
246 add_subdirectory(lib/CodeGen/AsmPrinter)
247 add_subdirectory(lib/Bitcode/Reader)
248 add_subdirectory(lib/Bitcode/Writer)
249 add_subdirectory(lib/Transforms/Utils)
250 add_subdirectory(lib/Transforms/Instrumentation)
251 add_subdirectory(lib/Transforms/Scalar)
252 add_subdirectory(lib/Transforms/IPO)
253 add_subdirectory(lib/Transforms/Hello)
254 add_subdirectory(lib/Linker)
255 add_subdirectory(lib/Analysis)
256 add_subdirectory(lib/Analysis/IPA)
257 add_subdirectory(lib/MC)
258
259 add_subdirectory(utils/FileCheck)
260
261  set(LLVM_ENUM_ASM_PRINTERS "")
262  set(LLVM_ENUM_ASM_PARSERS "")
263  foreach(t ${LLVM_TARGETS_TO_BUILD})
264   message(STATUS "Targeting ${t}")
265   add_subdirectory(lib/Target/${t})
266   add_subdirectory(lib/Target/${t}/TargetInfo)
267   if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
268    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 )
272   if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
273    add_subdirectory(lib/Target/${t}/AsmParser)
274     set(LLVM_ENUM_ASM_PARSERS 
275         "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
276  endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
277 endforeach(t)
278
279 # Produce llvm/Config/AsmPrinters.def
280 configure_file(
281   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
282   ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
283   )
284
285 # Produce llvm/Config/AsmParsers.def
286 configure_file(
287   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
288   ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
289   )
290
291 add_subdirectory(lib/ExecutionEngine)
292 add_subdirectory(lib/ExecutionEngine/Interpreter)
293 add_subdirectory(lib/ExecutionEngine/JIT)
294 add_subdirectory(lib/Target)
295 add_subdirectory(lib/AsmParser)
296 add_subdirectory(lib/Debugger)
297 add_subdirectory(lib/Archive)
298
299 add_subdirectory(projects)
300 add_subdirectory(tools)
301
302 option(LLVM_EXAMPLES "Build LLVM example programs." OFF)
303 if (LLVM_EXAMPLES)
304   add_subdirectory(examples)
305 endif ()
306
307 install(DIRECTORY include
308   DESTINATION .
309   PATTERN ".svn" EXCLUDE
310   PATTERN "*.cmake" EXCLUDE
311   PATTERN "*.in" EXCLUDE
312   )
313
314 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
315   DESTINATION .
316   )
317
318 # TODO: make and install documentation.