1 if( WIN32 AND NOT CYGWIN )
2 # We consider Cygwin as another Unix
6 include(CheckIncludeFile)
7 include(CheckLibraryExists)
8 include(CheckSymbolExists)
9 include(CheckFunctionExists)
10 include(CheckCCompilerFlag)
12 include(CheckCompilerVersion)
13 include(HandleLLVMStdlib)
15 if( UNIX AND NOT (BEOS OR HAIKU) )
16 # Used by check_symbol_exists:
17 list(APPEND CMAKE_REQUIRED_LIBRARIES "m")
19 # x86_64 FreeBSD 9.2 requires libcxxrt to be specified explicitly.
20 if( CMAKE_SYSTEM MATCHES "FreeBSD-9.2-RELEASE" AND
21 CMAKE_SIZEOF_VOID_P EQUAL 8 )
22 list(APPEND CMAKE_REQUIRED_LIBRARIES "cxxrt")
26 check_include_file(dlfcn.h HAVE_DLFCN_H)
27 check_include_file(errno.h HAVE_ERRNO_H)
28 check_include_file(fcntl.h HAVE_FCNTL_H)
29 check_include_file(link.h HAVE_LINK_H)
30 check_include_file(malloc.h HAVE_MALLOC_H)
31 check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H)
32 if( NOT PURE_WINDOWS )
33 check_include_file(pthread.h HAVE_PTHREAD_H)
35 check_include_file(signal.h HAVE_SIGNAL_H)
36 check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
37 check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
38 check_include_file(sys/param.h HAVE_SYS_PARAM_H)
39 check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
40 check_include_file(sys/stat.h HAVE_SYS_STAT_H)
41 check_include_file(sys/time.h HAVE_SYS_TIME_H)
42 check_include_file(sys/types.h HAVE_SYS_TYPES_H)
43 check_include_file(termios.h HAVE_TERMIOS_H)
44 check_include_file(unistd.h HAVE_UNISTD_H)
45 check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H)
46 check_include_file(zlib.h HAVE_ZLIB_H)
47 check_include_file(fenv.h HAVE_FENV_H)
48 check_symbol_exists(FE_ALL_EXCEPT "fenv.h" HAVE_DECL_FE_ALL_EXCEPT)
49 check_symbol_exists(FE_INEXACT "fenv.h" HAVE_DECL_FE_INEXACT)
51 check_include_file(mach/mach.h HAVE_MACH_MACH_H)
52 check_include_file(histedit.h HAVE_HISTEDIT_H)
53 check_include_file(CrashReporterClient.h HAVE_CRASHREPORTERCLIENT_H)
55 include(CheckCSourceCompiles)
56 CHECK_C_SOURCE_COMPILES("
57 static const char *__crashreporter_info__ = 0;
58 asm(\".desc ___crashreporter_info__, 0x10\");
59 int main() { return 0; }"
60 HAVE_CRASHREPORTER_INFO)
63 if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
64 check_include_file(linux/magic.h HAVE_LINUX_MAGIC_H)
65 if(NOT HAVE_LINUX_MAGIC_H)
66 # older kernels use split files
67 check_include_file(linux/nfs_fs.h HAVE_LINUX_NFS_FS_H)
68 check_include_file(linux/smb.h HAVE_LINUX_SMB_H)
73 if( NOT PURE_WINDOWS )
74 check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
76 check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
77 check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
78 check_library_exists(pthread pthread_mutex_lock "" HAVE_PTHREAD_MUTEX_LOCK)
80 # this could be Android
81 check_library_exists(c pthread_create "" PTHREAD_IN_LIBC)
83 check_library_exists(c pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
84 check_library_exists(c pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
85 check_library_exists(c pthread_mutex_lock "" HAVE_PTHREAD_MUTEX_LOCK)
88 check_library_exists(dl dlopen "" HAVE_LIBDL)
89 check_library_exists(rt clock_gettime "" HAVE_LIBRT)
96 # We want to find pthreads library and at the moment we do want to
97 # have it reported as '-l<lib>' instead of '-pthread'.
98 # TODO: switch to -pthread once the rest of the build system can deal with it.
99 set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
100 set(THREADS_HAVE_PTHREAD_ARG Off)
101 find_package(Threads REQUIRED)
102 set(LLVM_PTHREAD_LIB ${CMAKE_THREAD_LIBS_INIT})
105 # Don't look for these libraries if we're using MSan, since uninstrumented third
106 # party code may call MSan interceptors like strlen, leading to false positives.
107 if(NOT LLVM_USE_SANITIZER MATCHES "Memory.*")
110 foreach(library z zlib_static zlib)
111 string(TOUPPER ${library} library_suffix)
112 check_library_exists(${library} compress2 "" HAVE_LIBZ_${library_suffix})
113 if(HAVE_LIBZ_${library_suffix})
115 set(ZLIB_LIBRARIES "${library}")
121 # Don't look for these libraries on Windows.
122 if (NOT PURE_WINDOWS)
123 # Skip libedit if using ASan as it contains memory leaks.
124 if (LLVM_ENABLE_LIBEDIT AND HAVE_HISTEDIT_H AND NOT LLVM_USE_SANITIZER MATCHES ".*Address.*")
125 check_library_exists(edit el_init "" HAVE_LIBEDIT)
129 if(LLVM_ENABLE_TERMINFO)
131 foreach(library tinfo terminfo curses ncurses ncursesw)
132 string(TOUPPER ${library} library_suffix)
133 check_library_exists(${library} setupterm "" HAVE_TERMINFO_${library_suffix})
134 if(HAVE_TERMINFO_${library_suffix})
136 set(TERMINFO_LIBS "${library}")
144 find_library(ICONV_LIBRARY_PATH NAMES iconv libiconv libiconv-2 c)
145 set(LLVM_LIBXML2_ENABLED 0)
147 if((LLVM_ENABLE_LIBXML2) AND ((CMAKE_SYSTEM_NAME MATCHES "Linux") AND (ICONV_LIBRARY_PATH) OR APPLE))
148 find_package(LibXml2)
150 set(LLVM_LIBXML2_ENABLED 1)
151 if ((CMAKE_OSX_SYSROOT) AND (EXISTS ${CMAKE_OSX_SYSROOT}/${LIBXML2_INCLUDE_DIR}))
152 include_directories(${CMAKE_OSX_SYSROOT}/${LIBXML2_INCLUDE_DIR})
154 include_directories(${LIBXML2_INCLUDE_DIR})
156 set(LIBXML2_LIBS "xml2")
162 if (LLVM_ENABLE_LIBXML2 STREQUAL "FORCE_ON" AND NOT LLVM_LIBXML2_ENABLED)
163 message(FATAL_ERROR "Failed to congifure libxml2")
166 check_library_exists(xar xar_open "" HAVE_LIBXAR)
172 check_symbol_exists(arc4random "stdlib.h" HAVE_DECL_ARC4RANDOM)
173 find_package(Backtrace)
174 set(HAVE_BACKTRACE ${Backtrace_FOUND})
175 set(BACKTRACE_HEADER ${Backtrace_HEADER})
177 # Prevent check_symbol_exists from using API that is not supported for a given
179 check_c_compiler_flag("-Werror=unguarded-availability-new" "C_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW")
180 if(C_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW)
181 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror=unguarded-availability-new")
184 check_symbol_exists(_Unwind_Backtrace "unwind.h" HAVE__UNWIND_BACKTRACE)
185 check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
186 check_symbol_exists(sysconf unistd.h HAVE_SYSCONF)
187 check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
188 check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
189 check_symbol_exists(isatty unistd.h HAVE_ISATTY)
190 check_symbol_exists(futimens sys/stat.h HAVE_FUTIMENS)
191 check_symbol_exists(futimes sys/time.h HAVE_FUTIMES)
192 check_symbol_exists(posix_fallocate fcntl.h HAVE_POSIX_FALLOCATE)
193 # AddressSanitizer conflicts with lib/Support/Unix/Signals.inc
194 # Avoid sigaltstack on Apple platforms, where backtrace() cannot handle it
195 # (rdar://7089625) and _Unwind_Backtrace is unusable because it cannot unwind
196 # past the signal handler after an assertion failure (rdar://29866587).
197 if( HAVE_SIGNAL_H AND NOT LLVM_USE_SANITIZER MATCHES ".*Address.*" AND NOT APPLE )
198 check_symbol_exists(sigaltstack signal.h HAVE_SIGALTSTACK)
200 set(CMAKE_REQUIRED_DEFINITIONS "-D_LARGEFILE64_SOURCE")
201 check_symbol_exists(lseek64 "sys/types.h;unistd.h" HAVE_LSEEK64)
202 set(CMAKE_REQUIRED_DEFINITIONS "")
203 check_symbol_exists(mallctl malloc_np.h HAVE_MALLCTL)
204 check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
205 check_symbol_exists(malloc_zone_statistics malloc/malloc.h
206 HAVE_MALLOC_ZONE_STATISTICS)
207 check_symbol_exists(getrlimit "sys/types.h;sys/time.h;sys/resource.h" HAVE_GETRLIMIT)
208 check_symbol_exists(posix_spawn spawn.h HAVE_POSIX_SPAWN)
209 check_symbol_exists(pread unistd.h HAVE_PREAD)
210 check_symbol_exists(realpath stdlib.h HAVE_REALPATH)
211 check_symbol_exists(sbrk unistd.h HAVE_SBRK)
212 check_symbol_exists(strerror string.h HAVE_STRERROR)
213 check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)
214 check_symbol_exists(strerror_s string.h HAVE_DECL_STRERROR_S)
215 check_symbol_exists(setenv stdlib.h HAVE_SETENV)
217 check_symbol_exists(_chsize_s io.h HAVE__CHSIZE_S)
219 check_function_exists(_alloca HAVE__ALLOCA)
220 check_function_exists(__alloca HAVE___ALLOCA)
221 check_function_exists(__chkstk HAVE___CHKSTK)
222 check_function_exists(__chkstk_ms HAVE___CHKSTK_MS)
223 check_function_exists(___chkstk HAVE____CHKSTK)
224 check_function_exists(___chkstk_ms HAVE____CHKSTK_MS)
226 check_function_exists(__ashldi3 HAVE___ASHLDI3)
227 check_function_exists(__ashrdi3 HAVE___ASHRDI3)
228 check_function_exists(__divdi3 HAVE___DIVDI3)
229 check_function_exists(__fixdfdi HAVE___FIXDFDI)
230 check_function_exists(__fixsfdi HAVE___FIXSFDI)
231 check_function_exists(__floatdidf HAVE___FLOATDIDF)
232 check_function_exists(__lshrdi3 HAVE___LSHRDI3)
233 check_function_exists(__moddi3 HAVE___MODDI3)
234 check_function_exists(__udivdi3 HAVE___UDIVDI3)
235 check_function_exists(__umoddi3 HAVE___UMODDI3)
237 check_function_exists(__main HAVE___MAIN)
238 check_function_exists(__cmpdi2 HAVE___CMPDI2)
242 list(APPEND CMAKE_REQUIRED_LIBRARIES dl)
244 check_symbol_exists(dlopen dlfcn.h HAVE_DLOPEN)
245 check_symbol_exists(dladdr dlfcn.h HAVE_DLADDR)
247 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES dl)
251 check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
252 if( LLVM_USING_GLIBC )
253 add_definitions( -D_GNU_SOURCE )
254 list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE")
256 # This check requires _GNU_SOURCE
257 check_symbol_exists(sched_getaffinity sched.h HAVE_SCHED_GETAFFINITY)
258 check_symbol_exists(CPU_COUNT sched.h HAVE_CPU_COUNT)
259 if (NOT PURE_WINDOWS)
260 if (LLVM_PTHREAD_LIB)
261 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LLVM_PTHREAD_LIB})
263 check_symbol_exists(pthread_getname_np pthread.h HAVE_PTHREAD_GETNAME_NP)
264 check_symbol_exists(pthread_setname_np pthread.h HAVE_PTHREAD_SETNAME_NP)
265 if (LLVM_PTHREAD_LIB)
266 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES ${LLVM_PTHREAD_LIB})
270 # available programs checks
271 function(llvm_find_program name)
272 string(TOUPPER ${name} NAME)
273 string(REGEX REPLACE "\\." "_" NAME ${NAME})
275 find_program(LLVM_PATH_${NAME} NAMES ${ARGV})
276 mark_as_advanced(LLVM_PATH_${NAME})
277 if(LLVM_PATH_${NAME})
278 set(HAVE_${NAME} 1 CACHE INTERNAL "Is ${name} available ?")
279 mark_as_advanced(HAVE_${NAME})
280 else(LLVM_PATH_${NAME})
281 set(HAVE_${NAME} "" CACHE INTERNAL "Is ${name} available ?")
282 endif(LLVM_PATH_${NAME})
285 if (LLVM_ENABLE_DOXYGEN)
286 llvm_find_program(dot)
289 if( LLVM_ENABLE_FFI )
290 find_path(FFI_INCLUDE_PATH ffi.h PATHS ${FFI_INCLUDE_DIR})
291 if( EXISTS "${FFI_INCLUDE_PATH}/ffi.h" )
292 set(FFI_HEADER ffi.h CACHE INTERNAL "")
293 set(HAVE_FFI_H 1 CACHE INTERNAL "")
295 find_path(FFI_INCLUDE_PATH ffi/ffi.h PATHS ${FFI_INCLUDE_DIR})
296 if( EXISTS "${FFI_INCLUDE_PATH}/ffi/ffi.h" )
297 set(FFI_HEADER ffi/ffi.h CACHE INTERNAL "")
298 set(HAVE_FFI_FFI_H 1 CACHE INTERNAL "")
303 message(FATAL_ERROR "libffi includes are not found.")
306 find_library(FFI_LIBRARY_PATH ffi PATHS ${FFI_LIBRARY_DIR})
307 if( NOT FFI_LIBRARY_PATH )
308 message(FATAL_ERROR "libffi is not found.")
311 list(APPEND CMAKE_REQUIRED_LIBRARIES ${FFI_LIBRARY_PATH})
312 list(APPEND CMAKE_REQUIRED_INCLUDES ${FFI_INCLUDE_PATH})
313 check_symbol_exists(ffi_call ${FFI_HEADER} HAVE_FFI_CALL)
314 list(REMOVE_ITEM CMAKE_REQUIRED_INCLUDES ${FFI_INCLUDE_PATH})
315 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES ${FFI_LIBRARY_PATH})
317 unset(HAVE_FFI_FFI_H CACHE)
318 unset(HAVE_FFI_H CACHE)
319 unset(HAVE_FFI_CALL CACHE)
320 endif( LLVM_ENABLE_FFI )
322 # Define LLVM_HAS_ATOMICS if gcc or MSVC atomic builtins are supported.
325 if( LLVM_ENABLE_PIC )
329 check_cxx_compiler_flag("-fno-pie" SUPPORTS_NO_PIE_FLAG)
330 if(SUPPORTS_NO_PIE_FLAG)
331 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fno-pie")
335 check_cxx_compiler_flag("-Wvariadic-macros" SUPPORTS_VARIADIC_MACROS_FLAG)
336 check_cxx_compiler_flag("-Wgnu-zero-variadic-macro-arguments"
337 SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG)
339 set(USE_NO_MAYBE_UNINITIALIZED 0)
340 set(USE_NO_UNINITIALIZED 0)
342 # Disable gcc's potentially uninitialized use analysis as it presents lots of
344 if (CMAKE_COMPILER_IS_GNUCXX)
345 check_cxx_compiler_flag("-Wmaybe-uninitialized" HAS_MAYBE_UNINITIALIZED)
346 if (HAS_MAYBE_UNINITIALIZED)
347 set(USE_NO_MAYBE_UNINITIALIZED 1)
349 # Only recent versions of gcc make the distinction between -Wuninitialized
350 # and -Wmaybe-uninitialized. If -Wmaybe-uninitialized isn't supported, just
351 # turn off all uninitialized use warnings.
352 check_cxx_compiler_flag("-Wuninitialized" HAS_UNINITIALIZED)
353 set(USE_NO_UNINITIALIZED ${HAS_UNINITIALIZED})
357 # By default, we target the host, but this can be overridden at CMake
359 include(GetHostTriple)
360 get_host_triple(LLVM_INFERRED_HOST_TRIPLE)
362 set(LLVM_HOST_TRIPLE "${LLVM_INFERRED_HOST_TRIPLE}" CACHE STRING
363 "Host on which LLVM binaries will run")
365 # Determine the native architecture.
366 string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH)
367 if( LLVM_NATIVE_ARCH STREQUAL "host" )
368 string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOST_TRIPLE})
371 if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
372 set(LLVM_NATIVE_ARCH X86)
373 elseif (LLVM_NATIVE_ARCH STREQUAL "x86")
374 set(LLVM_NATIVE_ARCH X86)
375 elseif (LLVM_NATIVE_ARCH STREQUAL "amd64")
376 set(LLVM_NATIVE_ARCH X86)
377 elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64")
378 set(LLVM_NATIVE_ARCH X86)
379 elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
380 set(LLVM_NATIVE_ARCH Sparc)
381 elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
382 set(LLVM_NATIVE_ARCH PowerPC)
383 elseif (LLVM_NATIVE_ARCH MATCHES "aarch64")
384 set(LLVM_NATIVE_ARCH AArch64)
385 elseif (LLVM_NATIVE_ARCH MATCHES "arm64")
386 set(LLVM_NATIVE_ARCH AArch64)
387 elseif (LLVM_NATIVE_ARCH MATCHES "arm")
388 set(LLVM_NATIVE_ARCH ARM)
389 elseif (LLVM_NATIVE_ARCH MATCHES "mips")
390 set(LLVM_NATIVE_ARCH Mips)
391 elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
392 set(LLVM_NATIVE_ARCH XCore)
393 elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
394 set(LLVM_NATIVE_ARCH MSP430)
395 elseif (LLVM_NATIVE_ARCH MATCHES "hexagon")
396 set(LLVM_NATIVE_ARCH Hexagon)
397 elseif (LLVM_NATIVE_ARCH MATCHES "s390x")
398 set(LLVM_NATIVE_ARCH SystemZ)
399 elseif (LLVM_NATIVE_ARCH MATCHES "wasm32")
400 set(LLVM_NATIVE_ARCH WebAssembly)
401 elseif (LLVM_NATIVE_ARCH MATCHES "wasm64")
402 set(LLVM_NATIVE_ARCH WebAssembly)
403 elseif (LLVM_NATIVE_ARCH MATCHES "riscv32")
404 set(LLVM_NATIVE_ARCH RISCV)
405 elseif (LLVM_NATIVE_ARCH MATCHES "riscv64")
406 set(LLVM_NATIVE_ARCH RISCV)
408 message(FATAL_ERROR "Unknown architecture ${LLVM_NATIVE_ARCH}")
411 # If build targets includes "host", then replace with native architecture.
412 list(FIND LLVM_TARGETS_TO_BUILD "host" idx)
414 list(REMOVE_AT LLVM_TARGETS_TO_BUILD ${idx})
415 list(APPEND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH})
416 list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
419 list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
420 if (NATIVE_ARCH_IDX EQUAL -1)
422 "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
424 message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}")
425 set(LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target)
426 set(LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo)
427 set(LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC)
428 set(LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter)
430 # We don't have an ASM parser for all architectures yet.
431 if (EXISTS ${PROJECT_SOURCE_DIR}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/CMakeLists.txt)
432 set(LLVM_NATIVE_ASMPARSER LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser)
435 # We don't have an disassembler for all architectures yet.
436 if (EXISTS ${PROJECT_SOURCE_DIR}/lib/Target/${LLVM_NATIVE_ARCH}/Disassembler/CMakeLists.txt)
437 set(LLVM_NATIVE_DISASSEMBLER LLVMInitialize${LLVM_NATIVE_ARCH}Disassembler)
443 set(stricmp "_stricmp")
444 set(strdup "_strdup")
446 # See if the DIA SDK is available and usable.
447 set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK")
449 # Due to a bug in MSVC 2013's installation software, it is possible
450 # for MSVC 2013 to write the DIA SDK into the Visual Studio 2012
451 # install directory. If this happens, the installation is corrupt
452 # and there's nothing we can do. It happens with enough frequency
453 # though that we should handle it. We do so by simply checking that
454 # the DIA SDK folder exists. Should this happen you will need to
455 # uninstall VS 2012 and then re-install VS 2013.
456 if (IS_DIRECTORY ${MSVC_DIA_SDK_DIR})
462 option(LLVM_ENABLE_DIA_SDK "Use MSVC DIA SDK for debugging if available."
465 if(LLVM_ENABLE_DIA_SDK AND NOT HAVE_DIA_SDK)
466 message(FATAL_ERROR "DIA SDK not found. If you have both VS 2012 and 2013 installed, you may need to uninstall the former and re-install the latter afterwards.")
469 set(LLVM_ENABLE_DIA_SDK 0)
472 # FIXME: Signal handler return type, currently hardcoded to 'void'
475 if( LLVM_ENABLE_THREADS )
476 # Check if threading primitives aren't supported on this platform
477 if( NOT HAVE_PTHREAD_H AND NOT WIN32 )
478 set(LLVM_ENABLE_THREADS 0)
482 if( LLVM_ENABLE_THREADS )
483 message(STATUS "Threads enabled.")
484 else( LLVM_ENABLE_THREADS )
485 message(STATUS "Threads disabled.")
488 if (LLVM_ENABLE_ZLIB )
489 # Check if zlib is available in the system.
490 if ( NOT HAVE_ZLIB_H OR NOT HAVE_LIBZ )
491 set(LLVM_ENABLE_ZLIB 0)
495 if (LLVM_ENABLE_DOXYGEN)
496 message(STATUS "Doxygen enabled.")
497 find_package(Doxygen REQUIRED)
500 # If we find doxygen and we want to enable doxygen by default create a
501 # global aggregate doxygen target for generating llvm and any/all
502 # subprojects doxygen documentation.
504 add_custom_target(doxygen ALL)
507 option(LLVM_DOXYGEN_EXTERNAL_SEARCH "Enable doxygen external search." OFF)
508 if (LLVM_DOXYGEN_EXTERNAL_SEARCH)
509 set(LLVM_DOXYGEN_SEARCHENGINE_URL "" CACHE STRING "URL to use for external search.")
510 set(LLVM_DOXYGEN_SEARCH_MAPPINGS "" CACHE STRING "Doxygen Search Mappings")
514 message(STATUS "Doxygen disabled.")
517 set(LLVM_BINDINGS "")
518 find_program(GO_EXECUTABLE NAMES go DOC "go executable")
519 if(WIN32 OR NOT LLVM_ENABLE_BINDINGS)
520 message(STATUS "Go bindings disabled.")
522 if(GO_EXECUTABLE STREQUAL "GO_EXECUTABLE-NOTFOUND")
523 message(STATUS "Go bindings disabled.")
525 execute_process(COMMAND ${GO_EXECUTABLE} run ${PROJECT_SOURCE_DIR}/bindings/go/conftest.go
526 RESULT_VARIABLE GO_CONFTEST)
527 if(GO_CONFTEST STREQUAL "0")
528 set(LLVM_BINDINGS "${LLVM_BINDINGS} go")
529 message(STATUS "Go bindings enabled.")
531 message(STATUS "Go bindings disabled, need at least Go 1.2.")
536 find_program(GOLD_EXECUTABLE NAMES ${LLVM_DEFAULT_TARGET_TRIPLE}-ld.gold ld.gold ${LLVM_DEFAULT_TARGET_TRIPLE}-ld ld DOC "The gold linker")
537 set(LLVM_BINUTILS_INCDIR "" CACHE PATH
538 "PATH to binutils/include containing plugin-api.h for gold plugin.")
540 if(CMAKE_HOST_APPLE AND APPLE)
542 find_program(CMAKE_XCRUN NAMES xcrun)
545 execute_process(COMMAND ${CMAKE_XCRUN} -find ld
546 OUTPUT_VARIABLE LD64_EXECUTABLE
547 OUTPUT_STRIP_TRAILING_WHITESPACE)
549 find_program(LD64_EXECUTABLE NAMES ld DOC "The ld64 linker")
553 set(LD64_EXECUTABLE ${LD64_EXECUTABLE} CACHE PATH "ld64 executable")
554 message(STATUS "Found ld64 - ${LD64_EXECUTABLE}")
558 # Keep the version requirements in sync with bindings/ocaml/README.txt.
561 if(WIN32 OR NOT LLVM_ENABLE_BINDINGS)
562 message(STATUS "OCaml bindings disabled.")
565 if( NOT OCAML_FOUND )
566 message(STATUS "OCaml bindings disabled.")
568 if( OCAML_VERSION VERSION_LESS "4.00.0" )
569 message(STATUS "OCaml bindings disabled, need OCaml >=4.00.0.")
571 find_ocamlfind_package(ctypes VERSION 0.4 OPTIONAL)
572 if( HAVE_OCAML_CTYPES )
573 message(STATUS "OCaml bindings enabled.")
574 find_ocamlfind_package(oUnit VERSION 2 OPTIONAL)
575 set(LLVM_BINDINGS "${LLVM_BINDINGS} ocaml")
577 set(LLVM_OCAML_INSTALL_PATH "${OCAML_STDLIB_PATH}" CACHE STRING
578 "Install directory for LLVM OCaml packages")
580 message(STATUS "OCaml bindings disabled, need ctypes >=0.4.")
586 string(REPLACE " " ";" LLVM_BINDINGS_LIST "${LLVM_BINDINGS}")
588 function(find_python_module module)
589 string(REPLACE "." "_" module_name ${module})
590 string(TOUPPER ${module_name} module_upper)
591 set(FOUND_VAR PY_${module_upper}_FOUND)
593 execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c" "import ${module}"
594 RESULT_VARIABLE status
598 set(${FOUND_VAR} 0 PARENT_SCOPE)
599 message(STATUS "Could NOT find Python module ${module}")
601 set(${FOUND_VAR} 1 PARENT_SCOPE)
602 message(STATUS "Found Python module ${module}")
608 # Some systems still don't have pygments.lexers.c_cpp which was introduced in
609 # version 2.0 in 2014...
610 pygments.lexers.c_cpp
613 foreach(module ${PYTHON_MODULES})
614 find_python_module(${module})
617 if(PY_PYGMENTS_FOUND AND PY_PYGMENTS_LEXERS_C_CPP_FOUND AND PY_YAML_FOUND)
618 set (LLVM_HAVE_OPT_VIEWER_MODULES 1)
620 set (LLVM_HAVE_OPT_VIEWER_MODULES 0)