blob: 0c903a190292c883cf1af9cef13e6672cfeed1fd [file] [log] [blame]
Oscar Fuentes3d01fc72008-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 Fuentesde98db32008-10-25 03:29:36 +000026check_include_file(string.h HAVE_STRING_H)
Oscar Fuentes3d01fc72008-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 Gregor01746742009-05-11 18:05:52 +000029check_include_file(sys/ioctl.h HAVE_SYS_IOCTL_H)
Oscar Fuentes3d01fc72008-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 Gregor071d73d2009-05-18 17:21:34 +000037check_include_file(termios.h HAVE_TERMIOS_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000038check_include_file(unistd.h HAVE_UNISTD_H)
39check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000040check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000041
Oscar Fuentesd413c012009-05-06 14:40:37 +000042# library checks
43include(CheckLibraryExists)
44check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
Oscar Fuentesdb917fe2009-05-23 02:37:24 +000045check_library_exists(dl dlopen "" HAVE_LIBDL)
Oscar Fuentesd413c012009-05-06 14:40:37 +000046
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000047# function checks
48include(CheckSymbolExists)
Douglas Gregor01746742009-05-11 18:05:52 +000049include(CheckFunctionExists)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000050check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
51check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
52check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
Douglas Gregor01746742009-05-11 18:05:52 +000053check_function_exists(isatty HAVE_ISATTY)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000054check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
55check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
56check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
57check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesde98db32008-10-25 03:29:36 +000058check_symbol_exists(ceilf math.h HAVE_CEILF)
59check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000060check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
61check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
Oscar Fuentesde98db32008-10-25 03:29:36 +000062check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000063
Oscar Fuentes9a0107d2009-04-04 22:41:07 +000064check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC)
65if( LLVM_USING_GLIBC )
66 add_llvm_definitions( -D_GNU_SOURCE )
67endif()
68
Oscar Fuentes148d2452008-11-20 03:10:17 +000069include(CheckCXXCompilerFlag)
70check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
71
Oscar Fuentes579e43a2008-10-26 00:47:52 +000072include(GetTargetTriple)
73get_target_triple(LLVM_HOSTTRIPLE)
74message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}")
75
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000076if( MINGW )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000077 set(HAVE_LIBIMAGEHLP 1)
78 set(HAVE_LIBPSAPI 1)
Oscar Fuentes980e8422008-10-29 02:33:15 +000079 # TODO: Check existence of libraries.
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000080 # include(CheckLibraryExists)
81 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
82endif( MINGW )
83
Oscar Fuentesde98db32008-10-25 03:29:36 +000084if( MSVC )
85 set(error_t int)
Cedric Venet07b9d692009-02-14 16:13:26 +000086 set(mode_t "unsigned short")
Oscar Fuentesde98db32008-10-25 03:29:36 +000087 set(LTDL_SHLIBPATH_VAR "PATH")
88 set(LTDL_SYSSEARCHPATH "")
89 set(LTDL_DLOPEN_DEPLIBS 1)
90 set(SHLIBEXT ".lib")
91 set(LTDL_OBJDIR "_libs")
92 set(HAVE_STRTOLL 1)
93 set(strtoll "_strtoi64")
94 set(strtoull "_strtoui64")
95 set(stricmp "_stricmp")
96 set(strdup "_strdup")
97else( MSVC )
98 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
99 set(LTDL_SYSSEARCHPATH "") # TODO
100 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
101endif( MSVC )
102
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000103# FIXME: Signal handler return type, currently hardcoded to 'void'
104set(RETSIGTYPE void)
105
Oscar Fuentes4b442832008-11-18 23:45:21 +0000106if( LLVM_ENABLE_THREADS )
107 if( HAVE_PTHREAD_H OR WIN32 )
108 set(ENABLE_THREADS 1)
109 endif()
110endif()
111
112if( ENABLE_THREADS )
113 message(STATUS "Threads enabled.")
114else( ENABLE_THREADS )
115 message(STATUS "Threads disabled.")
116endif()
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000117
118configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000119 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000120 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
121 )
122
123configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000124 ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/iterator.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000125 ${LLVM_BINARY_DIR}/include/llvm/ADT/iterator.h
126 )
127
128configure_file(
Oscar Fuentes980e8422008-10-29 02:33:15 +0000129 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000130 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
131 )
132