blob: 58db002d79cd82209ae9e92e2072e5593f6a54ed [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)
29check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
30check_include_file(sys/ndir.h HAVE_SYS_NDIR_H)
31check_include_file(sys/param.h HAVE_SYS_PARAM_H)
32check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H)
33check_include_file(sys/stat.h HAVE_SYS_STAT_H)
34check_include_file(sys/time.h HAVE_SYS_TIME_H)
35check_include_file(sys/types.h HAVE_SYS_TYPES_H)
36check_include_file(unistd.h HAVE_UNISTD_H)
37check_include_file(utime.h HAVE_UTIME_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000038check_include_file(windows.h HAVE_WINDOWS_H)
Oscar Fuentes00905d52008-09-22 01:08:49 +000039
40# function checks
41include(CheckSymbolExists)
42check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
43check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
44check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
45check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
46check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
47check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
48check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
Oscar Fuentesab469632008-10-25 03:29:36 +000049check_symbol_exists(ceilf math.h HAVE_CEILF)
50check_symbol_exists(floorf math.h HAVE_FLOORF)
Oscar Fuentes00905d52008-09-22 01:08:49 +000051check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
52check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
Oscar Fuentesab469632008-10-25 03:29:36 +000053check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
Oscar Fuentes00905d52008-09-22 01:08:49 +000054
55if( MINGW )
56 # tbi: Comprobar que existen las librerias:
57 set(HAVE_LIBIMAGEHLP 1)
58 set(HAVE_LIBPSAPI 1)
59 # include(CheckLibraryExists)
60 # CHECK_LIBRARY_EXISTS(imagehlp ??? . HAVE_LIBIMAGEHLP)
61endif( MINGW )
62
Oscar Fuentesab469632008-10-25 03:29:36 +000063if( MSVC )
64 set(error_t int)
65 set(LTDL_SHLIBPATH_VAR "PATH")
66 set(LTDL_SYSSEARCHPATH "")
67 set(LTDL_DLOPEN_DEPLIBS 1)
68 set(SHLIBEXT ".lib")
69 set(LTDL_OBJDIR "_libs")
70 set(HAVE_STRTOLL 1)
71 set(strtoll "_strtoi64")
72 set(strtoull "_strtoui64")
73 set(stricmp "_stricmp")
74 set(strdup "_strdup")
75else( MSVC )
76 set(LTDL_SHLIBPATH_VAR "LD_LIBRARY_PATH")
77 set(LTDL_SYSSEARCHPATH "") # TODO
78 set(LTDL_DLOPEN_DEPLIBS 0) # TODO
79endif( MSVC )
80
81if( NOT MSVC )
82 # hash_map.h.in and hash_set.h.in contain a special case for MSVC
83 include(CheckCxxHashmap)
84 include(CheckCxxHashset)
85 check_hashmap()
86 check_hashset()
87endif( NOT MSVC )
Oscar Fuentes00905d52008-09-22 01:08:49 +000088
89# FIXME: Signal handler return type, currently hardcoded to 'void'
90set(RETSIGTYPE void)
91
92# Disable multithreading for now
93set(ENABLE_THREADS 0)
94
95configure_file(
96 ${LLVM_MAIN_INCLUDE_DIR}/Config/config.h.cmake
97 ${LLVM_BINARY_DIR}/include/llvm/Config/config.h
98 )
99
100configure_file(
101 ${LLVM_MAIN_INCLUDE_DIR}/ADT/iterator.cmake
102 ${LLVM_BINARY_DIR}/include/llvm/ADT/iterator.h
103 )
104
105configure_file(
106 ${LLVM_MAIN_INCLUDE_DIR}/Support/DataTypes.h.cmake
107 ${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
108 )
109
110configure_file(
111 ${LLVM_MAIN_INCLUDE_DIR}/ADT/hash_map.cmake
112 ${LLVM_BINARY_DIR}/include/llvm/ADT/hash_map.h
113 )
114
115configure_file(
116 ${LLVM_MAIN_INCLUDE_DIR}/ADT/hash_set.cmake
117 ${LLVM_BINARY_DIR}/include/llvm/ADT/hash_set.h
118 )