soulalex

CMakeError.log

Oct 24th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.10 KB | None | 0 0
  1. Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)":
  2. Apple clang version 12.0.0 (clang-1200.0.32.29)
  3. Target: x86_64-apple-darwin19.6.0
  4. Thread model: posix
  5. InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
  6. Performing C++ SOURCE FILE Test HAVE_LD_VERSION_SCRIPT failed with the following output:
  7. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  8.  
  9. Run Build Command(s):/opt/local/bin/ninja cmTC_a9bec && [1/2] Building CXX object CMakeFiles/cmTC_a9bec.dir/src.cxx.o
  10. clang: warning: -Wl,--version-script=/Users/soulalex/qt5/qtbase/version_flag.map: 'linker' input unused [-Wunused-command-line-argument]
  11. [2/2] Linking CXX executable cmTC_a9bec
  12. FAILED: cmTC_a9bec
  13. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,--version-script="/Users/soulalex/qt5/qtbase/version_flag.map" -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_a9bec.dir/src.cxx.o -o cmTC_a9bec && :
  14. ld: unknown option: --version-script=/Users/soulalex/qt5/qtbase/version_flag.map
  15. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  16. ninja: build stopped: subcommand failed.
  17.  
  18.  
  19. Source file was:
  20. int main(void){return 0;}
  21. Performing C++ SOURCE FILE Test TEST_enable_new_dtags failed with the following output:
  22. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  23.  
  24. Run Build Command(s):/opt/local/bin/ninja cmTC_e1e63 && [1/2] Building CXX object CMakeFiles/cmTC_e1e63.dir/src.cxx.o
  25. [2/2] Linking CXX executable cmTC_e1e63
  26. FAILED: cmTC_e1e63
  27. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -Wl,--enable-new-dtags CMakeFiles/cmTC_e1e63.dir/src.cxx.o -o cmTC_e1e63 && :
  28. ld: unknown option: --enable-new-dtags
  29. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  30. ninja: build stopped: subcommand failed.
  31.  
  32.  
  33. Source file was:
  34. int main() { return 0; }
  35. Performing C++ SOURCE FILE Test TEST_gdb_index failed with the following output:
  36. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  37.  
  38. Run Build Command(s):/opt/local/bin/ninja cmTC_79617 && [1/2] Building CXX object CMakeFiles/cmTC_79617.dir/src.cxx.o
  39. [2/2] Linking CXX executable cmTC_79617
  40. FAILED: cmTC_79617
  41. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -Wl,--gdb-index CMakeFiles/cmTC_79617.dir/src.cxx.o -o cmTC_79617 && :
  42. ld: unknown option: --gdb-index
  43. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  44. ninja: build stopped: subcommand failed.
  45.  
  46.  
  47. Source file was:
  48. int main() { return 0; }
  49. Performing C++ SOURCE FILE Test HAVE_posix_fallocate failed with the following output:
  50. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  51.  
  52. Run Build Command(s):/opt/local/bin/ninja cmTC_169f9 && [1/2] Building CXX object CMakeFiles/cmTC_169f9.dir/src.cxx.o
  53. FAILED: CMakeFiles/cmTC_169f9.dir/src.cxx.o
  54. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_posix_fallocate -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_169f9.dir/src.cxx.o -MF CMakeFiles/cmTC_169f9.dir/src.cxx.o.d -o CMakeFiles/cmTC_169f9.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  55. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:8: error: use of undeclared identifier 'posix_fallocate'
  56. (void) posix_fallocate(0, 0, 0);
  57. ^
  58. 1 error generated.
  59. ninja: build stopped: subcommand failed.
  60.  
  61.  
  62. Source file was:
  63. #include <fcntl.h>
  64. #include <unistd.h>
  65.  
  66. int main(void)
  67. {
  68. /* BEGIN TEST: */
  69. (void) posix_fallocate(0, 0, 0);
  70. /* END TEST: */
  71. return 0;
  72. }
  73.  
  74. Performing C++ SOURCE FILE Test HAVE_alloca_malloc_h failed with the following output:
  75. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  76.  
  77. Run Build Command(s):/opt/local/bin/ninja cmTC_df2eb && [1/2] Building CXX object CMakeFiles/cmTC_df2eb.dir/src.cxx.o
  78. FAILED: CMakeFiles/cmTC_df2eb.dir/src.cxx.o
  79. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_alloca_malloc_h -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_df2eb.dir/src.cxx.o -MF CMakeFiles/cmTC_df2eb.dir/src.cxx.o.d -o CMakeFiles/cmTC_df2eb.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  80. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'malloc.h' file not found
  81. #include <malloc.h>
  82. ^~~~~~~~~~
  83. 1 error generated.
  84. ninja: build stopped: subcommand failed.
  85.  
  86.  
  87. Source file was:
  88. #include <malloc.h>
  89.  
  90. int main(void)
  91. {
  92. /* BEGIN TEST: */
  93. alloca(1);
  94. /* END TEST: */
  95. return 0;
  96. }
  97.  
  98. Performing C++ SOURCE FILE Test HAVE_intelcet failed with the following output:
  99. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  100.  
  101. Run Build Command(s):/opt/local/bin/ninja cmTC_2e153 && [1/2] Building CXX object CMakeFiles/cmTC_2e153.dir/src.cxx.o
  102. FAILED: CMakeFiles/cmTC_2e153.dir/src.cxx.o
  103. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_intelcet -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_2e153.dir/src.cxx.o -MF CMakeFiles/cmTC_2e153.dir/src.cxx.o.d -o CMakeFiles/cmTC_2e153.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  104. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:5:4: error: Intel CET not available
  105. # error Intel CET not available
  106. ^
  107. 1 error generated.
  108. ninja: build stopped: subcommand failed.
  109.  
  110.  
  111. Source file was:
  112. int main(void)
  113. {
  114. /* BEGIN TEST: */
  115. #if !defined(__CET__)
  116. # error Intel CET not available
  117. #endif
  118. /* END TEST: */
  119. return 0;
  120. }
  121.  
  122. Performing C++ SOURCE FILE Test HAVE_clock_monotonic failed with the following output:
  123. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  124.  
  125. Run Build Command(s):/opt/local/bin/ninja cmTC_e46bc && [1/2] Building CXX object CMakeFiles/cmTC_e46bc.dir/src.cxx.o
  126. FAILED: CMakeFiles/cmTC_e46bc.dir/src.cxx.o
  127. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_clock_monotonic -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_e46bc.dir/src.cxx.o -MF CMakeFiles/cmTC_e46bc.dir/src.cxx.o.d -o CMakeFiles/cmTC_e46bc.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  128. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:11:4: error: Feature _POSIX_MONOTONIC_CLOCK not available
  129. # error Feature _POSIX_MONOTONIC_CLOCK not available
  130. ^
  131. 1 error generated.
  132. ninja: build stopped: subcommand failed.
  133.  
  134.  
  135. Source file was:
  136. #include <unistd.h>
  137. #include <time.h>
  138.  
  139. int main(void)
  140. {
  141. /* BEGIN TEST: */
  142. #if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK-0 >= 0)
  143. timespec ts;
  144. clock_gettime(CLOCK_MONOTONIC, &ts);
  145. #else
  146. # error Feature _POSIX_MONOTONIC_CLOCK not available
  147. #endif
  148. /* END TEST: */
  149. return 0;
  150. }
  151.  
  152. Performing C++ SOURCE FILE Test HAVE_cloexec failed with the following output:
  153. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  154.  
  155. Run Build Command(s):/opt/local/bin/ninja cmTC_b0b8d && [1/2] Building CXX object CMakeFiles/cmTC_b0b8d.dir/src.cxx.o
  156. FAILED: CMakeFiles/cmTC_b0b8d.dir/src.cxx.o
  157. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_cloexec -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_b0b8d.dir/src.cxx.o -MF CMakeFiles/cmTC_b0b8d.dir/src.cxx.o.d -o CMakeFiles/cmTC_b0b8d.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  158. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:11:8: error: use of undeclared identifier 'pipe2'
  159. (void) pipe2(pipes, O_CLOEXEC | O_NONBLOCK);
  160. ^
  161. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:13:8: error: use of undeclared identifier 'dup3'
  162. (void) dup3(0, 3, O_CLOEXEC);
  163. ^
  164. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:17:25: error: use of undeclared identifier 'SOCK_CLOEXEC'
  165. (void) accept4(0, 0, 0, SOCK_CLOEXEC | SOCK_NONBLOCK);
  166. ^
  167. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:17:40: error: use of undeclared identifier 'SOCK_NONBLOCK'
  168. (void) accept4(0, 0, 0, SOCK_CLOEXEC | SOCK_NONBLOCK);
  169. ^
  170. 4 errors generated.
  171. ninja: build stopped: subcommand failed.
  172.  
  173.  
  174. Source file was:
  175. #define _GNU_SOURCE 1
  176. #include <sys/types.h>
  177. #include <sys/socket.h>
  178. #include <fcntl.h>
  179. #include <unistd.h>
  180.  
  181. int main(void)
  182. {
  183. /* BEGIN TEST: */
  184. int pipes[2];
  185. (void) pipe2(pipes, O_CLOEXEC | O_NONBLOCK);
  186. (void) fcntl(0, F_DUPFD_CLOEXEC, 0);
  187. (void) dup3(0, 3, O_CLOEXEC);
  188. #if defined(__NetBSD__)
  189. (void) paccept(0, 0, 0, NULL, SOCK_CLOEXEC | SOCK_NONBLOCK);
  190. #else
  191. (void) accept4(0, 0, 0, SOCK_CLOEXEC | SOCK_NONBLOCK);
  192. #endif
  193. /* END TEST: */
  194. return 0;
  195. }
  196.  
  197. Performing C++ SOURCE FILE Test HAVE_cxx17_bm_searcher failed with the following output:
  198. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  199.  
  200. Run Build Command(s):/opt/local/bin/ninja cmTC_a2258 && [1/2] Building CXX object CMakeFiles/cmTC_a2258.dir/src.cxx.o
  201. FAILED: CMakeFiles/cmTC_a2258.dir/src.cxx.o
  202. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_cxx17_bm_searcher -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_a2258.dir/src.cxx.o -MF CMakeFiles/cmTC_a2258.dir/src.cxx.o.d -o CMakeFiles/cmTC_a2258.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  203. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:11:6: error: no member named 'boyer_moore_searcher' in namespace 'std'
  204. std::boyer_moore_searcher(needle + 0, needle + std::size(needle)));
  205. ~~~~~^
  206. 1 error generated.
  207. ninja: build stopped: subcommand failed.
  208.  
  209.  
  210. Source file was:
  211. #include <algorithm>
  212. #include <functional>
  213.  
  214. int main(void)
  215. {
  216. /* BEGIN TEST: */
  217. const char haystack[] = "hello";
  218. const char needle[] = "e";
  219. const auto it =
  220. std::search(haystack + 0, haystack + std::size(haystack),
  221. std::boyer_moore_searcher(needle + 0, needle + std::size(needle)));
  222. (void)it;
  223. /* END TEST: */
  224. return 0;
  225. }
  226.  
  227. Performing C++ SOURCE FILE Test HAVE_cxx17_filesystem failed with the following output:
  228. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  229.  
  230. Run Build Command(s):/opt/local/bin/ninja cmTC_95057 && [1/2] Building CXX object CMakeFiles/cmTC_95057.dir/src.cxx.o
  231. FAILED: CMakeFiles/cmTC_95057.dir/src.cxx.o
  232. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_cxx17_filesystem -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_95057.dir/src.cxx.o -MF CMakeFiles/cmTC_95057.dir/src.cxx.o.d -o CMakeFiles/cmTC_95057.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  233. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:22: error: 'path' is unavailable: introduced in macOS 10.15
  234. std::filesystem::path("./file"),
  235. ^
  236. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:738:24: note: 'path' has been explicitly marked unavailable here
  237. class _LIBCPP_TYPE_VIS path {
  238. ^
  239. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:5: error: 'path' is unavailable: introduced in macOS 10.15
  240. std::filesystem::path("./file"),
  241. ^
  242. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:772:3: note: 'path' has been explicitly marked unavailable here
  243. path(const _Source& __src, format = format::auto_format) {
  244. ^
  245. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:5: error: '~path' is unavailable: introduced in macOS 10.15
  246. std::filesystem::path("./file"),
  247. ^
  248. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:790:3: note: '~path' has been explicitly marked unavailable here
  249. ~path() = default;
  250. ^
  251. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:22: error: 'path' is unavailable: introduced in macOS 10.15
  252. std::filesystem::path("./other"));
  253. ^
  254. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:738:24: note: 'path' has been explicitly marked unavailable here
  255. class _LIBCPP_TYPE_VIS path {
  256. ^
  257. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:5: error: 'path' is unavailable: introduced in macOS 10.15
  258. std::filesystem::path("./other"));
  259. ^
  260. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:772:3: note: 'path' has been explicitly marked unavailable here
  261. path(const _Source& __src, format = format::auto_format) {
  262. ^
  263. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:5: error: '~path' is unavailable: introduced in macOS 10.15
  264. std::filesystem::path("./other"));
  265. ^
  266. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:790:3: note: '~path' has been explicitly marked unavailable here
  267. ~path() = default;
  268. ^
  269. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:6:18: error: 'copy' is unavailable: introduced in macOS 10.15
  270. std::filesystem::copy(
  271. ^
  272. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1492:39: note: 'copy' has been explicitly marked unavailable here
  273. inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from,
  274. ^
  275. 7 errors generated.
  276. ninja: build stopped: subcommand failed.
  277.  
  278.  
  279. Source file was:
  280. #include <filesystem>
  281.  
  282. int main(void)
  283. {
  284. /* BEGIN TEST: */
  285. std::filesystem::copy(
  286. std::filesystem::path("./file"),
  287. std::filesystem::path("./other"));
  288. /* END TEST: */
  289. return 0;
  290. }
  291.  
  292. Performing C++ SOURCE FILE Test HAVE_eventfd failed with the following output:
  293. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  294.  
  295. Run Build Command(s):/opt/local/bin/ninja cmTC_d5719 && [1/2] Building CXX object CMakeFiles/cmTC_d5719.dir/src.cxx.o
  296. FAILED: CMakeFiles/cmTC_d5719.dir/src.cxx.o
  297. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_eventfd -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_d5719.dir/src.cxx.o -MF CMakeFiles/cmTC_d5719.dir/src.cxx.o.d -o CMakeFiles/cmTC_d5719.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  298. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'sys/eventfd.h' file not found
  299. #include <sys/eventfd.h>
  300. ^~~~~~~~~~~~~~~
  301. 1 error generated.
  302. ninja: build stopped: subcommand failed.
  303.  
  304.  
  305. Source file was:
  306. #include <sys/eventfd.h>
  307.  
  308. int main(void)
  309. {
  310. /* BEGIN TEST: */
  311. eventfd_t value;
  312. int fd = eventfd(0, EFD_CLOEXEC);
  313. eventfd_read(fd, &value);
  314. eventfd_write(fd, value);
  315. /* END TEST: */
  316. return 0;
  317. }
  318.  
  319. Performing C++ SOURCE FILE Test HAVE_getauxval failed with the following output:
  320. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  321.  
  322. Run Build Command(s):/opt/local/bin/ninja cmTC_f6eb3 && [1/2] Building CXX object CMakeFiles/cmTC_f6eb3.dir/src.cxx.o
  323. FAILED: CMakeFiles/cmTC_f6eb3.dir/src.cxx.o
  324. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_getauxval -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_f6eb3.dir/src.cxx.o -MF CMakeFiles/cmTC_f6eb3.dir/src.cxx.o.d -o CMakeFiles/cmTC_f6eb3.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  325. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'sys/auxv.h' file not found
  326. #include <sys/auxv.h>
  327. ^~~~~~~~~~~~
  328. 1 error generated.
  329. ninja: build stopped: subcommand failed.
  330.  
  331.  
  332. Source file was:
  333. #include <sys/auxv.h>
  334.  
  335. int main(void)
  336. {
  337. /* BEGIN TEST: */
  338. (void) getauxval(AT_NULL);
  339. /* END TEST: */
  340. return 0;
  341. }
  342.  
  343. Performing C++ SOURCE FILE Test HAVE_getentropy failed with the following output:
  344. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  345.  
  346. Run Build Command(s):/opt/local/bin/ninja cmTC_d61f9 && [1/2] Building CXX object CMakeFiles/cmTC_d61f9.dir/src.cxx.o
  347. FAILED: CMakeFiles/cmTC_d61f9.dir/src.cxx.o
  348. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_getentropy -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_d61f9.dir/src.cxx.o -MF CMakeFiles/cmTC_d61f9.dir/src.cxx.o.d -o CMakeFiles/cmTC_d61f9.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  349. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:8: error: use of undeclared identifier 'getentropy'
  350. (void) getentropy(buf, sizeof(buf));
  351. ^
  352. 1 error generated.
  353. ninja: build stopped: subcommand failed.
  354.  
  355.  
  356. Source file was:
  357. #include <unistd.h>
  358.  
  359. int main(void)
  360. {
  361. /* BEGIN TEST: */
  362. char buf[32];
  363. (void) getentropy(buf, sizeof(buf));
  364. /* END TEST: */
  365. return 0;
  366. }
  367.  
  368. Performing C++ SOURCE FILE Test HAVE_glibc failed with the following output:
  369. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  370.  
  371. Run Build Command(s):/opt/local/bin/ninja cmTC_4c488 && [1/2] Building CXX object CMakeFiles/cmTC_4c488.dir/src.cxx.o
  372. FAILED: CMakeFiles/cmTC_4c488.dir/src.cxx.o
  373. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_glibc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_4c488.dir/src.cxx.o -MF CMakeFiles/cmTC_4c488.dir/src.cxx.o.d -o CMakeFiles/cmTC_4c488.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  374. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:6:8: error: use of undeclared identifier '__GLIBC__'
  375. return __GLIBC__;
  376. ^
  377. 1 error generated.
  378. ninja: build stopped: subcommand failed.
  379.  
  380.  
  381. Source file was:
  382. #include <stdlib.h>
  383.  
  384. int main(void)
  385. {
  386. /* BEGIN TEST: */
  387. return __GLIBC__;
  388. /* END TEST: */
  389. return 0;
  390. }
  391.  
  392. Performing C++ SOURCE FILE Test HAVE_inotify failed with the following output:
  393. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  394.  
  395. Run Build Command(s):/opt/local/bin/ninja cmTC_df153 && [1/2] Building CXX object CMakeFiles/cmTC_df153.dir/src.cxx.o
  396. FAILED: CMakeFiles/cmTC_df153.dir/src.cxx.o
  397. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_inotify -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_df153.dir/src.cxx.o -MF CMakeFiles/cmTC_df153.dir/src.cxx.o.d -o CMakeFiles/cmTC_df153.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  398. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'sys/inotify.h' file not found
  399. #include <sys/inotify.h>
  400. ^~~~~~~~~~~~~~~
  401. 1 error generated.
  402. ninja: build stopped: subcommand failed.
  403.  
  404.  
  405. Source file was:
  406. #include <sys/inotify.h>
  407.  
  408. int main(void)
  409. {
  410. /* BEGIN TEST: */
  411. inotify_init();
  412. inotify_add_watch(0, "foobar", IN_ACCESS);
  413. inotify_rm_watch(0, 1);
  414. /* END TEST: */
  415. return 0;
  416. }
  417.  
  418. Performing C++ SOURCE FILE Test HAVE_ppoll failed with the following output:
  419. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  420.  
  421. Run Build Command(s):/opt/local/bin/ninja cmTC_911ed && [1/2] Building CXX object CMakeFiles/cmTC_911ed.dir/src.cxx.o
  422. FAILED: CMakeFiles/cmTC_911ed.dir/src.cxx.o
  423. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_ppoll -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_911ed.dir/src.cxx.o -MF CMakeFiles/cmTC_911ed.dir/src.cxx.o.d -o CMakeFiles/cmTC_911ed.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  424. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:17: error: variable has incomplete type 'struct timespec'
  425. struct timespec ts;
  426. ^
  427. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:8: note: forward declaration of 'timespec'
  428. struct timespec ts;
  429. ^
  430. 1 error generated.
  431. ninja: build stopped: subcommand failed.
  432.  
  433.  
  434. Source file was:
  435. #include <signal.h>
  436. #include <poll.h>
  437.  
  438. int main(void)
  439. {
  440. /* BEGIN TEST: */
  441. struct pollfd pfd;
  442. struct timespec ts;
  443. sigset_t sig;
  444. ppoll(&pfd, 1, &ts, &sig);
  445. /* END TEST: */
  446. return 0;
  447. }
  448.  
  449. Performing C++ SOURCE FILE Test HAVE_pollts failed with the following output:
  450. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  451.  
  452. Run Build Command(s):/opt/local/bin/ninja cmTC_b9777 && [1/2] Building CXX object CMakeFiles/cmTC_b9777.dir/src.cxx.o
  453. FAILED: CMakeFiles/cmTC_b9777.dir/src.cxx.o
  454. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_pollts -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_b9777.dir/src.cxx.o -MF CMakeFiles/cmTC_b9777.dir/src.cxx.o.d -o CMakeFiles/cmTC_b9777.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  455. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:11:1: error: use of undeclared identifier 'pollts'; did you mean 'pollfd'?
  456. pollts(&pfd, 1, &ts, &sig);
  457. ^
  458. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/usr/include/sys/poll.h:96:8: note: 'pollfd' declared here
  459. struct pollfd {
  460. ^
  461. 1 error generated.
  462. ninja: build stopped: subcommand failed.
  463.  
  464.  
  465. Source file was:
  466. #include <poll.h>
  467. #include <signal.h>
  468. #include <time.h>
  469.  
  470. int main(void)
  471. {
  472. /* BEGIN TEST: */
  473. struct pollfd pfd;
  474. struct timespec ts;
  475. sigset_t sig;
  476. pollts(&pfd, 1, &ts, &sig);
  477. /* END TEST: */
  478. return 0;
  479. }
  480.  
  481. Performing C++ SOURCE FILE Test HAVE_renameat2 failed with the following output:
  482. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  483.  
  484. Run Build Command(s):/opt/local/bin/ninja cmTC_93187 && [1/2] Building CXX object CMakeFiles/cmTC_93187.dir/src.cxx.o
  485. FAILED: CMakeFiles/cmTC_93187.dir/src.cxx.o
  486. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_renameat2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_93187.dir/src.cxx.o -MF CMakeFiles/cmTC_93187.dir/src.cxx.o.d -o CMakeFiles/cmTC_93187.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  487. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:21: error: use of undeclared identifier 'argv'
  488. renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
  489. ^
  490. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:40: error: use of undeclared identifier 'argv'
  491. renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
  492. ^
  493. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:49: error: use of undeclared identifier 'RENAME_NOREPLACE'
  494. renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
  495. ^
  496. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:68: error: use of undeclared identifier 'RENAME_WHITEOUT'
  497. renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
  498. ^
  499. 4 errors generated.
  500. ninja: build stopped: subcommand failed.
  501.  
  502.  
  503. Source file was:
  504. #define _ATFILE_SOURCE 1
  505. #include <fcntl.h>
  506. #include <stdio.h>
  507.  
  508. int main(void)
  509. {
  510. /* BEGIN TEST: */
  511. renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
  512. /* END TEST: */
  513. return 0;
  514. }
  515.  
  516. Performing C++ SOURCE FILE Test HAVE_statx failed with the following output:
  517. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  518.  
  519. Run Build Command(s):/opt/local/bin/ninja cmTC_53495 && [1/2] Building CXX object CMakeFiles/cmTC_53495.dir/src.cxx.o
  520. FAILED: CMakeFiles/cmTC_53495.dir/src.cxx.o
  521. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_statx -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_53495.dir/src.cxx.o -MF CMakeFiles/cmTC_53495.dir/src.cxx.o.d -o CMakeFiles/cmTC_53495.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  522. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:10:14: error: variable has incomplete type 'struct statx'
  523. struct statx statxbuf;
  524. ^
  525. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:10:8: note: forward declaration of 'statx'
  526. struct statx statxbuf;
  527. ^
  528. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:11:21: error: use of undeclared identifier 'STATX_BASIC_STATS'
  529. unsigned int mask = STATX_BASIC_STATS;
  530. ^
  531. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:12:28: error: use of undeclared identifier 'AT_STATX_SYNC_AS_STAT'
  532. return statx(AT_FDCWD, "", AT_STATX_SYNC_AS_STAT, mask, &statxbuf);
  533. ^
  534. 3 errors generated.
  535. ninja: build stopped: subcommand failed.
  536.  
  537.  
  538. Source file was:
  539. #define _ATFILE_SOURCE 1
  540. #include <sys/types.h>
  541. #include <sys/stat.h>
  542. #include <unistd.h>
  543. #include <fcntl.h>
  544.  
  545. int main(void)
  546. {
  547. /* BEGIN TEST: */
  548. struct statx statxbuf;
  549. unsigned int mask = STATX_BASIC_STATS;
  550. return statx(AT_FDCWD, "", AT_STATX_SYNC_AS_STAT, mask, &statxbuf);
  551. /* END TEST: */
  552. return 0;
  553. }
  554.  
  555. Performing C++ SOURCE FILE Test HAVE_xlocalescanprint failed with the following output:
  556. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  557.  
  558. Run Build Command(s):/opt/local/bin/ninja cmTC_63f2c && [1/2] Building CXX object CMakeFiles/cmTC_63f2c.dir/src.cxx.o
  559. FAILED: CMakeFiles/cmTC_63f2c.dir/src.cxx.o
  560. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_xlocalescanprint -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_63f2c.dir/src.cxx.o -MF CMakeFiles/cmTC_63f2c.dir/src.cxx.o.d -o CMakeFiles/cmTC_63f2c.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  561. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:10:10: error: expected "FILENAME" or <FILENAME>
  562. #include QDSP_P_H
  563. ^
  564. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:18:1: error: unknown type name 'locale_t'
  565. locale_t invalidLocale = NULL;
  566. ^
  567. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:18:26: error: use of undeclared identifier 'NULL'
  568. locale_t invalidLocale = NULL;
  569. ^
  570. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:21:17: error: use of undeclared identifier 'argv'
  571. qDoubleSnprintf(argv[0], 1, invalidLocale, "invalid format", a);
  572. ^
  573. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:22:15: error: use of undeclared identifier 'argv'
  574. qDoubleSscanf(argv[0], invalidLocale, "invalid format", &a, &argc);
  575. ^
  576. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:22:62: error: use of undeclared identifier 'argc'
  577. qDoubleSscanf(argv[0], invalidLocale, "invalid format", &a, &argc);
  578. ^
  579. 6 errors generated.
  580. ninja: build stopped: subcommand failed.
  581.  
  582.  
  583. Source file was:
  584. #define QT_BEGIN_NAMESPACE
  585. #define QT_END_NAMESPACE
  586.  
  587. #ifdef _MSVC_VER
  588. #define Q_CC_MSVC _MSVC_VER
  589. #endif
  590.  
  591. #define QT_NO_DOUBLECONVERSION
  592.  
  593. #include QDSP_P_H
  594.  
  595. int main(void)
  596. {
  597. /* BEGIN TEST: */
  598. #ifdef _MSVC_VER
  599. _locale_t invalidLocale = NULL;
  600. #else
  601. locale_t invalidLocale = NULL;
  602. #endif
  603. double a = 3.4;
  604. qDoubleSnprintf(argv[0], 1, invalidLocale, "invalid format", a);
  605. qDoubleSscanf(argv[0], invalidLocale, "invalid format", &a, &argc);
  606. /* END TEST: */
  607. return 0;
  608. }
  609.  
  610. Performing C++ SOURCE FILE Test HAVE_ifr_index failed with the following output:
  611. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  612.  
  613. Run Build Command(s):/opt/local/bin/ninja cmTC_30ce1 && [1/2] Building CXX object CMakeFiles/cmTC_30ce1.dir/src.cxx.o
  614. FAILED: CMakeFiles/cmTC_30ce1.dir/src.cxx.o
  615. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_ifr_index -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_30ce1.dir/src.cxx.o -MF CMakeFiles/cmTC_30ce1.dir/src.cxx.o.d -o CMakeFiles/cmTC_30ce1.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  616. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:7:5: error: no member named 'ifr_index' in 'ifreq'
  617. req.ifr_index = 0;
  618. ~~~ ^
  619. 1 error generated.
  620. ninja: build stopped: subcommand failed.
  621.  
  622.  
  623. Source file was:
  624. #include <net/if.h>
  625.  
  626. int main(void)
  627. {
  628. /* BEGIN TEST: */
  629. struct ifreq req;
  630. req.ifr_index = 0;
  631. /* END TEST: */
  632. return 0;
  633. }
  634.  
  635. Performing C++ SOURCE FILE Test HAVE_linux_netlink failed with the following output:
  636. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  637.  
  638. Run Build Command(s):/opt/local/bin/ninja cmTC_fda62 && [1/2] Building CXX object CMakeFiles/cmTC_fda62.dir/src.cxx.o
  639. FAILED: CMakeFiles/cmTC_fda62.dir/src.cxx.o
  640. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_linux_netlink -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_fda62.dir/src.cxx.o -MF CMakeFiles/cmTC_fda62.dir/src.cxx.o.d -o CMakeFiles/cmTC_fda62.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  641. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'asm/types.h' file not found
  642. #include <asm/types.h>
  643. ^~~~~~~~~~~~~
  644. 1 error generated.
  645. ninja: build stopped: subcommand failed.
  646.  
  647.  
  648. Source file was:
  649. #include <asm/types.h>
  650. #include <linux/netlink.h>
  651. #include <linux/rtnetlink.h>
  652. #include <sys/socket.h>
  653.  
  654. int main(void)
  655. {
  656. /* BEGIN TEST: */
  657. struct rtattr rta = { };
  658. struct ifinfomsg ifi = {};
  659. struct ifaddrmsg ifa = {};
  660. struct ifa_cacheinfo ci;
  661. ci.ifa_prefered = ci.ifa_valid = 0;
  662. (void)RTM_NEWLINK; (void)RTM_NEWADDR;
  663. (void)IFLA_ADDRESS; (void)IFLA_IFNAME;
  664. (void)IFA_ADDRESS; (void)IFA_LABEL; (void)IFA_CACHEINFO;
  665. (void)(IFA_F_SECONDARY | IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_MANAGETEMPADDR);
  666. /* END TEST: */
  667. return 0;
  668. }
  669.  
  670. Performing C++ SOURCE FILE Test HAVE_sctp failed with the following output:
  671. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  672.  
  673. Run Build Command(s):/opt/local/bin/ninja cmTC_a0ad5 && [1/2] Building CXX object CMakeFiles/cmTC_a0ad5.dir/src.cxx.o
  674. FAILED: CMakeFiles/cmTC_a0ad5.dir/src.cxx.o
  675. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_sctp -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_a0ad5.dir/src.cxx.o -MF CMakeFiles/cmTC_a0ad5.dir/src.cxx.o.d -o CMakeFiles/cmTC_a0ad5.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  676. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:4:10: fatal error: 'netinet/sctp.h' file not found
  677. #include <netinet/sctp.h>
  678. ^~~~~~~~~~~~~~~~
  679. 1 error generated.
  680. ninja: build stopped: subcommand failed.
  681.  
  682.  
  683. Source file was:
  684. #include <sys/types.h>
  685. #include <sys/socket.h>
  686. #include <netinet/in.h>
  687. #include <netinet/sctp.h>
  688.  
  689. int main(void)
  690. {
  691. /* BEGIN TEST: */
  692. sctp_initmsg sctpInitMsg;
  693. socklen_t sctpInitMsgSize = sizeof(sctpInitMsg);
  694. (void) socket(PF_INET, SOCK_STREAM, IPPROTO_SCTP);
  695. (void) getsockopt(-1, SOL_SCTP, SCTP_INITMSG, &sctpInitMsg, &sctpInitMsgSize);
  696. /* END TEST: */
  697. return 0;
  698. }
  699.  
  700. Performing C++ SOURCE FILE Test HAVE_networklistmanager failed with the following output:
  701. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  702.  
  703. Run Build Command(s):/opt/local/bin/ninja cmTC_88b1d && [1/2] Building CXX object CMakeFiles/cmTC_88b1d.dir/src.cxx.o
  704. FAILED: CMakeFiles/cmTC_88b1d.dir/src.cxx.o
  705. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_networklistmanager -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_88b1d.dir/src.cxx.o -MF CMakeFiles/cmTC_88b1d.dir/src.cxx.o.d -o CMakeFiles/cmTC_88b1d.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  706. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'netlistmgr.h' file not found
  707. #include <netlistmgr.h>
  708. ^~~~~~~~~~~~~~
  709. 1 error generated.
  710. ninja: build stopped: subcommand failed.
  711.  
  712.  
  713. Source file was:
  714. #include <netlistmgr.h>
  715. #include <wrl/client.h>
  716.  
  717. int main(void)
  718. {
  719. /* BEGIN TEST: */
  720. using namespace Microsoft::WRL;
  721. ComPtr<INetworkListManager> networkListManager;
  722. ComPtr<IConnectionPoint> connectionPoint;
  723. ComPtr<IConnectionPointContainer> connectionPointContainer;
  724. networkListManager.As(&connectionPointContainer);
  725. connectionPointContainer->FindConnectionPoint(IID_INetworkConnectionEvents, &connectionPoint);
  726. /* END TEST: */
  727. return 0;
  728. }
  729.  
  730. Performing C++ SOURCE FILE Test HAVE_EGL failed with the following output:
  731. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  732.  
  733. Run Build Command(s):/opt/local/bin/ninja cmTC_12e7b && [1/2] Building CXX object CMakeFiles/cmTC_12e7b.dir/src.cxx.o
  734. FAILED: CMakeFiles/cmTC_12e7b.dir/src.cxx.o
  735. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_EGL -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_12e7b.dir/src.cxx.o -MF CMakeFiles/cmTC_12e7b.dir/src.cxx.o.d -o CMakeFiles/cmTC_12e7b.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  736. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:2:10: fatal error: 'EGL/egl.h' file not found
  737. #include <EGL/egl.h>
  738. ^~~~~~~~~~~
  739. 1 error generated.
  740. ninja: build stopped: subcommand failed.
  741.  
  742.  
  743. Source file was:
  744.  
  745. #include <EGL/egl.h>
  746.  
  747. int main(int argc, char *argv[]) {
  748. EGLint x = 0; EGLDisplay dpy = 0; EGLContext ctx = 0;
  749. eglDestroyContext(dpy, ctx);
  750. }
  751. Performing C++ SOURCE FILE Test HAVE_GLESv2 failed with the following output:
  752. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  753.  
  754. Run Build Command(s):/opt/local/bin/ninja cmTC_cf2b1 && [1/2] Building CXX object CMakeFiles/cmTC_cf2b1.dir/src.cxx.o
  755. FAILED: CMakeFiles/cmTC_cf2b1.dir/src.cxx.o
  756. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_GLESv2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_cf2b1.dir/src.cxx.o -MF CMakeFiles/cmTC_cf2b1.dir/src.cxx.o.d -o CMakeFiles/cmTC_cf2b1.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  757. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:3:12: fatal error: 'OpenGLES/ES2/gl.h' file not found
  758. # include <OpenGLES/ES2/gl.h>
  759. ^~~~~~~~~~~~~~~~~~~
  760. 1 error generated.
  761. ninja: build stopped: subcommand failed.
  762.  
  763.  
  764. Source file was:
  765.  
  766. #ifdef __APPLE__
  767. # include <OpenGLES/ES2/gl.h>
  768. #else
  769. # define GL_GLEXT_PROTOTYPES
  770. # include <GLES2/gl2.h>
  771. #endif
  772.  
  773. int main(int argc, char *argv[]) {
  774. glUniform1f(1, GLfloat(1.0));
  775. glClear(GL_COLOR_BUFFER_BIT);
  776. }
  777. Performing C++ SOURCE FILE Test HAVE_evdev failed with the following output:
  778. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  779.  
  780. Run Build Command(s):/opt/local/bin/ninja cmTC_43fc5 && [1/2] Building CXX object CMakeFiles/cmTC_43fc5.dir/src.cxx.o
  781. FAILED: CMakeFiles/cmTC_43fc5.dir/src.cxx.o
  782. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_evdev -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_43fc5.dir/src.cxx.o -MF CMakeFiles/cmTC_43fc5.dir/src.cxx.o.d -o CMakeFiles/cmTC_43fc5.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  783. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:4:12: fatal error: 'linux/input.h' file not found
  784. # include <linux/input.h>
  785. ^~~~~~~~~~~~~~~
  786. 1 error generated.
  787. ninja: build stopped: subcommand failed.
  788.  
  789.  
  790. Source file was:
  791. #if defined(__FreeBSD__)
  792. # include <dev/evdev/input.h>
  793. #else
  794. # include <linux/input.h>
  795. # include <linux/kd.h>
  796. #endif
  797. enum {
  798. e1 = ABS_PRESSURE,
  799. e2 = ABS_X,
  800. e3 = REL_X,
  801. e4 = SYN_REPORT,
  802. };
  803.  
  804. int main(void)
  805. {
  806. /* BEGIN TEST: */
  807. input_event buf[32];
  808. (void) buf;
  809. /* END TEST: */
  810. return 0;
  811. }
  812.  
  813. Performing C++ SOURCE FILE Test HAVE_integrityfb failed with the following output:
  814. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  815.  
  816. Run Build Command(s):/opt/local/bin/ninja cmTC_82840 && [1/2] Building CXX object CMakeFiles/cmTC_82840.dir/src.cxx.o
  817. FAILED: CMakeFiles/cmTC_82840.dir/src.cxx.o
  818. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_integrityfb -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_82840.dir/src.cxx.o -MF CMakeFiles/cmTC_82840.dir/src.cxx.o.d -o CMakeFiles/cmTC_82840.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  819. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'device/fbdriver.h' file not found
  820. #include <device/fbdriver.h>
  821. ^~~~~~~~~~~~~~~~~~~
  822. 1 error generated.
  823. ninja: build stopped: subcommand failed.
  824.  
  825.  
  826. Source file was:
  827. #include <device/fbdriver.h>
  828.  
  829. int main(void)
  830. {
  831. /* BEGIN TEST: */
  832. FBDriver *driver = 0;
  833. /* END TEST: */
  834. return 0;
  835. }
  836.  
  837. Performing C++ SOURCE FILE Test HAVE_linuxfb failed with the following output:
  838. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  839.  
  840. Run Build Command(s):/opt/local/bin/ninja cmTC_3187e && [1/2] Building CXX object CMakeFiles/cmTC_3187e.dir/src.cxx.o
  841. FAILED: CMakeFiles/cmTC_3187e.dir/src.cxx.o
  842. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_linuxfb -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_3187e.dir/src.cxx.o -MF CMakeFiles/cmTC_3187e.dir/src.cxx.o.d -o CMakeFiles/cmTC_3187e.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  843. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'linux/fb.h' file not found
  844. #include <linux/fb.h>
  845. ^~~~~~~~~~~~
  846. 1 error generated.
  847. ninja: build stopped: subcommand failed.
  848.  
  849.  
  850. Source file was:
  851. #include <linux/fb.h>
  852. #include <sys/kd.h>
  853. #include <sys/ioctl.h>
  854.  
  855. int main(void)
  856. {
  857. /* BEGIN TEST: */
  858. fb_fix_screeninfo finfo;
  859. fb_var_screeninfo vinfo;
  860. int fd = 3;
  861. ioctl(fd, FBIOGET_FSCREENINFO, &finfo);
  862. ioctl(fd, FBIOGET_VSCREENINFO, &vinfo);
  863. /* END TEST: */
  864. return 0;
  865. }
  866.  
  867. Performing C++ SOURCE FILE Test HAVE_directwrite failed with the following output:
  868. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  869.  
  870. Run Build Command(s):/opt/local/bin/ninja cmTC_b4c80 && [1/2] Building CXX object CMakeFiles/cmTC_b4c80.dir/src.cxx.o
  871. FAILED: CMakeFiles/cmTC_b4c80.dir/src.cxx.o
  872. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_directwrite -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_b4c80.dir/src.cxx.o -MF CMakeFiles/cmTC_b4c80.dir/src.cxx.o.d -o CMakeFiles/cmTC_b4c80.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  873. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'dwrite_2.h' file not found
  874. #include <dwrite_2.h>
  875. ^~~~~~~~~~~~
  876. 1 error generated.
  877. ninja: build stopped: subcommand failed.
  878.  
  879.  
  880. Source file was:
  881. #include <dwrite_2.h>
  882. int main(int, char **)
  883. {
  884. IUnknown *factory = nullptr;
  885. DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory2),
  886. &factory);
  887. return 0;
  888. }
  889.  
  890. Performing C++ SOURCE FILE Test HAVE_directwrite3 failed with the following output:
  891. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  892.  
  893. Run Build Command(s):/opt/local/bin/ninja cmTC_22195 && [1/2] Building CXX object CMakeFiles/cmTC_22195.dir/src.cxx.o
  894. FAILED: CMakeFiles/cmTC_22195.dir/src.cxx.o
  895. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_directwrite3 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_22195.dir/src.cxx.o -MF CMakeFiles/cmTC_22195.dir/src.cxx.o.d -o CMakeFiles/cmTC_22195.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  896. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'dwrite_3.h' file not found
  897. #include <dwrite_3.h>
  898. ^~~~~~~~~~~~
  899. 1 error generated.
  900. ninja: build stopped: subcommand failed.
  901.  
  902.  
  903. Source file was:
  904. #include <dwrite_3.h>
  905. int main(int, char **)
  906. {
  907. IUnknown *factory = nullptr;
  908. DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory3),
  909. &factory);
  910. return 0;
  911. }
  912.  
  913. Performing C++ SOURCE FILE Test HAVE_d2d1 failed with the following output:
  914. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  915.  
  916. Run Build Command(s):/opt/local/bin/ninja cmTC_e3849 && [1/2] Building CXX object CMakeFiles/cmTC_e3849.dir/src.cxx.o
  917. FAILED: CMakeFiles/cmTC_e3849.dir/src.cxx.o
  918. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_d2d1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_e3849.dir/src.cxx.o -MF CMakeFiles/cmTC_e3849.dir/src.cxx.o.d -o CMakeFiles/cmTC_e3849.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  919. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'd2d1.h' file not found
  920. #include <d2d1.h>
  921. ^~~~~~~~
  922. 1 error generated.
  923. ninja: build stopped: subcommand failed.
  924.  
  925.  
  926. Source file was:
  927. #include <d2d1.h>
  928. int main(int, char **)
  929. {
  930. void *factory = nullptr;
  931. D2D1_FACTORY_OPTIONS options;
  932. ZeroMemory(&options, sizeof(D2D1_FACTORY_OPTIONS));
  933. D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, GUID{}, &options, &factory);
  934. return 0;
  935. }
  936.  
  937. Performing C++ SOURCE FILE Test HAVE_d2d1_1 failed with the following output:
  938. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  939.  
  940. Run Build Command(s):/opt/local/bin/ninja cmTC_aca1c && [1/2] Building CXX object CMakeFiles/cmTC_aca1c.dir/src.cxx.o
  941. FAILED: CMakeFiles/cmTC_aca1c.dir/src.cxx.o
  942. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_d2d1_1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_aca1c.dir/src.cxx.o -MF CMakeFiles/cmTC_aca1c.dir/src.cxx.o.d -o CMakeFiles/cmTC_aca1c.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  943. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:1:11: fatal error: 'd2d1_1.h' file not found
  944. #include <d2d1_1.h>
  945. ^~~~~~~~~~
  946. 1 error generated.
  947. ninja: build stopped: subcommand failed.
  948.  
  949.  
  950. Source file was:
  951. #include <d2d1_1.h>
  952. int main(int, char **)
  953. {
  954. ID2D1Factory1 *d2dFactory;
  955. D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, &d2dFactory);
  956. return 0;
  957. }
  958.  
  959. Performing C++ SOURCE FILE Test HAVE_DASH_DASH_NO_UNDEFINED failed with the following output:
  960. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  961.  
  962. Run Build Command(s):/opt/local/bin/ninja cmTC_2cb87 && [1/2] Building CXX object CMakeFiles/cmTC_2cb87.dir/src.cxx.o
  963. [2/2] Linking CXX executable cmTC_2cb87
  964. FAILED: cmTC_2cb87
  965. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -Wl,--no-undefined CMakeFiles/cmTC_2cb87.dir/src.cxx.o -o cmTC_2cb87 && :
  966. ld: unknown option: --no-undefined
  967. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  968. ninja: build stopped: subcommand failed.
  969.  
  970.  
  971. Source file was:
  972. int main() {}
  973. Performing C++ SOURCE FILE Test HAVE_pointer_32bit failed with the following output:
  974. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  975.  
  976. Run Build Command(s):/opt/local/bin/ninja cmTC_4ff63 && [1/2] Building CXX object CMakeFiles/cmTC_4ff63.dir/src.cxx.o
  977. FAILED: CMakeFiles/cmTC_4ff63.dir/src.cxx.o
  978. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_pointer_32bit -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_4ff63.dir/src.cxx.o -MF CMakeFiles/cmTC_4ff63.dir/src.cxx.o.d -o CMakeFiles/cmTC_4ff63.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  979. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:8:1: error: static_assert failed due to requirement 'sizeof(void *) == 4' "fail"
  980. static_assert(sizeof(void *) == 4, "fail");
  981. ^ ~~~~~~~~~~~~~~~~~~~
  982. 1 error generated.
  983. ninja: build stopped: subcommand failed.
  984.  
  985.  
  986. Source file was:
  987.  
  988.  
  989.  
  990. int main(int argc, char **argv)
  991. {
  992. (void)argc; (void)argv;
  993. /* BEGIN TEST: */
  994. static_assert(sizeof(void *) == 4, "fail");
  995. /* END TEST: */
  996. return 0;
  997. }
  998.  
  999. Performing C++ SOURCE FILE Test HAVE_arm_thumb failed with the following output:
  1000. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1001.  
  1002. Run Build Command(s):/opt/local/bin/ninja cmTC_7d8d2 && [1/2] Building CXX object CMakeFiles/cmTC_7d8d2.dir/src.cxx.o
  1003. FAILED: CMakeFiles/cmTC_7d8d2.dir/src.cxx.o
  1004. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_arm_thumb -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_7d8d2.dir/src.cxx.o -MF CMakeFiles/cmTC_7d8d2.dir/src.cxx.o.d -o CMakeFiles/cmTC_7d8d2.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  1005. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:16:6: error: "fail"
  1006. # error "fail"
  1007. ^
  1008. 1 error generated.
  1009. ninja: build stopped: subcommand failed.
  1010.  
  1011.  
  1012. Source file was:
  1013.  
  1014.  
  1015.  
  1016. int main(int argc, char **argv)
  1017. {
  1018. (void)argc; (void)argv;
  1019. /* BEGIN TEST: */
  1020. #if defined(thumb2) || defined(__thumb2__)
  1021. # define THUMB_OK
  1022. #elif (defined(__thumb) || defined(__thumb__)) && __TARGET_ARCH_THUMB-0 == 4
  1023. # define THUMB_OK
  1024. #elif defined(__ARM_ARCH_ISA_THUMB) && __ARM_ARCH_ISA_THUMB == 2
  1025. // clang 3.5 and later will set this if the core supports the Thumb-2 ISA.
  1026. # define THUMB_OK
  1027. #else
  1028. # error "fail"
  1029. #endif
  1030. /* END TEST: */
  1031. return 0;
  1032. }
  1033.  
  1034. Performing C++ SOURCE FILE Test HAVE_ICONV failed with the following output:
  1035. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1036.  
  1037. Run Build Command(s):/opt/local/bin/ninja cmTC_00ed7 && [1/2] Building CXX object CMakeFiles/cmTC_00ed7.dir/src.cxx.o
  1038. [2/2] Linking CXX executable cmTC_00ed7
  1039. FAILED: cmTC_00ed7
  1040. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_00ed7.dir/src.cxx.o -o cmTC_00ed7 && :
  1041. Undefined symbols for architecture x86_64:
  1042. "_iconv_close", referenced from:
  1043. _main in src.cxx.o
  1044. "_iconv_open", referenced from:
  1045. _main in src.cxx.o
  1046. ld: symbol(s) not found for architecture x86_64
  1047. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  1048. ninja: build stopped: subcommand failed.
  1049.  
  1050.  
  1051. Source file was:
  1052. #include <iconv.h>
  1053.  
  1054. int main(int, char **)
  1055. {
  1056. iconv_t x = iconv_open("", "");
  1057. iconv_close(x);
  1058. return 0;
  1059. }
  1060. Performing C++ SOURCE FILE Test HAVE_ICONV_WITH_LIB failed with the following output:
  1061. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1062.  
  1063. Run Build Command(s):/opt/local/bin/ninja cmTC_6c598 && [1/2] Building CXX object CMakeFiles/cmTC_6c598.dir/src.cxx.o
  1064. [2/2] Linking CXX executable cmTC_6c598
  1065. FAILED: cmTC_6c598
  1066. : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_6c598.dir/src.cxx.o -o cmTC_6c598 && :
  1067. Undefined symbols for architecture x86_64:
  1068. "_iconv_close", referenced from:
  1069. _main in src.cxx.o
  1070. "_iconv_open", referenced from:
  1071. _main in src.cxx.o
  1072. ld: symbol(s) not found for architecture x86_64
  1073. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  1074. ninja: build stopped: subcommand failed.
  1075.  
  1076.  
  1077. Source file was:
  1078. #include <iconv.h>
  1079.  
  1080. int main(int, char **)
  1081. {
  1082. iconv_t x = iconv_open("", "");
  1083. iconv_close(x);
  1084. return 0;
  1085. }
  1086. Performing C++ SOURCE FILE Test HAVE_ntddmodm failed with the following output:
  1087. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1088.  
  1089. Run Build Command(s):/opt/local/bin/ninja cmTC_8ccc7 && [1/2] Building CXX object CMakeFiles/cmTC_8ccc7.dir/src.cxx.o
  1090. FAILED: CMakeFiles/cmTC_8ccc7.dir/src.cxx.o
  1091. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_ntddmodm -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_8ccc7.dir/src.cxx.o -MF CMakeFiles/cmTC_8ccc7.dir/src.cxx.o.d -o CMakeFiles/cmTC_8ccc7.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  1092. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:2:10: fatal error: 'windows.h' file not found
  1093. #include <windows.h>
  1094. ^~~~~~~~~~~
  1095. 1 error generated.
  1096. ninja: build stopped: subcommand failed.
  1097.  
  1098.  
  1099. Source file was:
  1100.  
  1101. #include <windows.h>
  1102. #include <ntddmodm.h>
  1103.  
  1104. int main(int argc, char **argv)
  1105. {
  1106. (void)argc; (void)argv;
  1107. /* BEGIN TEST: */
  1108. GUID guid = GUID_DEVINTERFACE_MODEM;
  1109. /* END TEST: */
  1110. return 0;
  1111. }
  1112.  
  1113. Performing C++ SOURCE FILE Test HAVE_uacpp failed with the following output:
  1114. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1115.  
  1116. Run Build Command(s):/opt/local/bin/ninja cmTC_87241 && [1/2] Building CXX object CMakeFiles/cmTC_87241.dir/src.cxx.o
  1117. FAILED: CMakeFiles/cmTC_87241.dir/src.cxx.o
  1118. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_uacpp -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_87241.dir/src.cxx.o -MF CMakeFiles/cmTC_87241.dir/src.cxx.o.d -o CMakeFiles/cmTC_87241.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  1119. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:3:10: fatal error: 'uaplatformlayer.h' file not found
  1120. #include <uaplatformlayer.h>
  1121. ^~~~~~~~~~~~~~~~~~~
  1122. 1 error generated.
  1123. ninja: build stopped: subcommand failed.
  1124.  
  1125.  
  1126. Source file was:
  1127. #include <stdio.h>
  1128.  
  1129. #include <uaplatformlayer.h>
  1130. #include <uastring.h>
  1131. #include <uasession.h>
  1132.  
  1133. using namespace UaClientSdk;
  1134.  
  1135. int main(int /*argc*/, char ** /*argv*/)
  1136. {
  1137.  
  1138. UaPlatformLayer::init();
  1139. UaSession *session = new UaSession;
  1140.  
  1141. UaPlatformLayer::cleanup();
  1142. return 0;
  1143. }
  1144. Performing C++ SOURCE FILE Test HAVE_khr failed with the following output:
  1145. Change Dir: /Users/soulalex/qt5/CMakeFiles/CMakeTmp
  1146.  
  1147. Run Build Command(s):/opt/local/bin/ninja cmTC_d117f && [1/2] Building CXX object CMakeFiles/cmTC_d117f.dir/src.cxx.o
  1148. FAILED: CMakeFiles/cmTC_d117f.dir/src.cxx.o
  1149. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DHAVE_khr -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.14 -fPIE -std=gnu++17 -MD -MT CMakeFiles/cmTC_d117f.dir/src.cxx.o -MF CMakeFiles/cmTC_d117f.dir/src.cxx.o.d -o CMakeFiles/cmTC_d117f.dir/src.cxx.o -c /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx
  1150. /Users/soulalex/qt5/CMakeFiles/CMakeTmp/src.cxx:2:10: fatal error: 'KHR/khrplatform.h' file not found
  1151. #include <KHR/khrplatform.h>
  1152. ^~~~~~~~~~~~~~~~~~~
  1153. 1 error generated.
  1154. ninja: build stopped: subcommand failed.
  1155.  
  1156.  
  1157. Source file was:
  1158.  
  1159. #include <KHR/khrplatform.h>
  1160. int main(void) {
  1161. return 0;
  1162. }
  1163.  
Add Comment
Please, Sign In to add comment