blob: 83ef8e584f00abd0992a911bfae4cc6b5359bff2 [file] [log] [blame]
Douglas Gregor9c091a482009-10-01 17:25:36 +00001include(CheckIncludeFile)
2include(CheckLibraryExists)
3include(CheckSymbolExists)
4include(CheckFunctionExists)
5include(CheckCXXSourceCompiles)
Michael J. Spencer5e0b2bf2010-10-21 20:28:21 +00006include(TestBigEndian)
Douglas Gregor9c091a482009-10-01 17:25:36 +00007
Nick Lewyckyec4c02d2010-06-23 06:48:34 +00008if( UNIX AND NOT BEOS )
Oscar Fuentesa447cfe2009-11-12 05:36:09 +00009 # Used by check_symbol_exists:
10 set(CMAKE_REQUIRED_LIBRARIES m)
11endif()
12
Douglas Gregor9c091a482009-10-01 17:25:36 +000013# Helper macros and functions
14macro(add_cxx_include result files)
15 set(${result} "")
16 foreach (file_name ${files})
17 set(${result} "${${result}}#include<${file_name}>\n")
18 endforeach()
19endmacro(add_cxx_include files result)
20
21function(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})
29endfunction()
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000030
31# include checks
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000032check_include_file(argz.h HAVE_ARGZ_H)
33check_include_file(assert.h HAVE_ASSERT_H)
34check_include_file(dirent.h HAVE_DIRENT_H)
35check_include_file(dl.h HAVE_DL_H)
36check_include_file(dld.h HAVE_DLD_H)
37check_include_file(dlfcn.h HAVE_DLFCN_H)
38check_include_file(errno.h HAVE_ERRNO_H)
39check_include_file(execinfo.h HAVE_EXECINFO_H)
40check_include_file(fcntl.h HAVE_FCNTL_H)
41check_include_file(inttypes.h HAVE_INTTYPES_H)
42check_include_file(limits.h HAVE_LIMITS_H)
43check_include_file(link.h HAVE_LINK_H)
44check_include_file(malloc.h HAVE_MALLOC_H)
45check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H)
46check_include_file(memory.h HAVE_MEMORY_H)
47check_include_file(ndir.h HAVE_NDIR_H)
Oscar Fuentes20f17142009-11-05 18:57:56 +000048if( NOT LLVM_ON_WIN32 )
49 check_include_file(pthread.h HAVE_PTHREAD_H)
50endif()
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000051check_include_file(setjmp.h HAVE_SETJMP_H)
52check_include_file(signal.h HAVE_SIGNAL_H)
53check_include_file(stdint.h HAVE_STDINT_H)
54check_include_file(stdio.h HAVE_STDIO_H)
55check_include_file(stdlib.h HAVE_STDLIB_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000056check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000057check_include_file(sys/dir.h HAVE_SYS_DIR_H)
58check_include_file(sys/dl.h HAVE_SYS_DL_H)
Douglas Gregor01746742009-05-11 18:05:52 +000059check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000060check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
61check_include_file(sys/ndir.h HAVE_SYS_NDIR_H)
62check_include_file(sys/param.h HAVE_SYS_PARAM_H)
63check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
64check_include_file(sys/stat.h HAVE_SYS_STAT_H)
65check_include_file(sys/time.h HAVE_SYS_TIME_H)
66check_include_file(sys/types.h HAVE_SYS_TYPES_H)
Douglas Gregor318de602009-06-05 23:46:34 +000067check_include_file(sys/wait.h HAVE_SYS_WAIT_H)
Douglas Gregor071d73d2009-05-18 17:21:34 +000068check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000069check_include_file(unistd.h HAVE_UNISTD_H)
70check_include_file(utime.h HAVE_UTIME_H)
Jeffrey Yasskinf28411f2010-03-15 04:57:55 +000071check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000072check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentesc141acc2010-09-17 20:30:48 +000073check_include_file(fenv.h HAVE_FENV_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000074
Oscar Fuentesd413c012009-05-06 14:40:37 +000075# library checks
Oscar Fuentes20f17142009-11-05 18:57:56 +000076if( NOT LLVM_ON_WIN32 )
77 check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
78 check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
79 check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
80 check_library_exists(dl dlopen "" HAVE_LIBDL)
81endif()
Oscar Fuentesd413c012009-05-06 14:40:37 +000082
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000083# function checks
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000084check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
85check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
86check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
Douglas Gregor01746742009-05-11 18:05:52 +000087check_function_exists(isatty HAVE_ISATTY)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000088check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
89check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +000090check_symbol_exists(finite ieeefp.h HAVE_FINITE_IN_IEEEFP_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000091check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
92check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000093check_symbol_exists(ceilf math.h HAVE_CEILF)
94check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentesa447cfe2009-11-12 05:36:09 +000095check_symbol_exists(nearbyintf math.h HAVE_NEARBYINTF)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000096check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
Douglas Gregoref23d712009-06-04 17:22:52 +000097check_symbol_exists(malloc_zone_statistics malloc/malloc.h
98 HAVE_MALLOC_ZONE_STATISTICS)
Benjamin Kramer74b691e2009-10-28 18:37:31 +000099check_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP)
100check_symbol_exists(mkstemp "stdlib.h;unistd.h" HAVE_MKSTEMP)
101check_symbol_exists(mktemp "stdlib.h;unistd.h" HAVE_MKTEMP)
Oscar Fuentes20f17142009-11-05 18:57:56 +0000102if( NOT LLVM_ON_WIN32 )
103 check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
104endif()
Edward O'Callaghana2c75352009-10-05 23:05:32 +0000105check_symbol_exists(sbrk unistd.h HAVE_SBRK)
Oscar Fuentesde98db32008-10-25 03:29:36 +0000106check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Jeffrey Yasskined1c0ff2009-07-01 18:11:20 +0000107check_symbol_exists(strerror string.h HAVE_STRERROR)
108check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)
109check_symbol_exists(strerror_s string.h HAVE_STRERROR_S)
Jeffrey Yasskinb7a8d402009-09-25 21:07:20 +0000110check_symbol_exists(setenv stdlib.h HAVE_SETENV)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000111
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000112check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
113if( LLVM_USING_GLIBC )
114 add_llvm_definitions( -D_GNU_SOURCE )
115endif()
116
Douglas Gregor9c091a482009-10-01 17:25:36 +0000117# Type checks
118check_type_exists(std::bidirectional_iterator<int,int> "iterator;iostream" HAVE_BI_ITERATOR)
119check_type_exists(std::iterator<int,int,int> iterator HAVE_STD_ITERATOR)
120check_type_exists(std::forward_iterator<int,int> iterator HAVE_FWD_ITERATOR)
121
122set(headers "")
123if (HAVE_SYS_TYPES_H)
124 set(headers ${headers} "sys/types.h")
125endif()
126
127if (HAVE_INTTYPES_H)
128 set(headers ${headers} "inttypes.h")
129endif()
130
131if (HAVE_STDINT_H)
132 set(headers ${headers} "stdint.h")
133endif()
134
135check_type_exists(uint64_t "${headers}" HAVE_UINT64_T)
136check_type_exists(u_int64_t "${headers}" HAVE_U_INT64_T)
137
Oscar Fuentesb5b10c22009-11-05 19:03:26 +0000138# available programs checks
Oscar Fuentes6a660d42009-11-09 15:26:40 +0000139function(llvm_find_program name)
140 string(TOUPPER ${name} NAME)
141 find_program(LLVM_PATH_${NAME} ${name})
142 mark_as_advanced(LLVM_PATH_${NAME})
143 if(LLVM_PATH_${NAME})
144 set(HAVE_${NAME} 1 CACHE INTERNAL "Is ${name} available ?")
145 mark_as_advanced(HAVE_${NAME})
146 else(LLVM_PATH_${NAME})
147 set(HAVE_${NAME} "" CACHE INTERNAL "Is ${name} available ?")
Oscar Fuentes6a660d42009-11-09 15:26:40 +0000148 endif(LLVM_PATH_${NAME})
149endfunction()
150
151llvm_find_program(gv)
152llvm_find_program(circo)
153llvm_find_program(twopi)
154llvm_find_program(neato)
155llvm_find_program(fdp)
156llvm_find_program(dot)
157llvm_find_program(dotty)
Oscar Fuentesb5b10c22009-11-05 19:03:26 +0000158
Xerxes Ranby6215c622009-07-17 19:22:41 +0000159# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
160include(CheckAtomic)
161
Oscar Fuentes148d2452008-11-20 03:10:17 +0000162include(CheckCXXCompilerFlag)
Oscar Fuentese1e3aaf2009-08-26 17:05:06 +0000163# On windows all code is position-independent and mingw warns if -fPIC
164# is in the command-line.
165if( NOT WIN32 )
166 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
167endif()
Oscar Fuentes148d2452008-11-20 03:10:17 +0000168
Michael J. Spencer1cade332010-10-07 18:12:54 +0000169check_cxx_compiler_flag("-Wno-variadic-macros" SUPPORTS_NO_VARIADIC_MACROS_FLAG)
170
Oscar Fuentes579e43a2008-10-26 00:47:52 +0000171include(GetTargetTriple)
172get_target_triple(LLVM_HOSTTRIPLE)
Oscar Fuentes579e43a2008-10-26 00:47:52 +0000173
Daniel Dunbare9b88e42009-11-07 23:52:20 +0000174# FIXME: We don't distinguish the target and the host. :(
175set(TARGET_TRIPLE "${LLVM_HOSTTRIPLE}")
176
Douglas Gregore9d683b2009-06-17 17:01:56 +0000177# Determine the native architecture.
Oscar Fuentesa9ff1392009-09-13 22:18:38 +0000178string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH)
179if( LLVM_NATIVE_ARCH STREQUAL "host" )
180 string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOSTTRIPLE})
181endif ()
182
Douglas Gregore9d683b2009-06-17 17:01:56 +0000183if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
184 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentesa9ff1392009-09-13 22:18:38 +0000185elseif (LLVM_NATIVE_ARCH STREQUAL "x86")
Douglas Gregore9d683b2009-06-17 17:01:56 +0000186 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentesa9ff1392009-09-13 22:18:38 +0000187elseif (LLVM_NATIVE_ARCH STREQUAL "amd64")
188 set(LLVM_NATIVE_ARCH X86)
189elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64")
Douglas Gregore9d683b2009-06-17 17:01:56 +0000190 set(LLVM_NATIVE_ARCH X86)
191elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
192 set(LLVM_NATIVE_ARCH Sparc)
193elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
194 set(LLVM_NATIVE_ARCH PowerPC)
195elseif (LLVM_NATIVE_ARCH MATCHES "alpha")
196 set(LLVM_NATIVE_ARCH Alpha)
Douglas Gregore9d683b2009-06-17 17:01:56 +0000197elseif (LLVM_NATIVE_ARCH MATCHES "arm")
198 set(LLVM_NATIVE_ARCH ARM)
199elseif (LLVM_NATIVE_ARCH MATCHES "mips")
200 set(LLVM_NATIVE_ARCH Mips)
Douglas Gregore9d683b2009-06-17 17:01:56 +0000201elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
202 set(LLVM_NATIVE_ARCH XCore)
203elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
204 set(LLVM_NATIVE_ARCH MSP430)
205else ()
Michael J. Spencerc8417d72010-09-24 09:00:56 +0000206 message(STATUS
Douglas Gregore9d683b2009-06-17 17:01:56 +0000207 "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code")
208 set(LLVM_NATIVE_ARCH)
209endif ()
Michael J. Spencerc8417d72010-09-24 09:00:56 +0000210
Douglas Gregore9d683b2009-06-17 17:01:56 +0000211if (LLVM_NATIVE_ARCH)
212 list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
213 if (NATIVE_ARCH_IDX EQUAL -1)
Michael J. Spencerc8417d72010-09-24 09:00:56 +0000214 message(STATUS
Douglas Gregore9d683b2009-06-17 17:01:56 +0000215 "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
216 set(LLVM_NATIVE_ARCH)
217 else ()
218 message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}")
Oscar Fuentese1967a72010-09-03 02:22:23 +0000219 set(LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target)
220 set(LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo)
221 set(LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter)
Douglas Gregore9d683b2009-06-17 17:01:56 +0000222 endif ()
223endif()
224
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000225if( MINGW )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000226 set(HAVE_LIBIMAGEHLP 1)
227 set(HAVE_LIBPSAPI 1)
Oscar Fuentes980e8422008-10-29 02:33:15 +0000228 # TODO: Check existence of libraries.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000229 # include(CheckLibraryExists)
230 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
231endif( MINGW )
232
Oscar Fuentesde98db32008-10-25 03:29:36 +0000233if( MSVC )
234 set(error_t int)
Cedric Venet07b9d692009-02-14 16:13:26 +0000235 set(mode_t "unsigned short")
Oscar Fuentesde98db32008-10-25 03:29:36 +0000236 set(LTDL_SHLIBPATH_VAR "PATH")
237 set(LTDL_SYSSEARCHPATH "")
238 set(LTDL_DLOPEN_DEPLIBS 1)
239 set(SHLIBEXT ".lib")
240 set(LTDL_OBJDIR "_libs")
241 set(HAVE_STRTOLL 1)
242 set(strtoll "_strtoi64")
243 set(strtoull "_strtoui64")
244 set(stricmp "_stricmp")
245 set(strdup "_strdup")
246else( MSVC )
247 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
248 set(LTDL_SYSSEARCHPATH "") # TODO
249 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
250endif( MSVC )
251
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000252# FIXME: Signal handler return type, currently hardcoded to 'void'
253set(RETSIGTYPE void)
254
Oscar Fuentes4b442832008-11-18 23:45:21 +0000255if( LLVM_ENABLE_THREADS )
256 if( HAVE_PTHREAD_H OR WIN32 )
257 set(ENABLE_THREADS 1)
258 endif()
259endif()
260
261if( ENABLE_THREADS )
262 message(STATUS "Threads enabled.")
263else( ENABLE_THREADS )
264 message(STATUS "Threads disabled.")
265endif()
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000266
Oscar Fuentes652eb502010-08-08 04:32:21 +0000267set(LLVM_PREFIX ${CMAKE_INSTALL_PREFIX})
268
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000269configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000270 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000271 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
272 )
273
274configure_file(
Oscar Fuentes118eb572010-08-08 04:17:18 +0000275 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
276 ${LLVM_BINARY_DIR}/include/llvm/Config/llvm-config.h
277 )
278
279configure_file(
Chandler Carruth8b67f772009-10-26 01:35:46 +0000280 ${LLVM_MAIN_INCLUDE_DIR}/llvm/System/DataTypes.h.cmake
281 ${LLVM_BINARY_DIR}/include/llvm/System/DataTypes.h
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000282 )
283