Douglas Gregor | 9c091a48 | 2009-10-01 17:25:36 +0000 | [diff] [blame] | 1 | include(CheckIncludeFile) |
| 2 | include(CheckLibraryExists) |
| 3 | include(CheckSymbolExists) |
| 4 | include(CheckFunctionExists) |
| 5 | include(CheckCXXSourceCompiles) |
Michael J. Spencer | 5e0b2bf | 2010-10-21 20:28:21 +0000 | [diff] [blame] | 6 | include(TestBigEndian) |
Douglas Gregor | 9c091a48 | 2009-10-01 17:25:36 +0000 | [diff] [blame] | 7 | |
Nick Lewycky | ec4c02d | 2010-06-23 06:48:34 +0000 | [diff] [blame] | 8 | if( UNIX AND NOT BEOS ) |
Oscar Fuentes | a447cfe | 2009-11-12 05:36:09 +0000 | [diff] [blame] | 9 | # Used by check_symbol_exists: |
| 10 | set(CMAKE_REQUIRED_LIBRARIES m) |
| 11 | endif() |
| 12 | |
Douglas Gregor | 9c091a48 | 2009-10-01 17:25:36 +0000 | [diff] [blame] | 13 | # Helper macros and functions |
| 14 | macro(add_cxx_include result files) |
| 15 | set(${result} "") |
| 16 | foreach (file_name ${files}) |
| 17 | set(${result} "${${result}}#include<${file_name}>\n") |
| 18 | endforeach() |
| 19 | endmacro(add_cxx_include files result) |
| 20 | |
| 21 | function(check_type_exists type files variable) |
| 22 | add_cxx_include(includes "${files}") |
| 23 | CHECK_CXX_SOURCE_COMPILES(" |
| 24 | ${includes} ${type} typeVar; |
| 25 | int main() { |
| 26 | return 0; |
| 27 | } |
| 28 | " ${variable}) |
| 29 | endfunction() |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 30 | |
| 31 | # include checks |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 32 | check_include_file(argz.h HAVE_ARGZ_H) |
| 33 | check_include_file(assert.h HAVE_ASSERT_H) |
Oscar Fuentes | 19823b1 | 2011-01-11 12:31:54 +0000 | [diff] [blame^] | 34 | check_include_file(ctype.h HAVE_CTYPE_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 35 | check_include_file(dirent.h HAVE_DIRENT_H) |
| 36 | check_include_file(dl.h HAVE_DL_H) |
| 37 | check_include_file(dld.h HAVE_DLD_H) |
| 38 | check_include_file(dlfcn.h HAVE_DLFCN_H) |
| 39 | check_include_file(errno.h HAVE_ERRNO_H) |
| 40 | check_include_file(execinfo.h HAVE_EXECINFO_H) |
| 41 | check_include_file(fcntl.h HAVE_FCNTL_H) |
| 42 | check_include_file(inttypes.h HAVE_INTTYPES_H) |
| 43 | check_include_file(limits.h HAVE_LIMITS_H) |
| 44 | check_include_file(link.h HAVE_LINK_H) |
| 45 | check_include_file(malloc.h HAVE_MALLOC_H) |
| 46 | check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H) |
| 47 | check_include_file(memory.h HAVE_MEMORY_H) |
| 48 | check_include_file(ndir.h HAVE_NDIR_H) |
Oscar Fuentes | 20f1714 | 2009-11-05 18:57:56 +0000 | [diff] [blame] | 49 | if( NOT LLVM_ON_WIN32 ) |
| 50 | check_include_file(pthread.h HAVE_PTHREAD_H) |
| 51 | endif() |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 52 | check_include_file(setjmp.h HAVE_SETJMP_H) |
| 53 | check_include_file(signal.h HAVE_SIGNAL_H) |
| 54 | check_include_file(stdint.h HAVE_STDINT_H) |
| 55 | check_include_file(stdio.h HAVE_STDIO_H) |
| 56 | check_include_file(stdlib.h HAVE_STDLIB_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 57 | check_include_file(string.h HAVE_STRING_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 58 | check_include_file(sys/dir.h HAVE_SYS_DIR_H) |
| 59 | check_include_file(sys/dl.h HAVE_SYS_DL_H) |
Douglas Gregor | 0174674 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 60 | check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 61 | check_include_file(sys/mman.h HAVE_SYS_MMAN_H) |
| 62 | check_include_file(sys/ndir.h HAVE_SYS_NDIR_H) |
| 63 | check_include_file(sys/param.h HAVE_SYS_PARAM_H) |
| 64 | check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H) |
| 65 | check_include_file(sys/stat.h HAVE_SYS_STAT_H) |
| 66 | check_include_file(sys/time.h HAVE_SYS_TIME_H) |
| 67 | check_include_file(sys/types.h HAVE_SYS_TYPES_H) |
Douglas Gregor | 318de60 | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 68 | check_include_file(sys/wait.h HAVE_SYS_WAIT_H) |
Douglas Gregor | 071d73d | 2009-05-18 17:21:34 +0000 | [diff] [blame] | 69 | check_include_file(termios.h HAVE_TERMIOS_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 70 | check_include_file(unistd.h HAVE_UNISTD_H) |
| 71 | check_include_file(utime.h HAVE_UTIME_H) |
Jeffrey Yasskin | f28411f | 2010-03-15 04:57:55 +0000 | [diff] [blame] | 72 | check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 73 | check_include_file(windows.h HAVE_WINDOWS_H) |
Oscar Fuentes | c141acc | 2010-09-17 20:30:48 +0000 | [diff] [blame] | 74 | check_include_file(fenv.h HAVE_FENV_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 75 | |
Oscar Fuentes | d413c01 | 2009-05-06 14:40:37 +0000 | [diff] [blame] | 76 | # library checks |
Oscar Fuentes | 20f1714 | 2009-11-05 18:57:56 +0000 | [diff] [blame] | 77 | if( NOT LLVM_ON_WIN32 ) |
| 78 | check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD) |
| 79 | check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC) |
| 80 | check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT) |
| 81 | check_library_exists(dl dlopen "" HAVE_LIBDL) |
| 82 | endif() |
Oscar Fuentes | d413c01 | 2009-05-06 14:40:37 +0000 | [diff] [blame] | 83 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 84 | # function checks |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 85 | check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE) |
| 86 | check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE) |
| 87 | check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT) |
Douglas Gregor | 0174674 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 88 | check_function_exists(isatty HAVE_ISATTY) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 89 | check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH) |
| 90 | check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H) |
Edward O'Callaghan | c6cf5fe | 2009-10-12 04:00:11 +0000 | [diff] [blame] | 91 | check_symbol_exists(finite ieeefp.h HAVE_FINITE_IN_IEEEFP_H) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 92 | check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH) |
| 93 | check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 94 | check_symbol_exists(ceilf math.h HAVE_CEILF) |
| 95 | check_symbol_exists(floorf math.h HAVE_FLOORF) |
Oscar Fuentes | 19823b1 | 2011-01-11 12:31:54 +0000 | [diff] [blame^] | 96 | check_symbol_exists(fmodf math.h HAVE_FMODF) |
Oscar Fuentes | a447cfe | 2009-11-12 05:36:09 +0000 | [diff] [blame] | 97 | check_symbol_exists(nearbyintf math.h HAVE_NEARBYINTF) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 98 | check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO) |
Douglas Gregor | ef23d71 | 2009-06-04 17:22:52 +0000 | [diff] [blame] | 99 | check_symbol_exists(malloc_zone_statistics malloc/malloc.h |
| 100 | HAVE_MALLOC_ZONE_STATISTICS) |
Benjamin Kramer | 74b691e | 2009-10-28 18:37:31 +0000 | [diff] [blame] | 101 | check_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP) |
| 102 | check_symbol_exists(mkstemp "stdlib.h;unistd.h" HAVE_MKSTEMP) |
| 103 | check_symbol_exists(mktemp "stdlib.h;unistd.h" HAVE_MKTEMP) |
Oscar Fuentes | 20f1714 | 2009-11-05 18:57:56 +0000 | [diff] [blame] | 104 | if( NOT LLVM_ON_WIN32 ) |
| 105 | check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK) |
| 106 | endif() |
Edward O'Callaghan | a2c7535 | 2009-10-05 23:05:32 +0000 | [diff] [blame] | 107 | check_symbol_exists(sbrk unistd.h HAVE_SBRK) |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 108 | check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL) |
Jeffrey Yasskin | ed1c0ff | 2009-07-01 18:11:20 +0000 | [diff] [blame] | 109 | check_symbol_exists(strerror string.h HAVE_STRERROR) |
| 110 | check_symbol_exists(strerror_r string.h HAVE_STRERROR_R) |
| 111 | check_symbol_exists(strerror_s string.h HAVE_STRERROR_S) |
Jeffrey Yasskin | b7a8d40 | 2009-09-25 21:07:20 +0000 | [diff] [blame] | 112 | check_symbol_exists(setenv stdlib.h HAVE_SETENV) |
Michael J. Spencer | db04b39 | 2010-12-03 18:48:56 +0000 | [diff] [blame] | 113 | if ( LLVM_ON_WIN32 ) |
| 114 | check_symbol_exists(_chsize_s io.h HAVE__CHSIZE_S) |
| 115 | endif() |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 116 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 117 | check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC) |
| 118 | if( LLVM_USING_GLIBC ) |
| 119 | add_llvm_definitions( -D_GNU_SOURCE ) |
| 120 | endif() |
| 121 | |
Douglas Gregor | 9c091a48 | 2009-10-01 17:25:36 +0000 | [diff] [blame] | 122 | # Type checks |
| 123 | check_type_exists(std::bidirectional_iterator<int,int> "iterator;iostream" HAVE_BI_ITERATOR) |
| 124 | check_type_exists(std::iterator<int,int,int> iterator HAVE_STD_ITERATOR) |
| 125 | check_type_exists(std::forward_iterator<int,int> iterator HAVE_FWD_ITERATOR) |
| 126 | |
| 127 | set(headers "") |
| 128 | if (HAVE_SYS_TYPES_H) |
| 129 | set(headers ${headers} "sys/types.h") |
| 130 | endif() |
| 131 | |
| 132 | if (HAVE_INTTYPES_H) |
| 133 | set(headers ${headers} "inttypes.h") |
| 134 | endif() |
| 135 | |
| 136 | if (HAVE_STDINT_H) |
| 137 | set(headers ${headers} "stdint.h") |
| 138 | endif() |
| 139 | |
Oscar Fuentes | 19823b1 | 2011-01-11 12:31:54 +0000 | [diff] [blame^] | 140 | check_type_exists(int64_t "${headers}" HAVE_INT64_T) |
Douglas Gregor | 9c091a48 | 2009-10-01 17:25:36 +0000 | [diff] [blame] | 141 | check_type_exists(uint64_t "${headers}" HAVE_UINT64_T) |
| 142 | check_type_exists(u_int64_t "${headers}" HAVE_U_INT64_T) |
| 143 | |
Oscar Fuentes | b5b10c2 | 2009-11-05 19:03:26 +0000 | [diff] [blame] | 144 | # available programs checks |
Oscar Fuentes | 6a660d4 | 2009-11-09 15:26:40 +0000 | [diff] [blame] | 145 | function(llvm_find_program name) |
| 146 | string(TOUPPER ${name} NAME) |
| 147 | find_program(LLVM_PATH_${NAME} ${name}) |
| 148 | mark_as_advanced(LLVM_PATH_${NAME}) |
| 149 | if(LLVM_PATH_${NAME}) |
| 150 | set(HAVE_${NAME} 1 CACHE INTERNAL "Is ${name} available ?") |
| 151 | mark_as_advanced(HAVE_${NAME}) |
| 152 | else(LLVM_PATH_${NAME}) |
| 153 | set(HAVE_${NAME} "" CACHE INTERNAL "Is ${name} available ?") |
Oscar Fuentes | 6a660d4 | 2009-11-09 15:26:40 +0000 | [diff] [blame] | 154 | endif(LLVM_PATH_${NAME}) |
| 155 | endfunction() |
| 156 | |
| 157 | llvm_find_program(gv) |
| 158 | llvm_find_program(circo) |
| 159 | llvm_find_program(twopi) |
| 160 | llvm_find_program(neato) |
| 161 | llvm_find_program(fdp) |
| 162 | llvm_find_program(dot) |
| 163 | llvm_find_program(dotty) |
Oscar Fuentes | b5b10c2 | 2009-11-05 19:03:26 +0000 | [diff] [blame] | 164 | |
Xerxes Ranby | 6215c62 | 2009-07-17 19:22:41 +0000 | [diff] [blame] | 165 | # Define LLVM_MULTITHREADED if gcc atomic builtins exists. |
| 166 | include(CheckAtomic) |
| 167 | |
Oscar Fuentes | 2c5e0b8 | 2011-01-09 14:34:39 +0000 | [diff] [blame] | 168 | set(ENABLE_PIC ${LLVM_ENABLE_PIC}) |
| 169 | |
Oscar Fuentes | 148d245 | 2008-11-20 03:10:17 +0000 | [diff] [blame] | 170 | include(CheckCXXCompilerFlag) |
Oscar Fuentes | 148d245 | 2008-11-20 03:10:17 +0000 | [diff] [blame] | 171 | |
Michael J. Spencer | 1cade33 | 2010-10-07 18:12:54 +0000 | [diff] [blame] | 172 | check_cxx_compiler_flag("-Wno-variadic-macros" SUPPORTS_NO_VARIADIC_MACROS_FLAG) |
| 173 | |
Oscar Fuentes | 579e43a | 2008-10-26 00:47:52 +0000 | [diff] [blame] | 174 | include(GetTargetTriple) |
| 175 | get_target_triple(LLVM_HOSTTRIPLE) |
Oscar Fuentes | 579e43a | 2008-10-26 00:47:52 +0000 | [diff] [blame] | 176 | |
Daniel Dunbar | e9b88e4 | 2009-11-07 23:52:20 +0000 | [diff] [blame] | 177 | # FIXME: We don't distinguish the target and the host. :( |
| 178 | set(TARGET_TRIPLE "${LLVM_HOSTTRIPLE}") |
| 179 | |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 180 | # Determine the native architecture. |
Oscar Fuentes | a9ff139 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 181 | string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH) |
| 182 | if( LLVM_NATIVE_ARCH STREQUAL "host" ) |
| 183 | string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOSTTRIPLE}) |
| 184 | endif () |
| 185 | |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 186 | if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86") |
| 187 | set(LLVM_NATIVE_ARCH X86) |
Oscar Fuentes | a9ff139 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 188 | elseif (LLVM_NATIVE_ARCH STREQUAL "x86") |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 189 | set(LLVM_NATIVE_ARCH X86) |
Oscar Fuentes | a9ff139 | 2009-09-13 22:18:38 +0000 | [diff] [blame] | 190 | elseif (LLVM_NATIVE_ARCH STREQUAL "amd64") |
| 191 | set(LLVM_NATIVE_ARCH X86) |
| 192 | elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64") |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 193 | set(LLVM_NATIVE_ARCH X86) |
| 194 | elseif (LLVM_NATIVE_ARCH MATCHES "sparc") |
| 195 | set(LLVM_NATIVE_ARCH Sparc) |
| 196 | elseif (LLVM_NATIVE_ARCH MATCHES "powerpc") |
| 197 | set(LLVM_NATIVE_ARCH PowerPC) |
| 198 | elseif (LLVM_NATIVE_ARCH MATCHES "alpha") |
| 199 | set(LLVM_NATIVE_ARCH Alpha) |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 200 | elseif (LLVM_NATIVE_ARCH MATCHES "arm") |
| 201 | set(LLVM_NATIVE_ARCH ARM) |
| 202 | elseif (LLVM_NATIVE_ARCH MATCHES "mips") |
| 203 | set(LLVM_NATIVE_ARCH Mips) |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 204 | elseif (LLVM_NATIVE_ARCH MATCHES "xcore") |
| 205 | set(LLVM_NATIVE_ARCH XCore) |
| 206 | elseif (LLVM_NATIVE_ARCH MATCHES "msp430") |
| 207 | set(LLVM_NATIVE_ARCH MSP430) |
| 208 | else () |
Michael J. Spencer | c8417d7 | 2010-09-24 09:00:56 +0000 | [diff] [blame] | 209 | message(STATUS |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 210 | "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code") |
| 211 | set(LLVM_NATIVE_ARCH) |
| 212 | endif () |
Michael J. Spencer | c8417d7 | 2010-09-24 09:00:56 +0000 | [diff] [blame] | 213 | |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 214 | if (LLVM_NATIVE_ARCH) |
| 215 | list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX) |
| 216 | if (NATIVE_ARCH_IDX EQUAL -1) |
Michael J. Spencer | c8417d7 | 2010-09-24 09:00:56 +0000 | [diff] [blame] | 217 | message(STATUS |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 218 | "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code") |
| 219 | set(LLVM_NATIVE_ARCH) |
| 220 | else () |
| 221 | message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}") |
Oscar Fuentes | e1967a7 | 2010-09-03 02:22:23 +0000 | [diff] [blame] | 222 | set(LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target) |
| 223 | set(LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo) |
| 224 | set(LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter) |
Douglas Gregor | e9d683b | 2009-06-17 17:01:56 +0000 | [diff] [blame] | 225 | endif () |
| 226 | endif() |
| 227 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 228 | if( MINGW ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 229 | set(HAVE_LIBIMAGEHLP 1) |
| 230 | set(HAVE_LIBPSAPI 1) |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 231 | # TODO: Check existence of libraries. |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 232 | # include(CheckLibraryExists) |
| 233 | # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP) |
| 234 | endif( MINGW ) |
| 235 | |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 236 | if( MSVC ) |
| 237 | set(error_t int) |
Cedric Venet | 07b9d69 | 2009-02-14 16:13:26 +0000 | [diff] [blame] | 238 | set(mode_t "unsigned short") |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 239 | set(LTDL_SHLIBPATH_VAR "PATH") |
| 240 | set(LTDL_SYSSEARCHPATH "") |
| 241 | set(LTDL_DLOPEN_DEPLIBS 1) |
| 242 | set(SHLIBEXT ".lib") |
| 243 | set(LTDL_OBJDIR "_libs") |
| 244 | set(HAVE_STRTOLL 1) |
| 245 | set(strtoll "_strtoi64") |
| 246 | set(strtoull "_strtoui64") |
| 247 | set(stricmp "_stricmp") |
| 248 | set(strdup "_strdup") |
| 249 | else( MSVC ) |
| 250 | set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH") |
| 251 | set(LTDL_SYSSEARCHPATH "") # TODO |
| 252 | set(LTDL_DLOPEN_DEPLIBS 0) # TODO |
| 253 | endif( MSVC ) |
| 254 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 255 | # FIXME: Signal handler return type, currently hardcoded to 'void' |
| 256 | set(RETSIGTYPE void) |
| 257 | |
Oscar Fuentes | 4b44283 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 258 | if( LLVM_ENABLE_THREADS ) |
| 259 | if( HAVE_PTHREAD_H OR WIN32 ) |
| 260 | set(ENABLE_THREADS 1) |
| 261 | endif() |
| 262 | endif() |
| 263 | |
| 264 | if( ENABLE_THREADS ) |
| 265 | message(STATUS "Threads enabled.") |
| 266 | else( ENABLE_THREADS ) |
| 267 | message(STATUS "Threads disabled.") |
| 268 | endif() |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 269 | |
Oscar Fuentes | 652eb50 | 2010-08-08 04:32:21 +0000 | [diff] [blame] | 270 | set(LLVM_PREFIX ${CMAKE_INSTALL_PREFIX}) |
| 271 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 272 | configure_file( |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 273 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 274 | ${LLVM_BINARY_DIR}/include/llvm/Config/config.h |
| 275 | ) |
| 276 | |
| 277 | configure_file( |
Oscar Fuentes | 118eb57 | 2010-08-08 04:17:18 +0000 | [diff] [blame] | 278 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake |
| 279 | ${LLVM_BINARY_DIR}/include/llvm/Config/llvm-config.h |
| 280 | ) |
| 281 | |
| 282 | configure_file( |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 283 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake |
| 284 | ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 285 | ) |
| 286 | |