]> git.lyx.org Git - lyx.git/blob - development/cmake/ConfigureChecks.cmake
Use std::regex automatically in C++11 mode
[lyx.git] / development / cmake / ConfigureChecks.cmake
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 include(CheckIncludeFile)
8 include(CheckIncludeFileCXX)
9 include(CheckIncludeFiles)
10 include(CheckSymbolExists)
11 include(CheckFunctionExists)
12 include(CheckLibraryExists)
13 include(CheckTypeSize)
14 include(CheckCXXSourceCompiles)
15 include(MacroBoolTo01)
16 include(TestBigEndian)
17
18 test_big_endian(WORDS_BIGENDIAN)
19
20 #check_include_file_cxx(istream HAVE_ISTREAM)
21 #check_include_file_cxx(ostream HAVE_OSTREAM)
22 #check_include_file_cxx(sstream HAVE_SSTREAM)
23 #check_include_file_cxx(ios HAVE_IOS)
24 #check_include_file_cxx(locale HAVE_LOCALE)
25
26 # defines will be written to configIncludes.h
27 set(Include_Defines)
28 foreach(_h_file aspell.h aspell/aspell.h limits.h locale.h
29         stdlib.h sys/stat.h sys/time.h sys/types.h sys/utime.h
30         sys/socket.h unistd.h inttypes.h utime.h string.h argz.h)
31         string(REGEX REPLACE "[/\\.]" "_" _hf ${_h_file})
32         string(TOUPPER ${_hf} _HF)
33         check_include_files(${_h_file} HAVE_${_HF})
34         set(Include_Defines "${Include_Defines}#cmakedefine HAVE_${_HF} 1\n")
35 endforeach()
36 check_include_file_cxx(regex HAVE_REGEX)
37 set(Include_Defines "${Include_Defines}#cmakedefine HAVE_REGEX 1\n")
38 configure_file(${LYX_CMAKE_DIR}/configIncludes.cmake ${TOP_BINARY_DIR}/configIncludes.h.cmake)
39 configure_file(${TOP_BINARY_DIR}/configIncludes.h.cmake ${TOP_BINARY_DIR}/configIncludes.h)
40
41 # defines will be written to configFunctions.h
42 set(Function_Defines)
43 foreach(_f alloca __argz_count __argz_next __argz_stringify
44         chmod close _close dcgettext fcntl fork __fsetlocking
45         getcwd getegid getgid getpid _getpid gettext getuid lstat lockf mempcpy mkdir _mkdir
46         mkfifo open _open pclose _pclose popen _popen putenv readlink
47         setenv setlocale strcasecmp stpcpy strdup strerror strtoul tsearch unsetenv wcslen)
48   string(TOUPPER ${_f} _UF)
49   check_function_exists(${_f} HAVE_${_UF})
50   set(Function_Defines "${Function_Defines}#cmakedefine HAVE_${_UF} 1\n")
51 endforeach()
52 configure_file(${LYX_CMAKE_DIR}/configFunctions.cmake ${TOP_BINARY_DIR}/configFunctions.h.cmake)
53 configure_file(${TOP_BINARY_DIR}/configFunctions.h.cmake ${TOP_BINARY_DIR}/configFunctions.h)
54
55 check_symbol_exists(alloca "malloc.h" HAVE_SYMBOL_ALLOCA)
56 check_symbol_exists(asprintf "stdio.h" HAVE_ASPRINTF)
57 check_symbol_exists(wprintf "stdio.h" HAVE_WPRINTF)
58 check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
59 check_symbol_exists(printf "stdio.h" HAVE_POSIX_PRINTF)
60 check_symbol_exists(pid_t "sys/types.h" HAVE_PID_T)
61 check_symbol_exists(intmax_t "inttypes.h" HAVE_INTTYPES_H_WITH_UINTMAX)
62 check_symbol_exists(uintmax_t "stdint.h" HAVE_STDINT_H_WITH_UINTMAX)
63 check_symbol_exists(LC_MESSAGES "locale.h" HAVE_LC_MESSAGES)
64
65 check_type_size(intmax_t HAVE_INTMAX_T)
66 macro_bool_to_01(HAVE_UINTMAX_T HAVE_STDINT_H_WITH_UINTMAX)
67
68 check_type_size("long double"  HAVE_LONG_DOUBLE)
69 check_type_size("long long"  HAVE_LONG_LONG)
70 check_type_size(wchar_t HAVE_WCHAR_T)
71 check_type_size(wint_t  HAVE_WINT_T)
72
73
74 #check_cxx_source_compiles(
75 #       "
76 #       #include <algorithm>
77 #       using std::count;
78 #       int countChar(char * b, char * e, char const c)
79 #       {
80 #               return count(b, e, c);
81 #       }
82 #       int main(){return 0;}
83 #       "
84 #HAVE_STD_COUNT)
85
86 #check_cxx_source_compiles(
87 #       "
88 #       #include <cctype>
89 #       using std::tolower;
90 #       int main(){return 0;}
91 #       "
92 #CXX_GLOBAL_CSTD)
93
94 check_cxx_source_compiles(
95         "
96         #include <iconv.h>
97         // this declaration will fail when there already exists a non const char** version which returns size_t
98         double iconv(iconv_t cd,  char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
99         int main() { return 0; }
100         "
101 HAVE_ICONV_CONST)
102
103 check_cxx_source_compiles(
104         "
105         int i[ ( sizeof(wchar_t)==2 ? 1 : -1 ) ];
106         int main(){return 0;}
107         "
108 SIZEOF_WCHAR_T_IS_2)
109
110 check_cxx_source_compiles(
111         "
112         int i[ ( sizeof(wchar_t)==4 ? 1 : -1 ) ];
113         int main(){return 0;}
114         "
115 SIZEOF_WCHAR_T_IS_4)
116
117 check_cxx_source_compiles(
118         "
119         #include <execinfo.h>
120         #include <cxxabi.h>
121         int main() {
122                 void* array[200];
123                 size_t size = backtrace(array, 200);
124                 backtrace_symbols(array, size);
125                 int status = 0;
126                 abi::__cxa_demangle(\"abcd\", 0, 0, &status);
127         }
128         "
129 LYX_CALLSTACK_PRINTING)
130
131 # Check whether STL is libstdc++
132 check_cxx_source_compiles(
133         "
134         #include <vector>
135         int main() {
136         #if ! defined(__GLIBCXX__) && ! defined(__GLIBCPP__)
137                 this is not libstdc++
138         #endif
139                 return(0);
140         }
141         "
142 lyx_cv_lib_stdcxx)
143
144 # Check whether STL is libstdc++ with C++11 ABI
145 check_cxx_source_compiles(
146         "
147         #include <vector>
148         int main() {
149         #if ! defined(_GLIBCXX_USE_CXX11_ABI) || ! _GLIBCXX_USE_CXX11_ABI
150                 this is not libstdc++ using the C++11 ABI
151         #endif
152                 return(0);
153         }
154         "
155 USE_GLIBCXX_CXX11_ABI)
156
157 check_cxx_source_compiles(
158         "
159         #ifndef __clang__
160                 this is not clang
161         #endif
162         int main() {
163           return(0);
164         }
165         "
166 lyx_cv_prog_clang)
167
168 set(USE_LLVM_LIBCPP)
169 set(STD_STRING_USES_COW)
170 set(USE_GLIBCXX_CXX11_ABI)
171 if(lyx_cv_lib_stdcxx)
172   if(NOT USE_GLIBCXX_CXX11_ABI)
173     set(STD_STRING_USES_COW 1)
174   endif()
175 else()
176   if(lyx_cv_prog_clang)
177     # use libc++ provided by llvm instead of GNU libstdc++
178     set(USE_LLVM_LIBCPP 1)
179   endif()
180 endif()
181
182 if(LYX_USE_QT MATCHES "QT5")
183   if (Qt5X11Extras_FOUND)
184     get_target_property(_x11extra_prop Qt5::X11Extras IMPORTED_CONFIGURATIONS)
185     get_target_property(_x11extra_link_libraries Qt5::X11Extras IMPORTED_LOCATION_${_x11extra_prop})
186     set(CMAKE_REQUIRED_LIBRARIES ${_x11extra_link_libraries})
187     set(CMAKE_REQUIRED_INCLUDES ${Qt5X11Extras_INCLUDE_DIRS})
188     set(CMAKE_REQUIRED_FLAGS ${Qt5X11Extras_EXECUTABLE_COMPILE_FLAGS})
189     check_cxx_source_compiles(
190             "
191             #include <QtX11Extras/QX11Info>
192             int main()
193             {
194               bool isX11 = QX11Info::isPlatformX11();
195             }
196             "
197     QT_USES_X11)
198   endif()
199   if (Qt5WinExtras_FOUND)
200     get_target_property(_winextra_prop Qt5::WinExtras IMPORTED_CONFIGURATIONS)
201     get_target_property(_winextra_link_libraries Qt5::WinExtras IMPORTED_LOCATION_${_winextra_prop})
202     set(CMAKE_REQUIRED_LIBRARIES ${_winextra_link_libraries})
203     set(CMAKE_REQUIRED_INCLUDES ${Qt5WinExtras_INCLUDE_DIRS})
204     set(CMAKE_REQUIRED_FLAGS ${Qt5WinExtras_EXECUTABLE_COMPILE_FLAGS})
205   endif()
206 elseif(LYX_USE_QT MATCHES "QT4")
207   set(CMAKE_REQUIRED_LIBRARIES ${QT_QTGUI_LIBRARY})
208   set(CMAKE_REQUIRED_INCLUDES ${QT_INCLUDES})
209   check_cxx_source_compiles(
210           "
211           #include <QtGui/QX11Info>
212           int main()
213           {
214             QX11Info *qxi = new QX11Info;
215             qxi->~QX11Info();
216           }
217           "
218   QT_USES_X11)
219 else()
220   message(FATAL_ERROR "Check for QT_USES_X11: Not handled LYX_USE_QT (= ${LYX_USE_QT})")
221 endif()
222