blob: c18ac44172f990dd4ac827093dfa016d3b3c7333 [file] [log] [blame]
Oscar Fuentes00905d52008-09-22 01:08:49 +00001
2# include checks
3include(CheckIncludeFile)
Douglas Gregor5d8931b2009-06-05 23:46:34 +00004check_include_file(alloca.h HAVE_ALLOCA_H)
Oscar Fuentes00905d52008-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 Fuentesab469632008-10-25 03:29:36 +000027check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes00905d52008-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 Gregord1e1dbc2009-05-11 18:05:52 +000030check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes00905d52008-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 Gregor5d8931b2009-06-05 23:46:34 +000038check_include_file(sys/wait.h HAVE_SYS_WAIT_H)
Douglas Gregor6230bee2009-05-18 17:21:34 +000039check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000040check_include_file(unistd.h HAVE_UNISTD_H)
41check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000042check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000043
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000044# library checks
45include(CheckLibraryExists)
46check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
Oscar Fuentes9574c302009-05-23 02:37:24 +000047check_library_exists(dl dlopen "" HAVE_LIBDL)
Oscar Fuentes693fcdb2009-05-06 14:40:37 +000048
Oscar Fuentes00905d52008-09-22 01:08:49 +000049# function checks
50include(CheckSymbolExists)
Douglas Gregord1e1dbc2009-05-11 18:05:52 +000051include(CheckFunctionExists)
Douglas Gregor5d8931b2009-06-05 23:46:34 +000052check_symbol_exists(alloca alloca.h HAVE_ALLOCA)
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)
Oscar Fuentes00905d52008-09-22 01:08:49 +000066check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
Oscar Fuentesab469632008-10-25 03:29:36 +000067check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Oscar Fuentes00905d52008-09-22 01:08:49 +000068
Oscar Fuentesa7374582009-04-04 22:41:07 +000069check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
70if( LLVM_USING_GLIBC )
71 add_llvm_definitions( -D_GNU_SOURCE )
72endif()
73
Oscar Fuentes0a06ee12008-11-20 03:10:17 +000074include(CheckCXXCompilerFlag)
75check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
76
Oscar Fuentes5afe9b42008-10-26 00:47:52 +000077include(GetTargetTriple)
78get_target_triple(LLVM_HOSTTRIPLE)
79message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}")
80
Oscar Fuentes00905d52008-09-22 01:08:49 +000081if( MINGW )
Oscar Fuentes00905d52008-09-22 01:08:49 +000082 set(HAVE_LIBIMAGEHLP 1)
83 set(HAVE_LIBPSAPI 1)
Oscar Fuentes3ae2f202008-10-29 02:33:15 +000084 # TODO: Check existence of libraries.
Oscar Fuentes00905d52008-09-22 01:08:49 +000085 # include(CheckLibraryExists)
86 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
87endif( MINGW )
88
Oscar Fuentesab469632008-10-25 03:29:36 +000089if( MSVC )
90 set(error_t int)
Cédric Venetf9e2eba2009-02-14 16:13:26 +000091 set(mode_t "unsigned short")
Oscar Fuentesab469632008-10-25 03:29:36 +000092 set(LTDL_SHLIBPATH_VAR "PATH")
93 set(LTDL_SYSSEARCHPATH "")
94 set(LTDL_DLOPEN_DEPLIBS 1)
95 set(SHLIBEXT ".lib")
96 set(LTDL_OBJDIR "_libs")
97 set(HAVE_STRTOLL 1)
98 set(strtoll "_strtoi64")
99 set(strtoull "_strtoui64")
100 set(stricmp "_stricmp")
101 set(strdup "_strdup")
102else( MSVC )
103 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
104 set(LTDL_SYSSEARCHPATH "") # TODO
105 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
106endif( MSVC )
107
Oscar Fuentes00905d52008-09-22 01:08:49 +0000108# FIXME: Signal handler return type, currently hardcoded to 'void'
109set(RETSIGTYPE void)
110
Oscar Fuentesaa3b3152008-11-18 23:45:21 +0000111if( LLVM_ENABLE_THREADS )
112 if( HAVE_PTHREAD_H OR WIN32 )
113 set(ENABLE_THREADS 1)
114 endif()
115endif()
116
117if( ENABLE_THREADS )
118 message(STATUS "Threads enabled.")
119else( ENABLE_THREADS )
120 message(STATUS "Threads disabled.")
121endif()
Oscar Fuentes00905d52008-09-22 01:08:49 +0000122
123configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000124 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000125 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
126 )
127
128configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000129 ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/iterator.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000130 ${LLVM_BINARY_DIR}/include/llvm/ADT/iterator.h
131 )
132
133configure_file(
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000134 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Oscar Fuentes00905d52008-09-22 01:08:49 +0000135 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
136 )
137