blob: ca5e0bfe384cb8ae11ee942aad060732e793a711 [file] [log] [blame]
Douglas Gregor0f9678e2009-10-01 17:25:36 +00001include(CheckIncludeFile)
2include(CheckLibraryExists)
3include(CheckSymbolExists)
4include(CheckFunctionExists)
5include(CheckCXXSourceCompiles)
6
7# Helper macros and functions
8macro(add_cxx_include result files)
9 set(${result} "")
10 foreach (file_name ${files})
11 set(${result} "${${result}}#include<${file_name}>\n")
12 endforeach()
13endmacro(add_cxx_include files result)
14
15function(check_type_exists type files variable)
16 add_cxx_include(includes "${files}")
17 CHECK_CXX_SOURCE_COMPILES("
18 ${includes} ${type} typeVar;
19 int main() {
20 return 0;
21 }
22 " ${variable})
23endfunction()
Oscar Fuentes00905d52008-09-22 01:08:49 +000024
25# include checks
Oscar Fuentes00905d52008-09-22 01:08:49 +000026check_include_file(argz.h HAVE_ARGZ_H)
27check_include_file(assert.h HAVE_ASSERT_H)
28check_include_file(dirent.h HAVE_DIRENT_H)
29check_include_file(dl.h HAVE_DL_H)
30check_include_file(dld.h HAVE_DLD_H)
31check_include_file(dlfcn.h HAVE_DLFCN_H)
32check_include_file(errno.h HAVE_ERRNO_H)
33check_include_file(execinfo.h HAVE_EXECINFO_H)
34check_include_file(fcntl.h HAVE_FCNTL_H)
35check_include_file(inttypes.h HAVE_INTTYPES_H)
36check_include_file(limits.h HAVE_LIMITS_H)
37check_include_file(link.h HAVE_LINK_H)
38check_include_file(malloc.h HAVE_MALLOC_H)
39check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H)
40check_include_file(memory.h HAVE_MEMORY_H)
41check_include_file(ndir.h HAVE_NDIR_H)
Oscar Fuentesc389f992009-11-05 18:57:56 +000042if( NOT LLVM_ON_WIN32 )
43 check_include_file(pthread.h HAVE_PTHREAD_H)
44endif()
Oscar Fuentes00905d52008-09-22 01:08:49 +000045check_include_file(setjmp.h HAVE_SETJMP_H)
46check_include_file(signal.h HAVE_SIGNAL_H)
47check_include_file(stdint.h HAVE_STDINT_H)
48check_include_file(stdio.h HAVE_STDIO_H)
49check_include_file(stdlib.h HAVE_STDLIB_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000050check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000051check_include_file(sys/dir.h HAVE_SYS_DIR_H)
52check_include_file(sys/dl.h HAVE_SYS_DL_H)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000053check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000054check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
55check_include_file(sys/ndir.h HAVE_SYS_NDIR_H)
56check_include_file(sys/param.h HAVE_SYS_PARAM_H)
57check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
58check_include_file(sys/stat.h HAVE_SYS_STAT_H)
59check_include_file(sys/time.h HAVE_SYS_TIME_H)
60check_include_file(sys/types.h HAVE_SYS_TYPES_H)
Douglas Gregor5d8931b2009-06-05 23:46:34 +000061check_include_file(sys/wait.h HAVE_SYS_WAIT_H)
Douglas Gregor6230bee2009-05-18 17:21:34 +000062check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000063check_include_file(unistd.h HAVE_UNISTD_H)
64check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000065check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000066
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000067# library checks
Oscar Fuentesc389f992009-11-05 18:57:56 +000068if( NOT LLVM_ON_WIN32 )
69 check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
70 check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
71 check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
72 check_library_exists(dl dlopen "" HAVE_LIBDL)
73endif()
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000074
Oscar Fuentes00905d52008-09-22 01:08:49 +000075# function checks
Oscar Fuentes00905d52008-09-22 01:08:49 +000076check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
77check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
78check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000079check_function_exists(isatty HAVE_ISATTY)
Oscar Fuentes00905d52008-09-22 01:08:49 +000080check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
81check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
Edward O'Callaghan84354c72009-10-12 04:00:11 +000082check_symbol_exists(finite ieeefp.h HAVE_FINITE_IN_IEEEFP_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000083check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
84check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000085check_symbol_exists(ceilf math.h HAVE_CEILF)
86check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentes00905d52008-09-22 01:08:49 +000087check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
Douglas Gregor97cf1a82009-06-04 17:22:52 +000088check_symbol_exists(malloc_zone_statistics malloc/malloc.h
89 HAVE_MALLOC_ZONE_STATISTICS)
Benjamin Kramer5220b2d2009-10-28 18:37:31 +000090check_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP)
91check_symbol_exists(mkstemp "stdlib.h;unistd.h" HAVE_MKSTEMP)
92check_symbol_exists(mktemp "stdlib.h;unistd.h" HAVE_MKTEMP)
Oscar Fuentesc389f992009-11-05 18:57:56 +000093if( NOT LLVM_ON_WIN32 )
94 check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
95endif()
Edward O'Callaghan4b1adaa2009-10-05 23:05:32 +000096check_symbol_exists(sbrk unistd.h HAVE_SBRK)
Oscar Fuentesab469632008-10-25 03:29:36 +000097check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Jeffrey Yasskin6f4c7052009-07-01 18:11:20 +000098check_symbol_exists(strerror string.h HAVE_STRERROR)
99check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)
100check_symbol_exists(strerror_s string.h HAVE_STRERROR_S)
Jeffrey Yasskin41a338b2009-09-25 21:07:20 +0000101check_symbol_exists(setenv stdlib.h HAVE_SETENV)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000102
Oscar Fuentesa7374582009-04-04 22:41:07 +0000103check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
104if( LLVM_USING_GLIBC )
105 add_llvm_definitions( -D_GNU_SOURCE )
106endif()
107
Douglas Gregor0f9678e2009-10-01 17:25:36 +0000108# Type checks
109check_type_exists(std::bidirectional_iterator<int,int> "iterator;iostream" HAVE_BI_ITERATOR)
110check_type_exists(std::iterator<int,int,int> iterator HAVE_STD_ITERATOR)
111check_type_exists(std::forward_iterator<int,int> iterator HAVE_FWD_ITERATOR)
112
113set(headers "")
114if (HAVE_SYS_TYPES_H)
115 set(headers ${headers} "sys/types.h")
116endif()
117
118if (HAVE_INTTYPES_H)
119 set(headers ${headers} "inttypes.h")
120endif()
121
122if (HAVE_STDINT_H)
123 set(headers ${headers} "stdint.h")
124endif()
125
126check_type_exists(uint64_t "${headers}" HAVE_UINT64_T)
127check_type_exists(u_int64_t "${headers}" HAVE_U_INT64_T)
128
Oscar Fuentes355b2a32009-11-05 19:03:26 +0000129# available programs checks
Oscar Fuentes5b35c972009-11-09 15:26:40 +0000130function(llvm_find_program name)
131 string(TOUPPER ${name} NAME)
132 find_program(LLVM_PATH_${NAME} ${name})
133 mark_as_advanced(LLVM_PATH_${NAME})
134 if(LLVM_PATH_${NAME})
135 set(HAVE_${NAME} 1 CACHE INTERNAL "Is ${name} available ?")
136 mark_as_advanced(HAVE_${NAME})
137 else(LLVM_PATH_${NAME})
138 set(HAVE_${NAME} "" CACHE INTERNAL "Is ${name} available ?")
139 unset(LLVM_PATH_${NAME} CACHE)
140 endif(LLVM_PATH_${NAME})
141endfunction()
142
143llvm_find_program(gv)
144llvm_find_program(circo)
145llvm_find_program(twopi)
146llvm_find_program(neato)
147llvm_find_program(fdp)
148llvm_find_program(dot)
149llvm_find_program(dotty)
Oscar Fuentes355b2a32009-11-05 19:03:26 +0000150
Xerxes Ranbycdcf9792009-07-17 19:22:41 +0000151# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
152include(CheckAtomic)
153
Oscar Fuentes0a06ee12008-11-20 03:10:17 +0000154include(CheckCXXCompilerFlag)
Oscar Fuentes644cdc32009-08-26 17:05:06 +0000155# On windows all code is position-independent and mingw warns if -fPIC
156# is in the command-line.
157if( NOT WIN32 )
158 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
159endif()
Oscar Fuentes0a06ee12008-11-20 03:10:17 +0000160
Oscar Fuentes5afe9b42008-10-26 00:47:52 +0000161include(GetTargetTriple)
162get_target_triple(LLVM_HOSTTRIPLE)
Oscar Fuentes5afe9b42008-10-26 00:47:52 +0000163
Daniel Dunbarb38d0a02009-11-07 23:52:20 +0000164# FIXME: We don't distinguish the target and the host. :(
165set(TARGET_TRIPLE "${LLVM_HOSTTRIPLE}")
166
Douglas Gregord061a392009-06-17 17:01:56 +0000167# Determine the native architecture.
Oscar Fuentes453222b2009-09-13 22:18:38 +0000168string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH)
169if( LLVM_NATIVE_ARCH STREQUAL "host" )
170 string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOSTTRIPLE})
171endif ()
172
Douglas Gregord061a392009-06-17 17:01:56 +0000173if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
174 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentes453222b2009-09-13 22:18:38 +0000175elseif (LLVM_NATIVE_ARCH STREQUAL "x86")
Douglas Gregord061a392009-06-17 17:01:56 +0000176 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentes453222b2009-09-13 22:18:38 +0000177elseif (LLVM_NATIVE_ARCH STREQUAL "amd64")
178 set(LLVM_NATIVE_ARCH X86)
179elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64")
Douglas Gregord061a392009-06-17 17:01:56 +0000180 set(LLVM_NATIVE_ARCH X86)
181elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
182 set(LLVM_NATIVE_ARCH Sparc)
183elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
184 set(LLVM_NATIVE_ARCH PowerPC)
185elseif (LLVM_NATIVE_ARCH MATCHES "alpha")
186 set(LLVM_NATIVE_ARCH Alpha)
Douglas Gregord061a392009-06-17 17:01:56 +0000187elseif (LLVM_NATIVE_ARCH MATCHES "arm")
188 set(LLVM_NATIVE_ARCH ARM)
189elseif (LLVM_NATIVE_ARCH MATCHES "mips")
190 set(LLVM_NATIVE_ARCH Mips)
191elseif (LLVM_NATIVE_ARCH MATCHES "pic16")
192 set(LLVM_NATIVE_ARCH "PIC16")
193elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
194 set(LLVM_NATIVE_ARCH XCore)
195elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
196 set(LLVM_NATIVE_ARCH MSP430)
197else ()
198 message(STATUS
199 "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code")
200 set(LLVM_NATIVE_ARCH)
201endif ()
202
203if (LLVM_NATIVE_ARCH)
204 list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
205 if (NATIVE_ARCH_IDX EQUAL -1)
206 message(STATUS
207 "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
208 set(LLVM_NATIVE_ARCH)
209 else ()
210 message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}")
211 endif ()
212endif()
213
Oscar Fuentes00905d52008-09-22 01:08:49 +0000214if( MINGW )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000215 set(HAVE_LIBIMAGEHLP 1)
216 set(HAVE_LIBPSAPI 1)
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000217 # TODO: Check existence of libraries.
Oscar Fuentes00905d52008-09-22 01:08:49 +0000218 # include(CheckLibraryExists)
219 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
220endif( MINGW )
221
Oscar Fuentesab469632008-10-25 03:29:36 +0000222if( MSVC )
223 set(error_t int)
Cédric Venetf9e2eba2009-02-14 16:13:26 +0000224 set(mode_t "unsigned short")
Oscar Fuentesab469632008-10-25 03:29:36 +0000225 set(LTDL_SHLIBPATH_VAR "PATH")
226 set(LTDL_SYSSEARCHPATH "")
227 set(LTDL_DLOPEN_DEPLIBS 1)
228 set(SHLIBEXT ".lib")
229 set(LTDL_OBJDIR "_libs")
230 set(HAVE_STRTOLL 1)
231 set(strtoll "_strtoi64")
232 set(strtoull "_strtoui64")
233 set(stricmp "_stricmp")
234 set(strdup "_strdup")
235else( MSVC )
236 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
237 set(LTDL_SYSSEARCHPATH "") # TODO
238 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
239endif( MSVC )
240
Oscar Fuentes00905d52008-09-22 01:08:49 +0000241# FIXME: Signal handler return type, currently hardcoded to 'void'
242set(RETSIGTYPE void)
243
Oscar Fuentesaa3b3152008-11-18 23:45:21 +0000244if( LLVM_ENABLE_THREADS )
245 if( HAVE_PTHREAD_H OR WIN32 )
246 set(ENABLE_THREADS 1)
247 endif()
248endif()
249
250if( ENABLE_THREADS )
251 message(STATUS "Threads enabled.")
252else( ENABLE_THREADS )
253 message(STATUS "Threads disabled.")
254endif()
Oscar Fuentes00905d52008-09-22 01:08:49 +0000255
256configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000257 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000258 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
259 )
260
261configure_file(
Chandler Carruth1ec7df12009-10-26 01:35:46 +0000262 ${LLVM_MAIN_INCLUDE_DIR}/llvm/System/DataTypes.h.cmake
263 ${LLVM_BINARY_DIR}/include/llvm/System/DataTypes.h
Oscar Fuentes00905d52008-09-22 01:08:49 +0000264 )
265