Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 1 | |
| 2 | # include checks |
| 3 | include(CheckIncludeFile) |
| 4 | check_include_file(argz.h HAVE_ARGZ_H) |
| 5 | check_include_file(assert.h HAVE_ASSERT_H) |
| 6 | check_include_file(dirent.h HAVE_DIRENT_H) |
| 7 | check_include_file(dl.h HAVE_DL_H) |
| 8 | check_include_file(dld.h HAVE_DLD_H) |
| 9 | check_include_file(dlfcn.h HAVE_DLFCN_H) |
| 10 | check_include_file(errno.h HAVE_ERRNO_H) |
| 11 | check_include_file(execinfo.h HAVE_EXECINFO_H) |
| 12 | check_include_file(fcntl.h HAVE_FCNTL_H) |
| 13 | check_include_file(inttypes.h HAVE_INTTYPES_H) |
| 14 | check_include_file(limits.h HAVE_LIMITS_H) |
| 15 | check_include_file(link.h HAVE_LINK_H) |
| 16 | check_include_file(malloc.h HAVE_MALLOC_H) |
| 17 | check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H) |
| 18 | check_include_file(memory.h HAVE_MEMORY_H) |
| 19 | check_include_file(ndir.h HAVE_NDIR_H) |
| 20 | check_include_file(pthread.h HAVE_PTHREAD_H) |
| 21 | check_include_file(setjmp.h HAVE_SETJMP_H) |
| 22 | check_include_file(signal.h HAVE_SIGNAL_H) |
| 23 | check_include_file(stdint.h HAVE_STDINT_H) |
| 24 | check_include_file(stdio.h HAVE_STDIO_H) |
| 25 | check_include_file(stdlib.h HAVE_STDLIB_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 26 | check_include_file(string.h HAVE_STRING_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 27 | check_include_file(sys/dir.h HAVE_SYS_DIR_H) |
| 28 | check_include_file(sys/dl.h HAVE_SYS_DL_H) |
Douglas Gregor | 0174674 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 29 | check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 30 | check_include_file(sys/mman.h HAVE_SYS_MMAN_H) |
| 31 | check_include_file(sys/ndir.h HAVE_SYS_NDIR_H) |
| 32 | check_include_file(sys/param.h HAVE_SYS_PARAM_H) |
| 33 | check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H) |
| 34 | check_include_file(sys/stat.h HAVE_SYS_STAT_H) |
| 35 | check_include_file(sys/time.h HAVE_SYS_TIME_H) |
| 36 | check_include_file(sys/types.h HAVE_SYS_TYPES_H) |
Douglas Gregor | 071d73d | 2009-05-18 17:21:34 +0000 | [diff] [blame] | 37 | check_include_file(termios.h HAVE_TERMIOS_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 38 | check_include_file(unistd.h HAVE_UNISTD_H) |
| 39 | check_include_file(utime.h HAVE_UTIME_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 40 | check_include_file(windows.h HAVE_WINDOWS_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 41 | |
Oscar Fuentes | d413c01 | 2009-05-06 14:40:37 +0000 | [diff] [blame] | 42 | # library checks |
| 43 | include(CheckLibraryExists) |
| 44 | check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD) |
Oscar Fuentes | db917fe | 2009-05-23 02:37:24 +0000 | [diff] [blame^] | 45 | check_library_exists(dl dlopen "" HAVE_LIBDL) |
Oscar Fuentes | d413c01 | 2009-05-06 14:40:37 +0000 | [diff] [blame] | 46 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 47 | # function checks |
| 48 | include(CheckSymbolExists) |
Douglas Gregor | 0174674 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 49 | include(CheckFunctionExists) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 50 | check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE) |
| 51 | check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE) |
| 52 | check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT) |
Douglas Gregor | 0174674 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 53 | check_function_exists(isatty HAVE_ISATTY) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 54 | check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH) |
| 55 | check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H) |
| 56 | check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH) |
| 57 | check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 58 | check_symbol_exists(ceilf math.h HAVE_CEILF) |
| 59 | check_symbol_exists(floorf math.h HAVE_FLOORF) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 60 | check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO) |
| 61 | check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 62 | check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 63 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 64 | check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC) |
| 65 | if( LLVM_USING_GLIBC ) |
| 66 | add_llvm_definitions( -D_GNU_SOURCE ) |
| 67 | endif() |
| 68 | |
Oscar Fuentes | 148d245 | 2008-11-20 03:10:17 +0000 | [diff] [blame] | 69 | include(CheckCXXCompilerFlag) |
| 70 | check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG) |
| 71 | |
Oscar Fuentes | 579e43a | 2008-10-26 00:47:52 +0000 | [diff] [blame] | 72 | include(GetTargetTriple) |
| 73 | get_target_triple(LLVM_HOSTTRIPLE) |
| 74 | message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}") |
| 75 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 76 | if( MINGW ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 77 | set(HAVE_LIBIMAGEHLP 1) |
| 78 | set(HAVE_LIBPSAPI 1) |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 79 | # TODO: Check existence of libraries. |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 80 | # include(CheckLibraryExists) |
| 81 | # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP) |
| 82 | endif( MINGW ) |
| 83 | |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 84 | if( MSVC ) |
| 85 | set(error_t int) |
Cedric Venet | 07b9d69 | 2009-02-14 16:13:26 +0000 | [diff] [blame] | 86 | set(mode_t "unsigned short") |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 87 | set(LTDL_SHLIBPATH_VAR "PATH") |
| 88 | set(LTDL_SYSSEARCHPATH "") |
| 89 | set(LTDL_DLOPEN_DEPLIBS 1) |
| 90 | set(SHLIBEXT ".lib") |
| 91 | set(LTDL_OBJDIR "_libs") |
| 92 | set(HAVE_STRTOLL 1) |
| 93 | set(strtoll "_strtoi64") |
| 94 | set(strtoull "_strtoui64") |
| 95 | set(stricmp "_stricmp") |
| 96 | set(strdup "_strdup") |
| 97 | else( MSVC ) |
| 98 | set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH") |
| 99 | set(LTDL_SYSSEARCHPATH "") # TODO |
| 100 | set(LTDL_DLOPEN_DEPLIBS 0) # TODO |
| 101 | endif( MSVC ) |
| 102 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 103 | # FIXME: Signal handler return type, currently hardcoded to 'void' |
| 104 | set(RETSIGTYPE void) |
| 105 | |
Oscar Fuentes | 4b44283 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 106 | if( LLVM_ENABLE_THREADS ) |
| 107 | if( HAVE_PTHREAD_H OR WIN32 ) |
| 108 | set(ENABLE_THREADS 1) |
| 109 | endif() |
| 110 | endif() |
| 111 | |
| 112 | if( ENABLE_THREADS ) |
| 113 | message(STATUS "Threads enabled.") |
| 114 | else( ENABLE_THREADS ) |
| 115 | message(STATUS "Threads disabled.") |
| 116 | endif() |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 117 | |
| 118 | configure_file( |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 119 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 120 | ${LLVM_BINARY_DIR}/include/llvm/Config/config.h |
| 121 | ) |
| 122 | |
| 123 | configure_file( |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 124 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/iterator.cmake |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 125 | ${LLVM_BINARY_DIR}/include/llvm/ADT/iterator.h |
| 126 | ) |
| 127 | |
| 128 | configure_file( |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 129 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 130 | ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h |
| 131 | ) |
| 132 | |