blob: c52b70bfb82bdb0dd35ab89e1fd014a266c2d932 [file] [log] [blame]
Oscar Fuentes3d01fc72008-09-22 01:08:49 +00001
2# include checks
3include(CheckIncludeFile)
Douglas Gregor318de602009-06-05 23:46:34 +00004check_include_file(alloca.h HAVE_ALLOCA_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +00005check_include_file(argz.h HAVE_ARGZ_H)
6check_include_file(assert.h HAVE_ASSERT_H)
7check_include_file(dirent.h HAVE_DIRENT_H)
8check_include_file(dl.h HAVE_DL_H)
9check_include_file(dld.h HAVE_DLD_H)
10check_include_file(dlfcn.h HAVE_DLFCN_H)
11check_include_file(errno.h HAVE_ERRNO_H)
12check_include_file(execinfo.h HAVE_EXECINFO_H)
13check_include_file(fcntl.h HAVE_FCNTL_H)
14check_include_file(inttypes.h HAVE_INTTYPES_H)
15check_include_file(limits.h HAVE_LIMITS_H)
16check_include_file(link.h HAVE_LINK_H)
17check_include_file(malloc.h HAVE_MALLOC_H)
18check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H)
19check_include_file(memory.h HAVE_MEMORY_H)
20check_include_file(ndir.h HAVE_NDIR_H)
21check_include_file(pthread.h HAVE_PTHREAD_H)
22check_include_file(setjmp.h HAVE_SETJMP_H)
23check_include_file(signal.h HAVE_SIGNAL_H)
24check_include_file(stdint.h HAVE_STDINT_H)
25check_include_file(stdio.h HAVE_STDIO_H)
26check_include_file(stdlib.h HAVE_STDLIB_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000027check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000028check_include_file(sys/dir.h HAVE_SYS_DIR_H)
29check_include_file(sys/dl.h HAVE_SYS_DL_H)
Douglas Gregor01746742009-05-11 18:05:52 +000030check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000031check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
32check_include_file(sys/ndir.h HAVE_SYS_NDIR_H)
33check_include_file(sys/param.h HAVE_SYS_PARAM_H)
34check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
35check_include_file(sys/stat.h HAVE_SYS_STAT_H)
36check_include_file(sys/time.h HAVE_SYS_TIME_H)
37check_include_file(sys/types.h HAVE_SYS_TYPES_H)
Douglas Gregor318de602009-06-05 23:46:34 +000038check_include_file(sys/wait.h HAVE_SYS_WAIT_H)
Douglas Gregor071d73d2009-05-18 17:21:34 +000039check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000040check_include_file(unistd.h HAVE_UNISTD_H)
41check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000042check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000043
Oscar Fuentesd413c012009-05-06 14:40:37 +000044# library checks
45include(CheckLibraryExists)
46check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
Douglas Gregor48715a12009-06-29 16:25:22 +000047check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
48check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
Oscar Fuentesdb917fe2009-05-23 02:37:24 +000049check_library_exists(dl dlopen "" HAVE_LIBDL)
Oscar Fuentesd413c012009-05-06 14:40:37 +000050
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000051# function checks
52include(CheckSymbolExists)
Douglas Gregor01746742009-05-11 18:05:52 +000053include(CheckFunctionExists)
Douglas Gregor318de602009-06-05 23:46:34 +000054check_symbol_exists(alloca alloca.h HAVE_ALLOCA)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000055check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
56check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
57check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
Douglas Gregor01746742009-05-11 18:05:52 +000058check_function_exists(isatty HAVE_ISATTY)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000059check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
60check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
61check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
62check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000063check_symbol_exists(ceilf math.h HAVE_CEILF)
64check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000065check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
Douglas Gregoref23d712009-06-04 17:22:52 +000066check_symbol_exists(malloc_zone_statistics malloc/malloc.h
67 HAVE_MALLOC_ZONE_STATISTICS)
Douglas Gregora4e38792009-07-27 18:23:41 +000068check_symbol_exists(mkdtemp unistd.h HAVE_MKDTEMP)
69check_symbol_exists(mkstemp unistd.h HAVE_MKSTEMP)
70check_symbol_exists(mktemp unistd.h HAVE_MKTEMP)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000071check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
Oscar Fuentesde98db32008-10-25 03:29:36 +000072check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Jeffrey Yasskined1c0ff2009-07-01 18:11:20 +000073check_symbol_exists(strerror string.h HAVE_STRERROR)
74check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)
75check_symbol_exists(strerror_s string.h HAVE_STRERROR_S)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000076
Oscar Fuentes9a0107d2009-04-04 22:41:07 +000077check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
78if( LLVM_USING_GLIBC )
79 add_llvm_definitions( -D_GNU_SOURCE )
80endif()
81
Xerxes Ranby6215c622009-07-17 19:22:41 +000082# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
83include(CheckAtomic)
84
Oscar Fuentes148d2452008-11-20 03:10:17 +000085include(CheckCXXCompilerFlag)
86check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
87
Oscar Fuentes579e43a2008-10-26 00:47:52 +000088include(GetTargetTriple)
89get_target_triple(LLVM_HOSTTRIPLE)
90message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}")
91
Douglas Gregore9d683b2009-06-17 17:01:56 +000092# Determine the native architecture.
93# FIXME: this will have to change for cross-compiling.
94string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOSTTRIPLE})
95if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
96 set(LLVM_NATIVE_ARCH X86)
97elseif (LLVM_NATIVE_ARCH STREQUAL amd64)
98 set(LLVM_NATIVE_ARCH X86)
99elseif (LLVM_NATIVE_ARCH STREQUAL x86_64)
100 set(LLVM_NATIVE_ARCH X86)
101elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
102 set(LLVM_NATIVE_ARCH Sparc)
103elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
104 set(LLVM_NATIVE_ARCH PowerPC)
105elseif (LLVM_NATIVE_ARCH MATCHES "alpha")
106 set(LLVM_NATIVE_ARCH Alpha)
Douglas Gregore9d683b2009-06-17 17:01:56 +0000107elseif (LLVM_NATIVE_ARCH MATCHES "arm")
108 set(LLVM_NATIVE_ARCH ARM)
109elseif (LLVM_NATIVE_ARCH MATCHES "mips")
110 set(LLVM_NATIVE_ARCH Mips)
111elseif (LLVM_NATIVE_ARCH MATCHES "pic16")
112 set(LLVM_NATIVE_ARCH "PIC16")
113elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
114 set(LLVM_NATIVE_ARCH XCore)
115elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
116 set(LLVM_NATIVE_ARCH MSP430)
117else ()
118 message(STATUS
119 "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code")
120 set(LLVM_NATIVE_ARCH)
121endif ()
122
123if (LLVM_NATIVE_ARCH)
124 list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
125 if (NATIVE_ARCH_IDX EQUAL -1)
126 message(STATUS
127 "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
128 set(LLVM_NATIVE_ARCH)
129 else ()
130 message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}")
131 endif ()
132endif()
133
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000134if( MINGW )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000135 set(HAVE_LIBIMAGEHLP 1)
136 set(HAVE_LIBPSAPI 1)
Oscar Fuentes980e8422008-10-29 02:33:15 +0000137 # TODO: Check existence of libraries.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000138 # include(CheckLibraryExists)
139 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
140endif( MINGW )
141
Oscar Fuentesde98db32008-10-25 03:29:36 +0000142if( MSVC )
143 set(error_t int)
Cedric Venet07b9d692009-02-14 16:13:26 +0000144 set(mode_t "unsigned short")
Oscar Fuentesde98db32008-10-25 03:29:36 +0000145 set(LTDL_SHLIBPATH_VAR "PATH")
146 set(LTDL_SYSSEARCHPATH "")
147 set(LTDL_DLOPEN_DEPLIBS 1)
148 set(SHLIBEXT ".lib")
149 set(LTDL_OBJDIR "_libs")
150 set(HAVE_STRTOLL 1)
151 set(strtoll "_strtoi64")
152 set(strtoull "_strtoui64")
153 set(stricmp "_stricmp")
154 set(strdup "_strdup")
155else( MSVC )
156 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
157 set(LTDL_SYSSEARCHPATH "") # TODO
158 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
159endif( MSVC )
160
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000161# FIXME: Signal handler return type, currently hardcoded to 'void'
162set(RETSIGTYPE void)
163
Oscar Fuentes4b442832008-11-18 23:45:21 +0000164if( LLVM_ENABLE_THREADS )
165 if( HAVE_PTHREAD_H OR WIN32 )
166 set(ENABLE_THREADS 1)
167 endif()
168endif()
169
170if( ENABLE_THREADS )
171 message(STATUS "Threads enabled.")
172else( ENABLE_THREADS )
173 message(STATUS "Threads disabled.")
174endif()
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000175
176configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000177 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000178 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
179 )
180
181configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000182 ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/iterator.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000183 ${LLVM_BINARY_DIR}/include/llvm/ADT/iterator.h
184 )
185
186configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000187 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000188 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
189 )
190