blob: a33e5d9de43b43499848582563e8125957cbfbcc [file] [log] [blame]
Oscar Fuentes00905d52008-09-22 01:08:49 +00001
2# include checks
3include(CheckIncludeFile)
4check_include_file(argz.h HAVE_ARGZ_H)
5check_include_file(assert.h HAVE_ASSERT_H)
6check_include_file(dirent.h HAVE_DIRENT_H)
7check_include_file(dl.h HAVE_DL_H)
8check_include_file(dld.h HAVE_DLD_H)
9check_include_file(dlfcn.h HAVE_DLFCN_H)
10check_include_file(errno.h HAVE_ERRNO_H)
11check_include_file(execinfo.h HAVE_EXECINFO_H)
12check_include_file(fcntl.h HAVE_FCNTL_H)
13check_include_file(inttypes.h HAVE_INTTYPES_H)
14check_include_file(limits.h HAVE_LIMITS_H)
15check_include_file(link.h HAVE_LINK_H)
16check_include_file(malloc.h HAVE_MALLOC_H)
17check_include_file(malloc/malloc.h HAVE_MALLOC_MALLOC_H)
18check_include_file(memory.h HAVE_MEMORY_H)
19check_include_file(ndir.h HAVE_NDIR_H)
20check_include_file(pthread.h HAVE_PTHREAD_H)
21check_include_file(setjmp.h HAVE_SETJMP_H)
22check_include_file(signal.h HAVE_SIGNAL_H)
23check_include_file(stdint.h HAVE_STDINT_H)
24check_include_file(stdio.h HAVE_STDIO_H)
25check_include_file(stdlib.h HAVE_STDLIB_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000026check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000027check_include_file(sys/dir.h HAVE_SYS_DIR_H)
28check_include_file(sys/dl.h HAVE_SYS_DL_H)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000029check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000030check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
31check_include_file(sys/ndir.h HAVE_SYS_NDIR_H)
32check_include_file(sys/param.h HAVE_SYS_PARAM_H)
33check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
34check_include_file(sys/stat.h HAVE_SYS_STAT_H)
35check_include_file(sys/time.h HAVE_SYS_TIME_H)
36check_include_file(sys/types.h HAVE_SYS_TYPES_H)
Douglas Gregor5d8931b2009-06-05 23:46:34 +000037check_include_file(sys/wait.h HAVE_SYS_WAIT_H)
Douglas Gregor6230bee2009-05-18 17:21:34 +000038check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000039check_include_file(unistd.h HAVE_UNISTD_H)
40check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000041check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000042
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000043# library checks
44include(CheckLibraryExists)
45check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
Douglas Gregorf4d84692009-06-29 16:25:22 +000046check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
47check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
Oscar Fuentes9574c302009-05-23 02:37:24 +000048check_library_exists(dl dlopen "" HAVE_LIBDL)
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000049
Oscar Fuentes00905d52008-09-22 01:08:49 +000050# function checks
51include(CheckSymbolExists)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000052include(CheckFunctionExists)
Oscar Fuentes00905d52008-09-22 01:08:49 +000053check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
54check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
55check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000056check_function_exists(isatty HAVE_ISATTY)
Oscar Fuentes00905d52008-09-22 01:08:49 +000057check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
58check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
59check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
60check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000061check_symbol_exists(ceilf math.h HAVE_CEILF)
62check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentes00905d52008-09-22 01:08:49 +000063check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
Douglas Gregor97cf1a82009-06-04 17:22:52 +000064check_symbol_exists(malloc_zone_statistics malloc/malloc.h
65 HAVE_MALLOC_ZONE_STATISTICS)
Douglas Gregord61302a2009-07-27 18:23:41 +000066check_symbol_exists(mkdtemp unistd.h HAVE_MKDTEMP)
67check_symbol_exists(mkstemp unistd.h HAVE_MKSTEMP)
68check_symbol_exists(mktemp unistd.h HAVE_MKTEMP)
Oscar Fuentes00905d52008-09-22 01:08:49 +000069check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
Oscar Fuentesab469632008-10-25 03:29:36 +000070check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Jeffrey Yasskin6f4c7052009-07-01 18:11:20 +000071check_symbol_exists(strerror string.h HAVE_STRERROR)
72check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)
73check_symbol_exists(strerror_s string.h HAVE_STRERROR_S)
Jeffrey Yasskin41a338b2009-09-25 21:07:20 +000074check_symbol_exists(setenv stdlib.h HAVE_SETENV)
Oscar Fuentes00905d52008-09-22 01:08:49 +000075
Oscar Fuentesa7374582009-04-04 22:41:07 +000076check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
77if( LLVM_USING_GLIBC )
78 add_llvm_definitions( -D_GNU_SOURCE )
79endif()
80
Xerxes Ranbycdcf9792009-07-17 19:22:41 +000081# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
82include(CheckAtomic)
83
Oscar Fuentes0a06ee12008-11-20 03:10:17 +000084include(CheckCXXCompilerFlag)
Oscar Fuentes644cdc32009-08-26 17:05:06 +000085# On windows all code is position-independent and mingw warns if -fPIC
86# is in the command-line.
87if( NOT WIN32 )
88 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
89endif()
Oscar Fuentes0a06ee12008-11-20 03:10:17 +000090
Oscar Fuentes5afe9b42008-10-26 00:47:52 +000091include(GetTargetTriple)
92get_target_triple(LLVM_HOSTTRIPLE)
93message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}")
94
Douglas Gregord061a392009-06-17 17:01:56 +000095# Determine the native architecture.
Oscar Fuentes453222b2009-09-13 22:18:38 +000096string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH)
97if( LLVM_NATIVE_ARCH STREQUAL "host" )
98 string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOSTTRIPLE})
99endif ()
100
Douglas Gregord061a392009-06-17 17:01:56 +0000101if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
102 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentes453222b2009-09-13 22:18:38 +0000103elseif (LLVM_NATIVE_ARCH STREQUAL "x86")
Douglas Gregord061a392009-06-17 17:01:56 +0000104 set(LLVM_NATIVE_ARCH X86)
Oscar Fuentes453222b2009-09-13 22:18:38 +0000105elseif (LLVM_NATIVE_ARCH STREQUAL "amd64")
106 set(LLVM_NATIVE_ARCH X86)
107elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64")
Douglas Gregord061a392009-06-17 17:01:56 +0000108 set(LLVM_NATIVE_ARCH X86)
109elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
110 set(LLVM_NATIVE_ARCH Sparc)
111elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
112 set(LLVM_NATIVE_ARCH PowerPC)
113elseif (LLVM_NATIVE_ARCH MATCHES "alpha")
114 set(LLVM_NATIVE_ARCH Alpha)
Douglas Gregord061a392009-06-17 17:01:56 +0000115elseif (LLVM_NATIVE_ARCH MATCHES "arm")
116 set(LLVM_NATIVE_ARCH ARM)
117elseif (LLVM_NATIVE_ARCH MATCHES "mips")
118 set(LLVM_NATIVE_ARCH Mips)
119elseif (LLVM_NATIVE_ARCH MATCHES "pic16")
120 set(LLVM_NATIVE_ARCH "PIC16")
121elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
122 set(LLVM_NATIVE_ARCH XCore)
123elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
124 set(LLVM_NATIVE_ARCH MSP430)
125else ()
126 message(STATUS
127 "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code")
128 set(LLVM_NATIVE_ARCH)
129endif ()
130
131if (LLVM_NATIVE_ARCH)
132 list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
133 if (NATIVE_ARCH_IDX EQUAL -1)
134 message(STATUS
135 "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
136 set(LLVM_NATIVE_ARCH)
137 else ()
138 message(STATUS "Native target architecture is ${LLVM_NATIVE_ARCH}")
139 endif ()
140endif()
141
Oscar Fuentes00905d52008-09-22 01:08:49 +0000142if( MINGW )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000143 set(HAVE_LIBIMAGEHLP 1)
144 set(HAVE_LIBPSAPI 1)
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000145 # TODO: Check existence of libraries.
Oscar Fuentes00905d52008-09-22 01:08:49 +0000146 # include(CheckLibraryExists)
147 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
148endif( MINGW )
149
Oscar Fuentesab469632008-10-25 03:29:36 +0000150if( MSVC )
151 set(error_t int)
Cédric Venetf9e2eba2009-02-14 16:13:26 +0000152 set(mode_t "unsigned short")
Oscar Fuentesab469632008-10-25 03:29:36 +0000153 set(LTDL_SHLIBPATH_VAR "PATH")
154 set(LTDL_SYSSEARCHPATH "")
155 set(LTDL_DLOPEN_DEPLIBS 1)
156 set(SHLIBEXT ".lib")
157 set(LTDL_OBJDIR "_libs")
158 set(HAVE_STRTOLL 1)
159 set(strtoll "_strtoi64")
160 set(strtoull "_strtoui64")
161 set(stricmp "_stricmp")
162 set(strdup "_strdup")
163else( MSVC )
164 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
165 set(LTDL_SYSSEARCHPATH "") # TODO
166 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
167endif( MSVC )
168
Oscar Fuentes00905d52008-09-22 01:08:49 +0000169# FIXME: Signal handler return type, currently hardcoded to 'void'
170set(RETSIGTYPE void)
171
Oscar Fuentesaa3b3152008-11-18 23:45:21 +0000172if( LLVM_ENABLE_THREADS )
173 if( HAVE_PTHREAD_H OR WIN32 )
174 set(ENABLE_THREADS 1)
175 endif()
176endif()
177
178if( ENABLE_THREADS )
179 message(STATUS "Threads enabled.")
180else( ENABLE_THREADS )
181 message(STATUS "Threads disabled.")
182endif()
Oscar Fuentes00905d52008-09-22 01:08:49 +0000183
184configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000185 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000186 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
187 )
188
189configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000190 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000191 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
192 )
193