Advertisement
Guest User

CMakeError.log

a guest
Apr 11th, 2021
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 122.30 KB | None | 0 0
  1. Determining if the function floor exists failed with the following output:
  2. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command(s):/usr/bin/ninja cmTC_d867c && [1/2] Building C object CMakeFiles/cmTC_d867c.dir/CheckFunctionExists.c.o
  5. <command-line>: warning: conflicting types for built-in function 'floor'; expected 'double(double)' [-Wbuiltin-declaration-mismatch]
  6. /usr/share/cmake-3.19/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS'
  7.     7 |   CHECK_FUNCTION_EXISTS(void);
  8.       |   ^~~~~~~~~~~~~~~~~~~~~
  9. /usr/share/cmake-3.19/Modules/CheckFunctionExists.c:1:1: note: 'floor' is declared in header '<math.h>'
  10.   +++ |+#include <math.h>
  11.     1 | #ifdef CHECK_FUNCTION_EXISTS
  12. [2/2] Linking C executable cmTC_d867c
  13. FAILED: cmTC_d867c
  14. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=floor -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_d867c.dir/CheckFunctionExists.c.o -o cmTC_d867c   && :
  15. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_d867c.dir/CheckFunctionExists.c.o: in function `main':
  16. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `floor'
  17. collect2: error: ld returned 1 exit status
  18. ninja: build stopped: subcommand failed.
  19.  
  20.  
  21.  
  22. Determining if the function crypt exists failed with the following output:
  23. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  24.  
  25. Run Build Command(s):/usr/bin/ninja cmTC_fd39d && [1/2] Building C object CMakeFiles/cmTC_fd39d.dir/CheckFunctionExists.c.o
  26. [2/2] Linking C executable cmTC_fd39d
  27. FAILED: cmTC_fd39d
  28. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=crypt -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_fd39d.dir/CheckFunctionExists.c.o -o cmTC_fd39d   && :
  29. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_fd39d.dir/CheckFunctionExists.c.o: in function `main':
  30. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `crypt'
  31. collect2: error: ld returned 1 exit status
  32. ninja: build stopped: subcommand failed.
  33.  
  34.  
  35.  
  36. Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
  37. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  38.  
  39. Run Build Command(s):/usr/bin/ninja cmTC_a9214 && [1/2] Building C object CMakeFiles/cmTC_a9214.dir/src.c.o
  40. [2/2] Linking C executable cmTC_a9214
  41. FAILED: cmTC_a9214
  42. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_a9214.dir/src.c.o -o cmTC_a9214   && :
  43. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a9214.dir/src.c.o: in function `main':
  44. src.c:(.text.startup+0x1c): undefined reference to `pthread_create'
  45. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x24): undefined reference to `pthread_detach'
  46. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x2c): undefined reference to `pthread_cancel'
  47. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x38): undefined reference to `pthread_join'
  48. collect2: error: ld returned 1 exit status
  49. ninja: build stopped: subcommand failed.
  50.  
  51.  
  52. Source file was:
  53. #include <pthread.h>
  54.  
  55. static void* test_func(void* data)
  56. {
  57.  return data;
  58. }
  59.  
  60. int main(void)
  61. {
  62.  pthread_t thread;
  63.  pthread_create(&thread, NULL, test_func, NULL);
  64.  pthread_detach(thread);
  65.  pthread_cancel(thread);
  66.  pthread_join(thread, NULL);
  67.  pthread_atfork(NULL, NULL, NULL);
  68.  pthread_exit(NULL);
  69.  
  70.  return 0;
  71. }
  72.  
  73. Determining if the function pthread_create exists in the pthreads failed with the following output:
  74. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  75.  
  76. Run Build Command(s):/usr/bin/ninja cmTC_e7a19 && [1/2] Building C object CMakeFiles/cmTC_e7a19.dir/CheckFunctionExists.c.o
  77. [2/2] Linking C executable cmTC_e7a19
  78. FAILED: cmTC_e7a19
  79. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=pthread_create -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_e7a19.dir/CheckFunctionExists.c.o -o cmTC_e7a19  -lpthreads && :
  80. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lpthreads
  81. collect2: error: ld returned 1 exit status
  82. ninja: build stopped: subcommand failed.
  83.  
  84.  
  85.  
  86. Determining if files ieeefp.h exist failed with the following output:
  87. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  88.  
  89. Run Build Command(s):/usr/bin/ninja cmTC_e0c42 && [1/2] Building C object CMakeFiles/cmTC_e0c42.dir/HAVE_IEEEFP_H.c.o
  90. FAILED: CMakeFiles/cmTC_e0c42.dir/HAVE_IEEEFP_H.c.o
  91. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_e0c42.dir/HAVE_IEEEFP_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IEEEFP_H.c
  92. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IEEEFP_H.c:2:10: fatal error: ieeefp.h: No such file or directory
  93.    2 | #include <ieeefp.h>
  94.      |          ^~~~~~~~~~
  95. compilation terminated.
  96. ninja: build stopped: subcommand failed.
  97.  
  98.  
  99. Source:
  100. /* */
  101. #include <ieeefp.h>
  102.  
  103.  
  104. int main(void){return 0;}
  105.  
  106. Determining if files ndir.h exist failed with the following output:
  107. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  108.  
  109. Run Build Command(s):/usr/bin/ninja cmTC_8b731 && [1/2] Building C object CMakeFiles/cmTC_8b731.dir/HAVE_NDIR_H.c.o
  110. FAILED: CMakeFiles/cmTC_8b731.dir/HAVE_NDIR_H.c.o
  111. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_8b731.dir/HAVE_NDIR_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_NDIR_H.c
  112. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_NDIR_H.c:2:10: fatal error: ndir.h: No such file or directory
  113.    2 | #include <ndir.h>
  114.      |          ^~~~~~~~
  115. compilation terminated.
  116. ninja: build stopped: subcommand failed.
  117.  
  118.  
  119. Source:
  120. /* */
  121. #include <ndir.h>
  122.  
  123.  
  124. int main(void){return 0;}
  125.  
  126. Determining if files select.h exist failed with the following output:
  127. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  128.  
  129. Run Build Command(s):/usr/bin/ninja cmTC_c2e06 && [1/2] Building C object CMakeFiles/cmTC_c2e06.dir/HAVE_SELECT_H.c.o
  130. FAILED: CMakeFiles/cmTC_c2e06.dir/HAVE_SELECT_H.c.o
  131. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_c2e06.dir/HAVE_SELECT_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SELECT_H.c
  132. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SELECT_H.c:2:10: fatal error: select.h: No such file or directory
  133.    2 | #include <select.h>
  134.      |          ^~~~~~~~~~
  135. compilation terminated.
  136. ninja: build stopped: subcommand failed.
  137.  
  138.  
  139. Source:
  140. /* */
  141. #include <select.h>
  142.  
  143.  
  144. int main(void){return 0;}
  145.  
  146. Determining if files sys/types.h;sys/event.h exist failed with the following output:
  147. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  148.  
  149. Run Build Command(s):/usr/bin/ninja cmTC_a51a2 && [1/2] Building C object CMakeFiles/cmTC_a51a2.dir/HAVE_SYS_EVENT_H.c.o
  150. FAILED: CMakeFiles/cmTC_a51a2.dir/HAVE_SYS_EVENT_H.c.o
  151. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_a51a2.dir/HAVE_SYS_EVENT_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EVENT_H.c
  152. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EVENT_H.c:3:10: fatal error: sys/event.h: No such file or directory
  153.    3 | #include <sys/event.h>
  154.      |          ^~~~~~~~~~~~~
  155. compilation terminated.
  156. ninja: build stopped: subcommand failed.
  157.  
  158.  
  159. Source:
  160. /* */
  161. #include <sys/types.h>
  162. #include <sys/event.h>
  163.  
  164.  
  165. int main(void){return 0;}
  166.  
  167. Determining if files sys/ndir.h exist failed with the following output:
  168. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  169.  
  170. Run Build Command(s):/usr/bin/ninja cmTC_f7c5b && [1/2] Building C object CMakeFiles/cmTC_f7c5b.dir/HAVE_SYS_NDIR_H.c.o
  171. FAILED: CMakeFiles/cmTC_f7c5b.dir/HAVE_SYS_NDIR_H.c.o
  172. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_f7c5b.dir/HAVE_SYS_NDIR_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_NDIR_H.c
  173. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_NDIR_H.c:2:10: fatal error: sys/ndir.h: No such file or directory
  174.    2 | #include <sys/ndir.h>
  175.      |          ^~~~~~~~~~~~
  176. compilation terminated.
  177. ninja: build stopped: subcommand failed.
  178.  
  179.  
  180. Source:
  181. /* */
  182. #include <sys/ndir.h>
  183.  
  184.  
  185. int main(void){return 0;}
  186.  
  187. Determining if files sys/pte.h exist failed with the following output:
  188. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  189.  
  190. Run Build Command(s):/usr/bin/ninja cmTC_86ef3 && [1/2] Building C object CMakeFiles/cmTC_86ef3.dir/HAVE_SYS_PTE_H.c.o
  191. FAILED: CMakeFiles/cmTC_86ef3.dir/HAVE_SYS_PTE_H.c.o
  192. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_86ef3.dir/HAVE_SYS_PTE_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PTE_H.c
  193. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PTE_H.c:2:10: fatal error: sys/pte.h: No such file or directory
  194.    2 | #include <sys/pte.h>
  195.      |          ^~~~~~~~~~~
  196. compilation terminated.
  197. ninja: build stopped: subcommand failed.
  198.  
  199.  
  200. Source:
  201. /* */
  202. #include <sys/pte.h>
  203.  
  204.  
  205. int main(void){return 0;}
  206.  
  207. Determining if files synch.h exist failed with the following output:
  208. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  209.  
  210. Run Build Command(s):/usr/bin/ninja cmTC_ed7ef && [1/2] Building C object CMakeFiles/cmTC_ed7ef.dir/HAVE_SYNCH_H.c.o
  211. FAILED: CMakeFiles/cmTC_ed7ef.dir/HAVE_SYNCH_H.c.o
  212. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_ed7ef.dir/HAVE_SYNCH_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYNCH_H.c
  213. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYNCH_H.c:2:10: fatal error: synch.h: No such file or directory
  214.    2 | #include <synch.h>
  215.      |          ^~~~~~~~~
  216. compilation terminated.
  217. ninja: build stopped: subcommand failed.
  218.  
  219.  
  220. Source:
  221. /* */
  222. #include <synch.h>
  223.  
  224.  
  225. int main(void){return 0;}
  226.  
  227. Determining if files sysent.h exist failed with the following output:
  228. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  229.  
  230. Run Build Command(s):/usr/bin/ninja cmTC_37443 && [1/2] Building C object CMakeFiles/cmTC_37443.dir/HAVE_SYSENT_H.c.o
  231. FAILED: CMakeFiles/cmTC_37443.dir/HAVE_SYSENT_H.c.o
  232. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_37443.dir/HAVE_SYSENT_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYSENT_H.c
  233. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYSENT_H.c:2:10: fatal error: sysent.h: No such file or directory
  234.    2 | #include <sysent.h>
  235.      |          ^~~~~~~~~~
  236. compilation terminated.
  237. ninja: build stopped: subcommand failed.
  238.  
  239.  
  240. Source:
  241. /* */
  242. #include <sysent.h>
  243.  
  244.  
  245. int main(void){return 0;}
  246.  
  247. Determining if files sys/fpu.h exist failed with the following output:
  248. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  249.  
  250. Run Build Command(s):/usr/bin/ninja cmTC_c1629 && [1/2] Building C object CMakeFiles/cmTC_c1629.dir/HAVE_SYS_FPU_H.c.o
  251. FAILED: CMakeFiles/cmTC_c1629.dir/HAVE_SYS_FPU_H.c.o
  252. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_c1629.dir/HAVE_SYS_FPU_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FPU_H.c
  253. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FPU_H.c:2:10: fatal error: sys/fpu.h: No such file or directory
  254.    2 | #include <sys/fpu.h>
  255.      |          ^~~~~~~~~~~
  256. compilation terminated.
  257. ninja: build stopped: subcommand failed.
  258.  
  259.  
  260. Source:
  261. /* */
  262. #include <sys/fpu.h>
  263.  
  264.  
  265. int main(void){return 0;}
  266.  
  267. Determining if files sys/types.h;sys/malloc.h exist failed with the following output:
  268. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  269.  
  270. Run Build Command(s):/usr/bin/ninja cmTC_67dfa && [1/2] Building C object CMakeFiles/cmTC_67dfa.dir/HAVE_SYS_MALLOC_H.c.o
  271. FAILED: CMakeFiles/cmTC_67dfa.dir/HAVE_SYS_MALLOC_H.c.o
  272. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_67dfa.dir/HAVE_SYS_MALLOC_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MALLOC_H.c
  273. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MALLOC_H.c:3:10: fatal error: sys/malloc.h: No such file or directory
  274.    3 | #include <sys/malloc.h>
  275.      |          ^~~~~~~~~~~~~~
  276. compilation terminated.
  277. ninja: build stopped: subcommand failed.
  278.  
  279.  
  280. Source:
  281. /* */
  282. #include <sys/types.h>
  283. #include <sys/malloc.h>
  284.  
  285.  
  286. int main(void){return 0;}
  287.  
  288. Determining if files sys/stream.h exist failed with the following output:
  289. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  290.  
  291. Run Build Command(s):/usr/bin/ninja cmTC_f99c9 && [1/2] Building C object CMakeFiles/cmTC_f99c9.dir/HAVE_SYS_STREAM_H.c.o
  292. FAILED: CMakeFiles/cmTC_f99c9.dir/HAVE_SYS_STREAM_H.c.o
  293. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_f99c9.dir/HAVE_SYS_STREAM_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_STREAM_H.c
  294. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_STREAM_H.c:2:10: fatal error: sys/stream.h: No such file or directory
  295.    2 | #include <sys/stream.h>
  296.      |          ^~~~~~~~~~~~~~
  297. compilation terminated.
  298. ninja: build stopped: subcommand failed.
  299.  
  300.  
  301. Source:
  302. /* */
  303. #include <sys/stream.h>
  304.  
  305.  
  306. int main(void){return 0;}
  307.  
  308. Determining if files termbits.h exist failed with the following output:
  309. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  310.  
  311. Run Build Command(s):/usr/bin/ninja cmTC_8b8d1 && [1/2] Building C object CMakeFiles/cmTC_8b8d1.dir/HAVE_TERMBITS_H.c.o
  312. FAILED: CMakeFiles/cmTC_8b8d1.dir/HAVE_TERMBITS_H.c.o
  313. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_8b8d1.dir/HAVE_TERMBITS_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_TERMBITS_H.c
  314. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_TERMBITS_H.c:2:10: fatal error: termbits.h: No such file or directory
  315.    2 | #include <termbits.h>
  316.      |          ^~~~~~~~~~~~
  317. compilation terminated.
  318. ninja: build stopped: subcommand failed.
  319.  
  320.  
  321. Source:
  322. /* */
  323. #include <termbits.h>
  324.  
  325.  
  326. int main(void){return 0;}
  327.  
  328. Determining if files varargs.h exist failed with the following output:
  329. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  330.  
  331. Run Build Command(s):/usr/bin/ninja cmTC_28a0e && [1/2] Building C object CMakeFiles/cmTC_28a0e.dir/HAVE_VARARGS_H.c.o
  332. FAILED: CMakeFiles/cmTC_28a0e.dir/HAVE_VARARGS_H.c.o
  333. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_28a0e.dir/HAVE_VARARGS_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_VARARGS_H.c
  334. In file included from /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_VARARGS_H.c:2:
  335. /usr/lib/gcc/aarch64-linux-gnu/10.2/include/varargs.h:4:2: error: #error "GCC no longer implements <varargs.h>."
  336.    4 | #error "GCC no longer implements <varargs.h>."
  337.      |  ^~~~~
  338. /usr/lib/gcc/aarch64-linux-gnu/10.2/include/varargs.h:5:2: error: #error "Revise your code to use <stdarg.h>."
  339.    5 | #error "Revise your code to use <stdarg.h>."
  340.      |  ^~~~~
  341. ninja: build stopped: subcommand failed.
  342.  
  343.  
  344. Source:
  345. /* */
  346. #include <varargs.h>
  347.  
  348.  
  349. int main(void){return 0;}
  350.  
  351. Determining if files sys/utime.h exist failed with the following output:
  352. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  353.  
  354. Run Build Command(s):/usr/bin/ninja cmTC_759e6 && [1/2] Building C object CMakeFiles/cmTC_759e6.dir/HAVE_SYS_UTIME_H.c.o
  355. FAILED: CMakeFiles/cmTC_759e6.dir/HAVE_SYS_UTIME_H.c.o
  356. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_759e6.dir/HAVE_SYS_UTIME_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_UTIME_H.c
  357. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_UTIME_H.c:2:10: fatal error: sys/utime.h: No such file or directory
  358.    2 | #include <sys/utime.h>
  359.      |          ^~~~~~~~~~~~~
  360. compilation terminated.
  361. ninja: build stopped: subcommand failed.
  362.  
  363.  
  364. Source:
  365. /* */
  366. #include <sys/utime.h>
  367.  
  368.  
  369. int main(void){return 0;}
  370.  
  371. Determining if files sys/vadvise.h exist failed with the following output:
  372. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  373.  
  374. Run Build Command(s):/usr/bin/ninja cmTC_55bb9 && [1/2] Building C object CMakeFiles/cmTC_55bb9.dir/HAVE_SYS_VADVISE_H.c.o
  375. FAILED: CMakeFiles/cmTC_55bb9.dir/HAVE_SYS_VADVISE_H.c.o
  376. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_55bb9.dir/HAVE_SYS_VADVISE_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_VADVISE_H.c
  377. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_VADVISE_H.c:2:10: fatal error: sys/vadvise.h: No such file or directory
  378.    2 | #include <sys/vadvise.h>
  379.      |          ^~~~~~~~~~~~~~~
  380. compilation terminated.
  381. ninja: build stopped: subcommand failed.
  382.  
  383.  
  384. Source:
  385. /* */
  386. #include <sys/vadvise.h>
  387.  
  388.  
  389. int main(void){return 0;}
  390.  
  391. Determining if files sys/sockio.h exist failed with the following output:
  392. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  393.  
  394. Run Build Command(s):/usr/bin/ninja cmTC_bb6da && [1/2] Building C object CMakeFiles/cmTC_bb6da.dir/HAVE_SYS_SOCKIO_H.c.o
  395. FAILED: CMakeFiles/cmTC_bb6da.dir/HAVE_SYS_SOCKIO_H.c.o
  396. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_bb6da.dir/HAVE_SYS_SOCKIO_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c
  397. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c:2:10: fatal error: sys/sockio.h: No such file or directory
  398.    2 | #include <sys/sockio.h>
  399.      |          ^~~~~~~~~~~~~~
  400. compilation terminated.
  401. ninja: build stopped: subcommand failed.
  402.  
  403.  
  404. Source:
  405. /* */
  406. #include <sys/sockio.h>
  407.  
  408.  
  409. int main(void){return 0;}
  410.  
  411. Determining if files bfd.h exist failed with the following output:
  412. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  413.  
  414. Run Build Command(s):/usr/bin/ninja cmTC_66b75 && [1/2] Building C object CMakeFiles/cmTC_66b75.dir/BFD_H_EXISTS.c.o
  415. FAILED: CMakeFiles/cmTC_66b75.dir/BFD_H_EXISTS.c.o
  416. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_66b75.dir/BFD_H_EXISTS.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/BFD_H_EXISTS.c
  417. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/BFD_H_EXISTS.c:2:10: fatal error: bfd.h: No such file or directory
  418.    2 | #include <bfd.h>
  419.      |          ^~~~~~~
  420. compilation terminated.
  421. ninja: build stopped: subcommand failed.
  422.  
  423.  
  424. Source:
  425. /* */
  426. #include <bfd.h>
  427.  
  428.  
  429. int main(void){return 0;}
  430.  
  431. Determining if files sys/ptem.h exist failed with the following output:
  432. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  433.  
  434. Run Build Command(s):/usr/bin/ninja cmTC_156d8 && [1/2] Building C object CMakeFiles/cmTC_156d8.dir/HAVE_SYS_PTEM_H.c.o
  435. FAILED: CMakeFiles/cmTC_156d8.dir/HAVE_SYS_PTEM_H.c.o
  436. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_156d8.dir/HAVE_SYS_PTEM_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PTEM_H.c
  437. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PTEM_H.c:2:10: fatal error: sys/ptem.h: No such file or directory
  438.    2 | #include <sys/ptem.h>
  439.      |          ^~~~~~~~~~~~
  440. compilation terminated.
  441. ninja: build stopped: subcommand failed.
  442.  
  443.  
  444. Source:
  445. /* */
  446. #include <sys/ptem.h>
  447.  
  448.  
  449. int main(void){return 0;}
  450.  
  451. Determining if the function printstack exists failed with the following output:
  452. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  453.  
  454. Run Build Command(s):/usr/bin/ninja cmTC_d15bb && [1/2] Building C object CMakeFiles/cmTC_d15bb.dir/CheckFunctionExists.c.o
  455. [2/2] Linking C executable cmTC_d15bb
  456. FAILED: cmTC_d15bb
  457. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=printstack -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_d15bb.dir/CheckFunctionExists.c.o -o cmTC_d15bb  -lm  -lcrypt  -ldl  -lpthread && :
  458. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_d15bb.dir/CheckFunctionExists.c.o: in function `main':
  459. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `printstack'
  460. collect2: error: ld returned 1 exit status
  461. ninja: build stopped: subcommand failed.
  462.  
  463.  
  464.  
  465. Determining if the function bfill exists failed with the following output:
  466. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  467.  
  468. Run Build Command(s):/usr/bin/ninja cmTC_c6ad2 && [1/2] Building C object CMakeFiles/cmTC_c6ad2.dir/CheckFunctionExists.c.o
  469. [2/2] Linking C executable cmTC_c6ad2
  470. FAILED: cmTC_c6ad2
  471. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=bfill -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_c6ad2.dir/CheckFunctionExists.c.o -o cmTC_c6ad2  -lm  -lcrypt  -ldl  -lpthread && :
  472. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_c6ad2.dir/CheckFunctionExists.c.o: in function `main':
  473. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `bfill'
  474. collect2: error: ld returned 1 exit status
  475. ninja: build stopped: subcommand failed.
  476.  
  477.  
  478.  
  479. Determining if the function compress exists failed with the following output:
  480. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  481.  
  482. Run Build Command(s):/usr/bin/ninja cmTC_1b3e7 && [1/2] Building C object CMakeFiles/cmTC_1b3e7.dir/CheckFunctionExists.c.o
  483. [2/2] Linking C executable cmTC_1b3e7
  484. FAILED: cmTC_1b3e7
  485. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=compress -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_1b3e7.dir/CheckFunctionExists.c.o -o cmTC_1b3e7  -lm  -lcrypt  -ldl  -lpthread && :
  486. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_1b3e7.dir/CheckFunctionExists.c.o: in function `main':
  487. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `compress'
  488. collect2: error: ld returned 1 exit status
  489. ninja: build stopped: subcommand failed.
  490.  
  491.  
  492.  
  493. Determining if the function gethrtime exists failed with the following output:
  494. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  495.  
  496. Run Build Command(s):/usr/bin/ninja cmTC_cc3d7 && [1/2] Building C object CMakeFiles/cmTC_cc3d7.dir/CheckFunctionExists.c.o
  497. [2/2] Linking C executable cmTC_cc3d7
  498. FAILED: cmTC_cc3d7
  499. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=gethrtime -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_cc3d7.dir/CheckFunctionExists.c.o -o cmTC_cc3d7  -lm  -lcrypt  -ldl  -lpthread && :
  500. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_cc3d7.dir/CheckFunctionExists.c.o: in function `main':
  501. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `gethrtime'
  502. collect2: error: ld returned 1 exit status
  503. ninja: build stopped: subcommand failed.
  504.  
  505.  
  506.  
  507. Determining if the function getpassphrase exists failed with the following output:
  508. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  509.  
  510. Run Build Command(s):/usr/bin/ninja cmTC_650c8 && [1/2] Building C object CMakeFiles/cmTC_650c8.dir/CheckFunctionExists.c.o
  511. [2/2] Linking C executable cmTC_650c8
  512. FAILED: cmTC_650c8
  513. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=getpassphrase -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_650c8.dir/CheckFunctionExists.c.o -o cmTC_650c8  -lm  -lcrypt  -ldl  -lpthread && :
  514. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_650c8.dir/CheckFunctionExists.c.o: in function `main':
  515. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `getpassphrase'
  516. collect2: error: ld returned 1 exit status
  517. ninja: build stopped: subcommand failed.
  518.  
  519.  
  520.  
  521. Determining if the function pthread_attr_create exists failed with the following output:
  522. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  523.  
  524. Run Build Command(s):/usr/bin/ninja cmTC_7ed01 && [1/2] Building C object CMakeFiles/cmTC_7ed01.dir/CheckFunctionExists.c.o
  525. [2/2] Linking C executable cmTC_7ed01
  526. FAILED: cmTC_7ed01
  527. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=pthread_attr_create -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_7ed01.dir/CheckFunctionExists.c.o -o cmTC_7ed01  -lm  -lcrypt  -ldl  -lpthread && :
  528. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_7ed01.dir/CheckFunctionExists.c.o: in function `main':
  529. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_attr_create'
  530. collect2: error: ld returned 1 exit status
  531. ninja: build stopped: subcommand failed.
  532.  
  533.  
  534.  
  535. Determining if the function pthread_condattr_create exists failed with the following output:
  536. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  537.  
  538. Run Build Command(s):/usr/bin/ninja cmTC_a0093 && [1/2] Building C object CMakeFiles/cmTC_a0093.dir/CheckFunctionExists.c.o
  539. [2/2] Linking C executable cmTC_a0093
  540. FAILED: cmTC_a0093
  541. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=pthread_condattr_create -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_a0093.dir/CheckFunctionExists.c.o -o cmTC_a0093  -lm  -lcrypt  -ldl  -lpthread && :
  542. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a0093.dir/CheckFunctionExists.c.o: in function `main':
  543. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_condattr_create'
  544. collect2: error: ld returned 1 exit status
  545. ninja: build stopped: subcommand failed.
  546.  
  547.  
  548.  
  549. Determining if the function pthread_yield_np exists failed with the following output:
  550. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  551.  
  552. Run Build Command(s):/usr/bin/ninja cmTC_8f7dd && [1/2] Building C object CMakeFiles/cmTC_8f7dd.dir/CheckFunctionExists.c.o
  553. [2/2] Linking C executable cmTC_8f7dd
  554. FAILED: cmTC_8f7dd
  555. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=pthread_yield_np -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_8f7dd.dir/CheckFunctionExists.c.o -o cmTC_8f7dd  -lm  -lcrypt  -ldl  -lpthread && :
  556. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_8f7dd.dir/CheckFunctionExists.c.o: in function `main':
  557. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_yield_np'
  558. collect2: error: ld returned 1 exit status
  559. ninja: build stopped: subcommand failed.
  560.  
  561.  
  562.  
  563. Determining if the function rwlock_init exists failed with the following output:
  564. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  565.  
  566. Run Build Command(s):/usr/bin/ninja cmTC_ff7b4 && [1/2] Building C object CMakeFiles/cmTC_ff7b4.dir/CheckFunctionExists.c.o
  567. [2/2] Linking C executable cmTC_ff7b4
  568. FAILED: cmTC_ff7b4
  569. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=rwlock_init -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_ff7b4.dir/CheckFunctionExists.c.o -o cmTC_ff7b4  -lm  -lcrypt  -ldl  -lpthread && :
  570. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_ff7b4.dir/CheckFunctionExists.c.o: in function `main':
  571. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `rwlock_init'
  572. collect2: error: ld returned 1 exit status
  573. ninja: build stopped: subcommand failed.
  574.  
  575.  
  576.  
  577. Determining if the function sigthreadmask exists failed with the following output:
  578. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  579.  
  580. Run Build Command(s):/usr/bin/ninja cmTC_05b16 && [1/2] Building C object CMakeFiles/cmTC_05b16.dir/CheckFunctionExists.c.o
  581. [2/2] Linking C executable cmTC_05b16
  582. FAILED: cmTC_05b16
  583. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=sigthreadmask -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_05b16.dir/CheckFunctionExists.c.o -o cmTC_05b16  -lm  -lcrypt  -ldl  -lpthread && :
  584. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_05b16.dir/CheckFunctionExists.c.o: in function `main':
  585. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `sigthreadmask'
  586. collect2: error: ld returned 1 exit status
  587. ninja: build stopped: subcommand failed.
  588.  
  589.  
  590.  
  591. Determining if the function tell exists failed with the following output:
  592. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  593.  
  594. Run Build Command(s):/usr/bin/ninja cmTC_a3e35 && [1/2] Building C object CMakeFiles/cmTC_a3e35.dir/CheckFunctionExists.c.o
  595. [2/2] Linking C executable cmTC_a3e35
  596. FAILED: cmTC_a3e35
  597. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=tell -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_a3e35.dir/CheckFunctionExists.c.o -o cmTC_a3e35  -lm  -lcrypt  -ldl  -lpthread && :
  598. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a3e35.dir/CheckFunctionExists.c.o: in function `main':
  599. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `tell'
  600. collect2: error: ld returned 1 exit status
  601. ninja: build stopped: subcommand failed.
  602.  
  603.  
  604.  
  605. Determining if the function thr_setconcurrency exists failed with the following output:
  606. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  607.  
  608. Run Build Command(s):/usr/bin/ninja cmTC_90d04 && [1/2] Building C object CMakeFiles/cmTC_90d04.dir/CheckFunctionExists.c.o
  609. [2/2] Linking C executable cmTC_90d04
  610. FAILED: cmTC_90d04
  611. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=thr_setconcurrency -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_90d04.dir/CheckFunctionExists.c.o -o cmTC_90d04  -lm  -lcrypt  -ldl  -lpthread && :
  612. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_90d04.dir/CheckFunctionExists.c.o: in function `main':
  613. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `thr_setconcurrency'
  614. collect2: error: ld returned 1 exit status
  615. ninja: build stopped: subcommand failed.
  616.  
  617.  
  618.  
  619. Determining if the function thr_yield exists failed with the following output:
  620. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  621.  
  622. Run Build Command(s):/usr/bin/ninja cmTC_8b531 && [1/2] Building C object CMakeFiles/cmTC_8b531.dir/CheckFunctionExists.c.o
  623. [2/2] Linking C executable cmTC_8b531
  624. FAILED: cmTC_8b531
  625. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=thr_yield -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_8b531.dir/CheckFunctionExists.c.o -o cmTC_8b531  -lm  -lcrypt  -ldl  -lpthread && :
  626. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_8b531.dir/CheckFunctionExists.c.o: in function `main':
  627. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `thr_yield'
  628. collect2: error: ld returned 1 exit status
  629. ninja: build stopped: subcommand failed.
  630.  
  631.  
  632.  
  633. Performing C++ SOURCE FILE Test HAVE_READDIR_R failed with the following output:
  634. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  635.  
  636. Run Build Command(s):/usr/bin/ninja cmTC_61343 && [1/2] Building CXX object CMakeFiles/cmTC_61343.dir/src.cxx.o
  637. FAILED: CMakeFiles/cmTC_61343.dir/src.cxx.o
  638. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-c++ -DHAVE_READDIR_R -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Werror -o CMakeFiles/cmTC_61343.dir/src.cxx.o -c src.cxx
  639. src.cxx: In function 'int main()':
  640. src.cxx:3:18: error: 'int readdir_r(DIR*, dirent*, dirent**)' is deprecated [-Werror=deprecated-declarations]
  641.    3 |   readdir_r(0,0,0);
  642.      |                  ^
  643. In file included from src.cxx:1:
  644. /usr/aarch64-linux-gnu/usr/include/dirent.h:183:12: note: declared here
  645.  183 | extern int readdir_r (DIR *__restrict __dirp,
  646.      |            ^~~~~~~~~
  647. cc1plus: all warnings being treated as errors
  648. ninja: build stopped: subcommand failed.
  649.  
  650.  
  651. Source file was:
  652. #include  <dirent.h>
  653. int main() {
  654.  readdir_r(0,0,0);
  655.  return 0;
  656.  }
  657. Determining if files ia64intrin.h exist failed with the following output:
  658. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  659.  
  660. Run Build Command(s):/usr/bin/ninja cmTC_af9fe && [1/2] Building C object CMakeFiles/cmTC_af9fe.dir/HAVE_IA64INTRIN_H.c.o
  661. FAILED: CMakeFiles/cmTC_af9fe.dir/HAVE_IA64INTRIN_H.c.o
  662. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_af9fe.dir/HAVE_IA64INTRIN_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IA64INTRIN_H.c
  663. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IA64INTRIN_H.c:2:10: fatal error: ia64intrin.h: No such file or directory
  664.    2 | #include <ia64intrin.h>
  665.      |          ^~~~~~~~~~~~~~
  666. compilation terminated.
  667. ninja: build stopped: subcommand failed.
  668.  
  669.  
  670. Source:
  671. /* */
  672. #include <ia64intrin.h>
  673.  
  674.  
  675. int main(void){return 0;}
  676.  
  677. Determining if the function read_real_time exists failed with the following output:
  678. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  679.  
  680. Run Build Command(s):/usr/bin/ninja cmTC_78090 && [1/2] Building C object CMakeFiles/cmTC_78090.dir/CheckFunctionExists.c.o
  681. [2/2] Linking C executable cmTC_78090
  682. FAILED: cmTC_78090
  683. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=read_real_time -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_78090.dir/CheckFunctionExists.c.o -o cmTC_78090  -lm  -lcrypt  -ldl  -lpthread && :
  684. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_78090.dir/CheckFunctionExists.c.o: in function `main':
  685. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `read_real_time'
  686. collect2: error: ld returned 1 exit status
  687. ninja: build stopped: subcommand failed.
  688.  
  689.  
  690.  
  691. Determining if the getpagesizes exist failed with the following output:
  692. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  693.  
  694. Run Build Command(s):/usr/bin/ninja cmTC_a88c5 && [1/2] Building C object CMakeFiles/cmTC_a88c5.dir/CheckSymbolExists.c.o
  695. FAILED: CMakeFiles/cmTC_a88c5.dir/CheckSymbolExists.c.o
  696. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_a88c5.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c
  697. CheckSymbolExists.c: In function 'main':
  698. CheckSymbolExists.c:8:19: error: 'getpagesizes' undeclared (first use in this function)
  699.    8 |   return ((int*)(&getpagesizes))[argc];
  700.      |                   ^~~~~~~~~~~~
  701. CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
  702. ninja: build stopped: subcommand failed.
  703.  
  704.  
  705. File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  706. /* */
  707. #include <sys/mman.h>
  708.  
  709. int main(int argc, char** argv)
  710. {
  711.  (void)argv;
  712. #ifndef getpagesizes
  713.  return ((int*)(&getpagesizes))[argc];
  714. #else
  715.  (void)argc;
  716.  return 0;
  717. #endif
  718. }
  719. Determining if the TIOCSTAT exist failed with the following output:
  720. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  721.  
  722. Run Build Command(s):/usr/bin/ninja cmTC_b89d8 && [1/2] Building C object CMakeFiles/cmTC_b89d8.dir/CheckSymbolExists.c.o
  723. FAILED: CMakeFiles/cmTC_b89d8.dir/CheckSymbolExists.c.o
  724. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_b89d8.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c
  725. CheckSymbolExists.c: In function 'main':
  726. CheckSymbolExists.c:8:19: error: 'TIOCSTAT' undeclared (first use in this function); did you mean 'TIOCSTI'?
  727.    8 |   return ((int*)(&TIOCSTAT))[argc];
  728.      |                   ^~~~~~~~
  729.      |                   TIOCSTI
  730. CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
  731. ninja: build stopped: subcommand failed.
  732.  
  733.  
  734. File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  735. /* */
  736. #include <sys/ioctl.h>
  737.  
  738. int main(int argc, char** argv)
  739. {
  740.  (void)argv;
  741. #ifndef TIOCSTAT
  742.  return ((int*)(&TIOCSTAT))[argc];
  743. #else
  744.  (void)argc;
  745.  return 0;
  746. #endif
  747. }
  748. Determining if the FIONREAD exist failed with the following output:
  749. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  750.  
  751. Run Build Command(s):/usr/bin/ninja cmTC_0cf53 && [1/2] Building C object CMakeFiles/cmTC_0cf53.dir/CheckSymbolExists.c.o
  752. FAILED: CMakeFiles/cmTC_0cf53.dir/CheckSymbolExists.c.o
  753. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_GNU_SOURCE=1  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_0cf53.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c
  754. CheckSymbolExists.c:2:10: fatal error: sys/filio.h: No such file or directory
  755.    2 | #include <sys/filio.h>
  756.      |          ^~~~~~~~~~~~~
  757. compilation terminated.
  758. ninja: build stopped: subcommand failed.
  759.  
  760.  
  761. File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  762. /* */
  763. #include <sys/filio.h>
  764.  
  765. int main(int argc, char** argv)
  766. {
  767.  (void)argv;
  768. #ifndef FIONREAD
  769.  return ((int*)(&FIONREAD))[argc];
  770. #else
  771.  (void)argc;
  772.  return 0;
  773. #endif
  774. }
  775. Determining size of uchar failed with the following output:
  776. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  777.  
  778. Run Build Command(s):/usr/bin/ninja cmTC_e7668 && [1/2] Building C object CMakeFiles/cmTC_e7668.dir/SIZEOF_UCHAR.c.o
  779. FAILED: CMakeFiles/cmTC_e7668.dir/SIZEOF_UCHAR.c.o
  780. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_e7668.dir/SIZEOF_UCHAR.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c
  781. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:29:22: error: 'uchar' undeclared here (not in a function); did you mean 'u_char'?
  782.   29 | #define SIZE (sizeof(uchar))
  783.      |                      ^~~~~
  784. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:31:12: note: in expansion of macro 'SIZE'
  785.   31 |   ('0' + ((SIZE / 10000)%10)),
  786.      |            ^~~~
  787. ninja: build stopped: subcommand failed.
  788.  
  789.  
  790. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:
  791. #include <sys/types.h>
  792. #include <stdint.h>
  793. #include <stddef.h>
  794. #include "stdio.h"
  795. #include "sys/types.h"
  796.  
  797.  
  798. #undef KEY
  799. #if defined(__i386)
  800. # define KEY '_','_','i','3','8','6'
  801. #elif defined(__x86_64)
  802. # define KEY '_','_','x','8','6','_','6','4'
  803. #elif defined(__PPC64__)
  804. # define KEY '_','_','P','P','C','6','4','_','_'
  805. #elif defined(__ppc64__)
  806. # define KEY '_','_','p','p','c','6','4','_','_'
  807. #elif defined(__PPC__)
  808. # define KEY '_','_','P','P','C','_','_'
  809. #elif defined(__ppc__)
  810. # define KEY '_','_','p','p','c','_','_'
  811. #elif defined(__aarch64__)
  812. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  813. #elif defined(__ARM_ARCH_7A__)
  814. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  815. #elif defined(__ARM_ARCH_7S__)
  816. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  817. #endif
  818.  
  819. #define SIZE (sizeof(uchar))
  820. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  821.  ('0' + ((SIZE / 10000)%10)),
  822.  ('0' + ((SIZE / 1000)%10)),
  823.  ('0' + ((SIZE / 100)%10)),
  824.  ('0' + ((SIZE / 10)%10)),
  825.  ('0' +  (SIZE    % 10)),
  826.  ']',
  827. #ifdef KEY
  828.  ' ','k','e','y','[', KEY, ']',
  829. #endif
  830.  '\0'};
  831.  
  832. #ifdef __CLASSIC_C__
  833. int main(argc, argv) int argc; char *argv[];
  834. #else
  835. int main(int argc, char *argv[])
  836. #endif
  837. {
  838.  int require = 0;
  839.  require += info_size[argc];
  840.  (void)argv;
  841.  return require;
  842. }
  843.  
  844.  
  845. Determining size of int8 failed with the following output:
  846. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  847.  
  848. Run Build Command(s):/usr/bin/ninja cmTC_dff3f && [1/2] Building C object CMakeFiles/cmTC_dff3f.dir/SIZEOF_INT8.c.o
  849. FAILED: CMakeFiles/cmTC_dff3f.dir/SIZEOF_INT8.c.o
  850. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_dff3f.dir/SIZEOF_INT8.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c
  851. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c:29:22: error: 'int8' undeclared here (not in a function); did you mean 'int'?
  852.   29 | #define SIZE (sizeof(int8))
  853.      |                      ^~~~
  854. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c:31:12: note: in expansion of macro 'SIZE'
  855.   31 |   ('0' + ((SIZE / 10000)%10)),
  856.      |            ^~~~
  857. ninja: build stopped: subcommand failed.
  858.  
  859.  
  860. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c:
  861. #include <sys/types.h>
  862. #include <stdint.h>
  863. #include <stddef.h>
  864. #include "stdio.h"
  865. #include "sys/types.h"
  866.  
  867.  
  868. #undef KEY
  869. #if defined(__i386)
  870. # define KEY '_','_','i','3','8','6'
  871. #elif defined(__x86_64)
  872. # define KEY '_','_','x','8','6','_','6','4'
  873. #elif defined(__PPC64__)
  874. # define KEY '_','_','P','P','C','6','4','_','_'
  875. #elif defined(__ppc64__)
  876. # define KEY '_','_','p','p','c','6','4','_','_'
  877. #elif defined(__PPC__)
  878. # define KEY '_','_','P','P','C','_','_'
  879. #elif defined(__ppc__)
  880. # define KEY '_','_','p','p','c','_','_'
  881. #elif defined(__aarch64__)
  882. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  883. #elif defined(__ARM_ARCH_7A__)
  884. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  885. #elif defined(__ARM_ARCH_7S__)
  886. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  887. #endif
  888.  
  889. #define SIZE (sizeof(int8))
  890. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  891.  ('0' + ((SIZE / 10000)%10)),
  892.  ('0' + ((SIZE / 1000)%10)),
  893.  ('0' + ((SIZE / 100)%10)),
  894.  ('0' + ((SIZE / 10)%10)),
  895.  ('0' +  (SIZE    % 10)),
  896.  ']',
  897. #ifdef KEY
  898.  ' ','k','e','y','[', KEY, ']',
  899. #endif
  900.  '\0'};
  901.  
  902. #ifdef __CLASSIC_C__
  903. int main(argc, argv) int argc; char *argv[];
  904. #else
  905. int main(int argc, char *argv[])
  906. #endif
  907. {
  908.  int require = 0;
  909.  require += info_size[argc];
  910.  (void)argv;
  911.  return require;
  912. }
  913.  
  914.  
  915. Determining size of uint8 failed with the following output:
  916. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  917.  
  918. Run Build Command(s):/usr/bin/ninja cmTC_05d08 && [1/2] Building C object CMakeFiles/cmTC_05d08.dir/SIZEOF_UINT8.c.o
  919. FAILED: CMakeFiles/cmTC_05d08.dir/SIZEOF_UINT8.c.o
  920. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_05d08.dir/SIZEOF_UINT8.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c
  921. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c:29:22: error: 'uint8' undeclared here (not in a function); did you mean 'uint'?
  922.   29 | #define SIZE (sizeof(uint8))
  923.      |                      ^~~~~
  924. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c:31:12: note: in expansion of macro 'SIZE'
  925.   31 |   ('0' + ((SIZE / 10000)%10)),
  926.      |            ^~~~
  927. ninja: build stopped: subcommand failed.
  928.  
  929.  
  930. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c:
  931. #include <sys/types.h>
  932. #include <stdint.h>
  933. #include <stddef.h>
  934. #include "stdio.h"
  935. #include "sys/types.h"
  936.  
  937.  
  938. #undef KEY
  939. #if defined(__i386)
  940. # define KEY '_','_','i','3','8','6'
  941. #elif defined(__x86_64)
  942. # define KEY '_','_','x','8','6','_','6','4'
  943. #elif defined(__PPC64__)
  944. # define KEY '_','_','P','P','C','6','4','_','_'
  945. #elif defined(__ppc64__)
  946. # define KEY '_','_','p','p','c','6','4','_','_'
  947. #elif defined(__PPC__)
  948. # define KEY '_','_','P','P','C','_','_'
  949. #elif defined(__ppc__)
  950. # define KEY '_','_','p','p','c','_','_'
  951. #elif defined(__aarch64__)
  952. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  953. #elif defined(__ARM_ARCH_7A__)
  954. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  955. #elif defined(__ARM_ARCH_7S__)
  956. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  957. #endif
  958.  
  959. #define SIZE (sizeof(uint8))
  960. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  961.  ('0' + ((SIZE / 10000)%10)),
  962.  ('0' + ((SIZE / 1000)%10)),
  963.  ('0' + ((SIZE / 100)%10)),
  964.  ('0' + ((SIZE / 10)%10)),
  965.  ('0' +  (SIZE    % 10)),
  966.  ']',
  967. #ifdef KEY
  968.  ' ','k','e','y','[', KEY, ']',
  969. #endif
  970.  '\0'};
  971.  
  972. #ifdef __CLASSIC_C__
  973. int main(argc, argv) int argc; char *argv[];
  974. #else
  975. int main(int argc, char *argv[])
  976. #endif
  977. {
  978.  int require = 0;
  979.  require += info_size[argc];
  980.  (void)argv;
  981.  return require;
  982. }
  983.  
  984.  
  985. Determining size of int16 failed with the following output:
  986. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  987.  
  988. Run Build Command(s):/usr/bin/ninja cmTC_5887c && [1/2] Building C object CMakeFiles/cmTC_5887c.dir/SIZEOF_INT16.c.o
  989. FAILED: CMakeFiles/cmTC_5887c.dir/SIZEOF_INT16.c.o
  990. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_5887c.dir/SIZEOF_INT16.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c
  991. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c:29:22: error: 'int16' undeclared here (not in a function); did you mean 'int16_t'?
  992.   29 | #define SIZE (sizeof(int16))
  993.      |                      ^~~~~
  994. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c:31:12: note: in expansion of macro 'SIZE'
  995.   31 |   ('0' + ((SIZE / 10000)%10)),
  996.      |            ^~~~
  997. ninja: build stopped: subcommand failed.
  998.  
  999.  
  1000. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c:
  1001. #include <sys/types.h>
  1002. #include <stdint.h>
  1003. #include <stddef.h>
  1004. #include "stdio.h"
  1005. #include "sys/types.h"
  1006.  
  1007.  
  1008. #undef KEY
  1009. #if defined(__i386)
  1010. # define KEY '_','_','i','3','8','6'
  1011. #elif defined(__x86_64)
  1012. # define KEY '_','_','x','8','6','_','6','4'
  1013. #elif defined(__PPC64__)
  1014. # define KEY '_','_','P','P','C','6','4','_','_'
  1015. #elif defined(__ppc64__)
  1016. # define KEY '_','_','p','p','c','6','4','_','_'
  1017. #elif defined(__PPC__)
  1018. # define KEY '_','_','P','P','C','_','_'
  1019. #elif defined(__ppc__)
  1020. # define KEY '_','_','p','p','c','_','_'
  1021. #elif defined(__aarch64__)
  1022. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1023. #elif defined(__ARM_ARCH_7A__)
  1024. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1025. #elif defined(__ARM_ARCH_7S__)
  1026. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1027. #endif
  1028.  
  1029. #define SIZE (sizeof(int16))
  1030. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1031.  ('0' + ((SIZE / 10000)%10)),
  1032.  ('0' + ((SIZE / 1000)%10)),
  1033.  ('0' + ((SIZE / 100)%10)),
  1034.  ('0' + ((SIZE / 10)%10)),
  1035.  ('0' +  (SIZE    % 10)),
  1036.  ']',
  1037. #ifdef KEY
  1038.  ' ','k','e','y','[', KEY, ']',
  1039. #endif
  1040.  '\0'};
  1041.  
  1042. #ifdef __CLASSIC_C__
  1043. int main(argc, argv) int argc; char *argv[];
  1044. #else
  1045. int main(int argc, char *argv[])
  1046. #endif
  1047. {
  1048.  int require = 0;
  1049.  require += info_size[argc];
  1050.  (void)argv;
  1051.  return require;
  1052. }
  1053.  
  1054.  
  1055. Determining size of uint16 failed with the following output:
  1056. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1057.  
  1058. Run Build Command(s):/usr/bin/ninja cmTC_d2215 && [1/2] Building C object CMakeFiles/cmTC_d2215.dir/SIZEOF_UINT16.c.o
  1059. FAILED: CMakeFiles/cmTC_d2215.dir/SIZEOF_UINT16.c.o
  1060. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_d2215.dir/SIZEOF_UINT16.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c
  1061. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c:29:22: error: 'uint16' undeclared here (not in a function); did you mean 'uint16_t'?
  1062.   29 | #define SIZE (sizeof(uint16))
  1063.      |                      ^~~~~~
  1064. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c:31:12: note: in expansion of macro 'SIZE'
  1065.   31 |   ('0' + ((SIZE / 10000)%10)),
  1066.      |            ^~~~
  1067. ninja: build stopped: subcommand failed.
  1068.  
  1069.  
  1070. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c:
  1071. #include <sys/types.h>
  1072. #include <stdint.h>
  1073. #include <stddef.h>
  1074. #include "stdio.h"
  1075. #include "sys/types.h"
  1076.  
  1077.  
  1078. #undef KEY
  1079. #if defined(__i386)
  1080. # define KEY '_','_','i','3','8','6'
  1081. #elif defined(__x86_64)
  1082. # define KEY '_','_','x','8','6','_','6','4'
  1083. #elif defined(__PPC64__)
  1084. # define KEY '_','_','P','P','C','6','4','_','_'
  1085. #elif defined(__ppc64__)
  1086. # define KEY '_','_','p','p','c','6','4','_','_'
  1087. #elif defined(__PPC__)
  1088. # define KEY '_','_','P','P','C','_','_'
  1089. #elif defined(__ppc__)
  1090. # define KEY '_','_','p','p','c','_','_'
  1091. #elif defined(__aarch64__)
  1092. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1093. #elif defined(__ARM_ARCH_7A__)
  1094. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1095. #elif defined(__ARM_ARCH_7S__)
  1096. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1097. #endif
  1098.  
  1099. #define SIZE (sizeof(uint16))
  1100. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1101.  ('0' + ((SIZE / 10000)%10)),
  1102.  ('0' + ((SIZE / 1000)%10)),
  1103.  ('0' + ((SIZE / 100)%10)),
  1104.  ('0' + ((SIZE / 10)%10)),
  1105.  ('0' +  (SIZE    % 10)),
  1106.  ']',
  1107. #ifdef KEY
  1108.  ' ','k','e','y','[', KEY, ']',
  1109. #endif
  1110.  '\0'};
  1111.  
  1112. #ifdef __CLASSIC_C__
  1113. int main(argc, argv) int argc; char *argv[];
  1114. #else
  1115. int main(int argc, char *argv[])
  1116. #endif
  1117. {
  1118.  int require = 0;
  1119.  require += info_size[argc];
  1120.  (void)argv;
  1121.  return require;
  1122. }
  1123.  
  1124.  
  1125. Determining size of int32 failed with the following output:
  1126. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1127.  
  1128. Run Build Command(s):/usr/bin/ninja cmTC_099f3 && [1/2] Building C object CMakeFiles/cmTC_099f3.dir/SIZEOF_INT32.c.o
  1129. FAILED: CMakeFiles/cmTC_099f3.dir/SIZEOF_INT32.c.o
  1130. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_099f3.dir/SIZEOF_INT32.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c
  1131. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c:29:22: error: 'int32' undeclared here (not in a function); did you mean 'int32_t'?
  1132.   29 | #define SIZE (sizeof(int32))
  1133.      |                      ^~~~~
  1134. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c:31:12: note: in expansion of macro 'SIZE'
  1135.   31 |   ('0' + ((SIZE / 10000)%10)),
  1136.      |            ^~~~
  1137. ninja: build stopped: subcommand failed.
  1138.  
  1139.  
  1140. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c:
  1141. #include <sys/types.h>
  1142. #include <stdint.h>
  1143. #include <stddef.h>
  1144. #include "stdio.h"
  1145. #include "sys/types.h"
  1146.  
  1147.  
  1148. #undef KEY
  1149. #if defined(__i386)
  1150. # define KEY '_','_','i','3','8','6'
  1151. #elif defined(__x86_64)
  1152. # define KEY '_','_','x','8','6','_','6','4'
  1153. #elif defined(__PPC64__)
  1154. # define KEY '_','_','P','P','C','6','4','_','_'
  1155. #elif defined(__ppc64__)
  1156. # define KEY '_','_','p','p','c','6','4','_','_'
  1157. #elif defined(__PPC__)
  1158. # define KEY '_','_','P','P','C','_','_'
  1159. #elif defined(__ppc__)
  1160. # define KEY '_','_','p','p','c','_','_'
  1161. #elif defined(__aarch64__)
  1162. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1163. #elif defined(__ARM_ARCH_7A__)
  1164. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1165. #elif defined(__ARM_ARCH_7S__)
  1166. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1167. #endif
  1168.  
  1169. #define SIZE (sizeof(int32))
  1170. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1171.  ('0' + ((SIZE / 10000)%10)),
  1172.  ('0' + ((SIZE / 1000)%10)),
  1173.  ('0' + ((SIZE / 100)%10)),
  1174.  ('0' + ((SIZE / 10)%10)),
  1175.  ('0' +  (SIZE    % 10)),
  1176.  ']',
  1177. #ifdef KEY
  1178.  ' ','k','e','y','[', KEY, ']',
  1179. #endif
  1180.  '\0'};
  1181.  
  1182. #ifdef __CLASSIC_C__
  1183. int main(argc, argv) int argc; char *argv[];
  1184. #else
  1185. int main(int argc, char *argv[])
  1186. #endif
  1187. {
  1188.  int require = 0;
  1189.  require += info_size[argc];
  1190.  (void)argv;
  1191.  return require;
  1192. }
  1193.  
  1194.  
  1195. Determining size of uint32 failed with the following output:
  1196. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1197.  
  1198. Run Build Command(s):/usr/bin/ninja cmTC_20ff3 && [1/2] Building C object CMakeFiles/cmTC_20ff3.dir/SIZEOF_UINT32.c.o
  1199. FAILED: CMakeFiles/cmTC_20ff3.dir/SIZEOF_UINT32.c.o
  1200. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_20ff3.dir/SIZEOF_UINT32.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c
  1201. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c:29:22: error: 'uint32' undeclared here (not in a function); did you mean 'uint32_t'?
  1202.   29 | #define SIZE (sizeof(uint32))
  1203.      |                      ^~~~~~
  1204. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c:31:12: note: in expansion of macro 'SIZE'
  1205.   31 |   ('0' + ((SIZE / 10000)%10)),
  1206.      |            ^~~~
  1207. ninja: build stopped: subcommand failed.
  1208.  
  1209.  
  1210. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c:
  1211. #include <sys/types.h>
  1212. #include <stdint.h>
  1213. #include <stddef.h>
  1214. #include "stdio.h"
  1215. #include "sys/types.h"
  1216.  
  1217.  
  1218. #undef KEY
  1219. #if defined(__i386)
  1220. # define KEY '_','_','i','3','8','6'
  1221. #elif defined(__x86_64)
  1222. # define KEY '_','_','x','8','6','_','6','4'
  1223. #elif defined(__PPC64__)
  1224. # define KEY '_','_','P','P','C','6','4','_','_'
  1225. #elif defined(__ppc64__)
  1226. # define KEY '_','_','p','p','c','6','4','_','_'
  1227. #elif defined(__PPC__)
  1228. # define KEY '_','_','P','P','C','_','_'
  1229. #elif defined(__ppc__)
  1230. # define KEY '_','_','p','p','c','_','_'
  1231. #elif defined(__aarch64__)
  1232. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1233. #elif defined(__ARM_ARCH_7A__)
  1234. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1235. #elif defined(__ARM_ARCH_7S__)
  1236. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1237. #endif
  1238.  
  1239. #define SIZE (sizeof(uint32))
  1240. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1241.  ('0' + ((SIZE / 10000)%10)),
  1242.  ('0' + ((SIZE / 1000)%10)),
  1243.  ('0' + ((SIZE / 100)%10)),
  1244.  ('0' + ((SIZE / 10)%10)),
  1245.  ('0' +  (SIZE    % 10)),
  1246.  ']',
  1247. #ifdef KEY
  1248.  ' ','k','e','y','[', KEY, ']',
  1249. #endif
  1250.  '\0'};
  1251.  
  1252. #ifdef __CLASSIC_C__
  1253. int main(argc, argv) int argc; char *argv[];
  1254. #else
  1255. int main(int argc, char *argv[])
  1256. #endif
  1257. {
  1258.  int require = 0;
  1259.  require += info_size[argc];
  1260.  (void)argv;
  1261.  return require;
  1262. }
  1263.  
  1264.  
  1265. Determining size of int64 failed with the following output:
  1266. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1267.  
  1268. Run Build Command(s):/usr/bin/ninja cmTC_f3e13 && [1/2] Building C object CMakeFiles/cmTC_f3e13.dir/SIZEOF_INT64.c.o
  1269. FAILED: CMakeFiles/cmTC_f3e13.dir/SIZEOF_INT64.c.o
  1270. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_f3e13.dir/SIZEOF_INT64.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c
  1271. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c:29:22: error: 'int64' undeclared here (not in a function); did you mean 'int64_t'?
  1272.   29 | #define SIZE (sizeof(int64))
  1273.      |                      ^~~~~
  1274. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c:31:12: note: in expansion of macro 'SIZE'
  1275.   31 |   ('0' + ((SIZE / 10000)%10)),
  1276.      |            ^~~~
  1277. ninja: build stopped: subcommand failed.
  1278.  
  1279.  
  1280. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c:
  1281. #include <sys/types.h>
  1282. #include <stdint.h>
  1283. #include <stddef.h>
  1284. #include "stdio.h"
  1285. #include "sys/types.h"
  1286.  
  1287.  
  1288. #undef KEY
  1289. #if defined(__i386)
  1290. # define KEY '_','_','i','3','8','6'
  1291. #elif defined(__x86_64)
  1292. # define KEY '_','_','x','8','6','_','6','4'
  1293. #elif defined(__PPC64__)
  1294. # define KEY '_','_','P','P','C','6','4','_','_'
  1295. #elif defined(__ppc64__)
  1296. # define KEY '_','_','p','p','c','6','4','_','_'
  1297. #elif defined(__PPC__)
  1298. # define KEY '_','_','P','P','C','_','_'
  1299. #elif defined(__ppc__)
  1300. # define KEY '_','_','p','p','c','_','_'
  1301. #elif defined(__aarch64__)
  1302. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1303. #elif defined(__ARM_ARCH_7A__)
  1304. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1305. #elif defined(__ARM_ARCH_7S__)
  1306. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1307. #endif
  1308.  
  1309. #define SIZE (sizeof(int64))
  1310. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1311.  ('0' + ((SIZE / 10000)%10)),
  1312.  ('0' + ((SIZE / 1000)%10)),
  1313.  ('0' + ((SIZE / 100)%10)),
  1314.  ('0' + ((SIZE / 10)%10)),
  1315.  ('0' +  (SIZE    % 10)),
  1316.  ']',
  1317. #ifdef KEY
  1318.  ' ','k','e','y','[', KEY, ']',
  1319. #endif
  1320.  '\0'};
  1321.  
  1322. #ifdef __CLASSIC_C__
  1323. int main(argc, argv) int argc; char *argv[];
  1324. #else
  1325. int main(int argc, char *argv[])
  1326. #endif
  1327. {
  1328.  int require = 0;
  1329.  require += info_size[argc];
  1330.  (void)argv;
  1331.  return require;
  1332. }
  1333.  
  1334.  
  1335. Determining size of uint64 failed with the following output:
  1336. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1337.  
  1338. Run Build Command(s):/usr/bin/ninja cmTC_3e155 && [1/2] Building C object CMakeFiles/cmTC_3e155.dir/SIZEOF_UINT64.c.o
  1339. FAILED: CMakeFiles/cmTC_3e155.dir/SIZEOF_UINT64.c.o
  1340. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_3e155.dir/SIZEOF_UINT64.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c
  1341. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c:29:22: error: 'uint64' undeclared here (not in a function); did you mean 'uint64_t'?
  1342.   29 | #define SIZE (sizeof(uint64))
  1343.      |                      ^~~~~~
  1344. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c:31:12: note: in expansion of macro 'SIZE'
  1345.   31 |   ('0' + ((SIZE / 10000)%10)),
  1346.      |            ^~~~
  1347. ninja: build stopped: subcommand failed.
  1348.  
  1349.  
  1350. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c:
  1351. #include <sys/types.h>
  1352. #include <stdint.h>
  1353. #include <stddef.h>
  1354. #include "stdio.h"
  1355. #include "sys/types.h"
  1356.  
  1357.  
  1358. #undef KEY
  1359. #if defined(__i386)
  1360. # define KEY '_','_','i','3','8','6'
  1361. #elif defined(__x86_64)
  1362. # define KEY '_','_','x','8','6','_','6','4'
  1363. #elif defined(__PPC64__)
  1364. # define KEY '_','_','P','P','C','6','4','_','_'
  1365. #elif defined(__ppc64__)
  1366. # define KEY '_','_','p','p','c','6','4','_','_'
  1367. #elif defined(__PPC__)
  1368. # define KEY '_','_','P','P','C','_','_'
  1369. #elif defined(__ppc__)
  1370. # define KEY '_','_','p','p','c','_','_'
  1371. #elif defined(__aarch64__)
  1372. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1373. #elif defined(__ARM_ARCH_7A__)
  1374. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1375. #elif defined(__ARM_ARCH_7S__)
  1376. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1377. #endif
  1378.  
  1379. #define SIZE (sizeof(uint64))
  1380. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1381.  ('0' + ((SIZE / 10000)%10)),
  1382.  ('0' + ((SIZE / 1000)%10)),
  1383.  ('0' + ((SIZE / 100)%10)),
  1384.  ('0' + ((SIZE / 10)%10)),
  1385.  ('0' +  (SIZE    % 10)),
  1386.  ']',
  1387. #ifdef KEY
  1388.  ' ','k','e','y','[', KEY, ']',
  1389. #endif
  1390.  '\0'};
  1391.  
  1392. #ifdef __CLASSIC_C__
  1393. int main(argc, argv) int argc; char *argv[];
  1394. #else
  1395. int main(int argc, char *argv[])
  1396. #endif
  1397. {
  1398.  int require = 0;
  1399.  require += info_size[argc];
  1400.  (void)argv;
  1401.  return require;
  1402. }
  1403.  
  1404.  
  1405. Performing C SOURCE FILE Test TIME_T_UNSIGNED failed with the following output:
  1406. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1407.  
  1408. Run Build Command(s):/usr/bin/ninja cmTC_673d1 && [1/2] Building C object CMakeFiles/cmTC_673d1.dir/src.c.o
  1409. FAILED: CMakeFiles/cmTC_673d1.dir/src.c.o
  1410. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -DTIME_T_UNSIGNED -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_673d1.dir/src.c.o -c src.c
  1411. src.c: In function 'main':
  1412. src.c:5:7: error: size of array 'array' is negative
  1413.    5 |   int array[(((time_t)-1) > 0) ? 1 : -1];
  1414.      |       ^~~~~
  1415. ninja: build stopped: subcommand failed.
  1416.  
  1417.  
  1418. Source file was:
  1419.  
  1420. #include <time.h>
  1421. int main()
  1422. {
  1423.  int array[(((time_t)-1) > 0) ? 1 : -1];
  1424.  return 0;
  1425. }
  1426. Performing C SOURCE FILE Test HAVE_TIMESPEC_TS_SEC failed with the following output:
  1427. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1428.  
  1429. Run Build Command(s):/usr/bin/ninja cmTC_10f4a && [1/2] Building C object CMakeFiles/cmTC_10f4a.dir/src.c.o
  1430. FAILED: CMakeFiles/cmTC_10f4a.dir/src.c.o
  1431. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DHAVE_TIMESPEC_TS_SEC -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_10f4a.dir/src.c.o -c src.c
  1432. src.c: In function 'main':
  1433. src.c:7:11: error: 'struct timespec' has no member named 'ts_sec'; did you mean 'tv_sec'?
  1434.    7 |   abstime.ts_sec = time(NULL)+1;
  1435.      |           ^~~~~~
  1436.      |           tv_sec
  1437. src.c:8:11: error: 'struct timespec' has no member named 'ts_nsec'; did you mean 'tv_nsec'?
  1438.    8 |   abstime.ts_nsec = 0;
  1439.      |           ^~~~~~~
  1440.      |           tv_nsec
  1441. ninja: build stopped: subcommand failed.
  1442.  
  1443.  
  1444. Source file was:
  1445.  
  1446. #include <pthread.h>
  1447.  
  1448. int main(int ac, char **av)
  1449. {
  1450.  struct timespec abstime;
  1451.  abstime.ts_sec = time(NULL)+1;
  1452.  abstime.ts_nsec = 0;
  1453. }
  1454.  
  1455. Performing C++ SOURCE FILE Test HAVE_SOLARIS_STYLE_GETHOST failed with the following output:
  1456. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1457.  
  1458. Run Build Command(s):/usr/bin/ninja cmTC_5158a && [1/2] Building CXX object CMakeFiles/cmTC_5158a.dir/src.cxx.o
  1459. FAILED: CMakeFiles/cmTC_5158a.dir/src.cxx.o
  1460. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-c++ -DHAVE_SOLARIS_STYLE_GETHOST -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_5158a.dir/src.cxx.o -c src.cxx
  1461. src.cxx: In function 'int main()':
  1462. src.cxx:17:58: error: cannot convert 'int*' to 'hostent**'
  1463.   17 |           0, 0, (struct hostent *) 0, (char *) NULL,  0, (int *)0);
  1464.      |                                                          ^~~~~~~~
  1465.      |                                                          |
  1466.      |                                                          int*
  1467. In file included from src.cxx:11:
  1468. /usr/aarch64-linux-gnu/usr/include/netdb.h:174:36: note:   initializing argument 7 of 'int gethostbyaddr_r(const void*, __socklen_t, int, hostent*, char*, size_t, hostent**, int*)'
  1469.  174 |        struct hostent **__restrict __result,
  1470.      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
  1471. ninja: build stopped: subcommand failed.
  1472.  
  1473.  
  1474. Source file was:
  1475.  
  1476.    #undef inline
  1477.    #if !defined(SCO) && !defined(__osf__) && !defined(_REENTRANT)
  1478.    #define _REENTRANT
  1479.    #endif
  1480.    #include <pthread.h>
  1481.    #include <sys/types.h>
  1482.    #include <sys/socket.h>
  1483.    #include <netinet/in.h>
  1484.    #include <arpa/inet.h>
  1485.    #include <netdb.h>
  1486.    int main()
  1487.    {
  1488.  
  1489.       struct hostent *foo =
  1490.       gethostbyaddr_r((const char *) 0,
  1491.          0, 0, (struct hostent *) 0, (char *) NULL,  0, (int *)0);
  1492.       return 0;
  1493.    }
  1494.  
  1495. Determining if files valgrind/memcheck.h;valgrind/valgrind.h exist failed with the following output:
  1496. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1497.  
  1498. Run Build Command(s):/usr/bin/ninja cmTC_ecf78 && [1/2] Building C object CMakeFiles/cmTC_ecf78.dir/HAVE_VALGRIND_MEMCHECK_H.c.o
  1499. FAILED: CMakeFiles/cmTC_ecf78.dir/HAVE_VALGRIND_MEMCHECK_H.c.o
  1500. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_ecf78.dir/HAVE_VALGRIND_MEMCHECK_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_VALGRIND_MEMCHECK_H.c
  1501. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_VALGRIND_MEMCHECK_H.c:2:10: fatal error: valgrind/memcheck.h: No such file or directory
  1502.    2 | #include <valgrind/memcheck.h>
  1503.      |          ^~~~~~~~~~~~~~~~~~~~~
  1504. compilation terminated.
  1505. ninja: build stopped: subcommand failed.
  1506.  
  1507.  
  1508. Source:
  1509. /* */
  1510. #include <valgrind/memcheck.h>
  1511. #include <valgrind/valgrind.h>
  1512.  
  1513.  
  1514. int main(void){return 0;}
  1515.  
  1516. Determining if the include file netinet/in6.h exists failed with the following output:
  1517. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1518.  
  1519. Run Build Command(s):/usr/bin/ninja cmTC_60af3 && [1/2] Building C object CMakeFiles/cmTC_60af3.dir/CheckIncludeFile.c.o
  1520. FAILED: CMakeFiles/cmTC_60af3.dir/CheckIncludeFile.c.o
  1521. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_60af3.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c
  1522. CheckIncludeFile.c:1:10: fatal error: netinet/in6.h: No such file or directory
  1523.    1 | #include <netinet/in6.h>
  1524.      |          ^~~~~~~~~~~~~~~
  1525. compilation terminated.
  1526. ninja: build stopped: subcommand failed.
  1527.  
  1528.  
  1529.  
  1530. Performing C SOURCE FILE Test HAVE_SOCKADDR_IN_SIN_LEN failed with the following output:
  1531. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1532.  
  1533. Run Build Command(s):/usr/bin/ninja cmTC_065dd && [1/2] Building C object CMakeFiles/cmTC_065dd.dir/src.c.o
  1534. FAILED: CMakeFiles/cmTC_065dd.dir/src.c.o
  1535. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DHAVE_SOCKADDR_IN_SIN_LEN -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_065dd.dir/src.c.o -c src.c
  1536. src.c: In function 'main':
  1537. src.c:8:41: error: 'struct sockaddr_in' has no member named 'sin_len'
  1538.    8 |   (void)sizeof(((struct sockaddr_in *)0)->sin_len);
  1539.      |                                         ^~
  1540. ninja: build stopped: subcommand failed.
  1541.  
  1542.  
  1543. Source file was:
  1544.  
  1545. #include <sys/types.h>
  1546. #include <netinet/in.h>
  1547. #include <sys/socket.h>
  1548.  
  1549. int main()
  1550. {
  1551.  (void)sizeof(((struct sockaddr_in *)0)->sin_len);
  1552.  return 0;
  1553. }
  1554.  
  1555. Performing C SOURCE FILE Test HAVE_SOCKADDR_IN6_SIN6_LEN failed with the following output:
  1556. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1557.  
  1558. Run Build Command(s):/usr/bin/ninja cmTC_046b3 && [1/2] Building C object CMakeFiles/cmTC_046b3.dir/src.c.o
  1559. FAILED: CMakeFiles/cmTC_046b3.dir/src.c.o
  1560. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DHAVE_SOCKADDR_IN6_SIN6_LEN -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_046b3.dir/src.c.o -c src.c
  1561. src.c: In function 'main':
  1562. src.c:8:42: error: 'struct sockaddr_in6' has no member named 'sin6_len'
  1563.    8 |   (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len);
  1564.      |                                          ^~
  1565. ninja: build stopped: subcommand failed.
  1566.  
  1567.  
  1568. Source file was:
  1569.  
  1570. #include <sys/types.h>
  1571. #include <netinet/in.h>
  1572. #include <sys/socket.h>
  1573.  
  1574. int main()
  1575. {
  1576.  (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len);
  1577.  return 0;
  1578. }
  1579.  
  1580. Performing C SOURCE FILE Test STRUCT_DIRENT_HAS_D_NAMLEN failed with the following output:
  1581. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1582.  
  1583. Run Build Command(s):/usr/bin/ninja cmTC_eb8b5 && [1/2] Building C object CMakeFiles/cmTC_eb8b5.dir/src.c.o
  1584. FAILED: CMakeFiles/cmTC_eb8b5.dir/src.c.o
  1585. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -DSTRUCT_DIRENT_HAS_D_NAMLEN -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_eb8b5.dir/src.c.o -c src.c
  1586. src.c: In function 'main':
  1587. src.c:6:38: error: 'struct dirent' has no member named 'd_namlen'; did you mean 'd_name'?
  1588.    6 |   (void)sizeof(((struct dirent *)0)->d_namlen);
  1589.      |                                      ^~~~~~~~
  1590.      |                                      d_name
  1591. ninja: build stopped: subcommand failed.
  1592.  
  1593.  
  1594. Source file was:
  1595.  
  1596. #include <dirent.h>
  1597.  
  1598. int main()
  1599. {
  1600.  (void)sizeof(((struct dirent *)0)->d_namlen);
  1601.  return 0;
  1602. }
  1603.  
  1604. Performing C++ SOURCE FILE Test have_CXX__Wdeclaration_after_statement failed with the following output:
  1605. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1606.  
  1607. Run Build Command(s):/usr/bin/ninja cmTC_7afd6 && [1/2] Building CXX object CMakeFiles/cmTC_7afd6.dir/src.cxx.o
  1608. cc1plus: warning: command-line option '-Wdeclaration-after-statement' is valid for C/ObjC but not for C++
  1609. [2/2] Linking CXX executable cmTC_7afd6
  1610.  
  1611.  
  1612. Source file was:
  1613. int main(void) { return 0; }
  1614. Performing C SOURCE FILE Test have_C__Wformat_security failed with the following output:
  1615. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1616.  
  1617. Run Build Command(s):/usr/bin/ninja cmTC_09045 && [1/2] Building C object CMakeFiles/cmTC_09045.dir/src.c.o
  1618. cc1: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
  1619. [2/2] Linking C executable cmTC_09045
  1620.  
  1621.  
  1622. Source file was:
  1623. int main(void) { return 0; }
  1624. Performing C++ SOURCE FILE Test have_CXX__Wformat_security failed with the following output:
  1625. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1626.  
  1627. Run Build Command(s):/usr/bin/ninja cmTC_98cec && [1/2] Building CXX object CMakeFiles/cmTC_98cec.dir/src.cxx.o
  1628. cc1plus: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
  1629. [2/2] Linking CXX executable cmTC_98cec
  1630.  
  1631.  
  1632. Source file was:
  1633. int main(void) { return 0; }
  1634. Performing C SOURCE FILE Test have_C__Wnull_conversion failed with the following output:
  1635. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1636.  
  1637. Run Build Command(s):/usr/bin/ninja cmTC_b24ce && [1/2] Building C object CMakeFiles/cmTC_b24ce.dir/src.c.o
  1638. FAILED: CMakeFiles/cmTC_b24ce.dir/src.c.o
  1639. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Dhave_C__Wnull_conversion  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics  -Wnull-conversion -o CMakeFiles/cmTC_b24ce.dir/src.c.o -c src.c
  1640. aarch64-linux-gnu-gcc: error: unrecognized command-line option '-Wnull-conversion'; did you mean '-Wno-conversion'?
  1641. ninja: build stopped: subcommand failed.
  1642.  
  1643.  
  1644. Source file was:
  1645. int main(void) { return 0; }
  1646. Performing C++ SOURCE FILE Test have_CXX__Wnull_conversion failed with the following output:
  1647. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1648.  
  1649. Run Build Command(s):/usr/bin/ninja cmTC_64d18 && [1/2] Building CXX object CMakeFiles/cmTC_64d18.dir/src.cxx.o
  1650. FAILED: CMakeFiles/cmTC_64d18.dir/src.cxx.o
  1651. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-c++ -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Dhave_CXX__Wnull_conversion  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics  -Wnull-conversion -o CMakeFiles/cmTC_64d18.dir/src.cxx.o -c src.cxx
  1652. aarch64-linux-gnu-g++: error: unrecognized command-line option '-Wnull-conversion'; did you mean '-Wno-conversion'?
  1653. ninja: build stopped: subcommand failed.
  1654.  
  1655.  
  1656. Source file was:
  1657. int main(void) { return 0; }
  1658. Performing C SOURCE FILE Test have_C__Wunused_private_field failed with the following output:
  1659. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1660.  
  1661. Run Build Command(s):/usr/bin/ninja cmTC_eadbd && [1/2] Building C object CMakeFiles/cmTC_eadbd.dir/src.c.o
  1662. FAILED: CMakeFiles/cmTC_eadbd.dir/src.c.o
  1663. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Dhave_C__Wunused_private_field  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics  -Wunused-private-field -o CMakeFiles/cmTC_eadbd.dir/src.c.o -c src.c
  1664. aarch64-linux-gnu-gcc: error: unrecognized command-line option '-Wunused-private-field'
  1665. ninja: build stopped: subcommand failed.
  1666.  
  1667.  
  1668. Source file was:
  1669. int main(void) { return 0; }
  1670. Performing C++ SOURCE FILE Test have_CXX__Wunused_private_field failed with the following output:
  1671. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1672.  
  1673. Run Build Command(s):/usr/bin/ninja cmTC_c67fa && [1/2] Building CXX object CMakeFiles/cmTC_c67fa.dir/src.cxx.o
  1674. FAILED: CMakeFiles/cmTC_c67fa.dir/src.cxx.o
  1675. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-c++ -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Dhave_CXX__Wunused_private_field  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics  -Wunused-private-field -o CMakeFiles/cmTC_c67fa.dir/src.cxx.o -c src.cxx
  1676. aarch64-linux-gnu-g++: error: unrecognized command-line option '-Wunused-private-field'
  1677. ninja: build stopped: subcommand failed.
  1678.  
  1679.  
  1680. Source file was:
  1681. int main(void) { return 0; }
  1682. Performing C SOURCE FILE Test have_C__Woverloaded_virtual failed with the following output:
  1683. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1684.  
  1685. Run Build Command(s):/usr/bin/ninja cmTC_6d866 && [1/2] Building C object CMakeFiles/cmTC_6d866.dir/src.c.o
  1686. cc1: warning: command-line option '-Woverloaded-virtual' is valid for C++/ObjC++ but not for C
  1687. [2/2] Linking C executable cmTC_6d866
  1688.  
  1689.  
  1690. Source file was:
  1691. int main(void) { return 0; }
  1692. Performing C SOURCE FILE Test have_C__Wnon_virtual_dtor failed with the following output:
  1693. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1694.  
  1695. Run Build Command(s):/usr/bin/ninja cmTC_0d47b && [1/2] Building C object CMakeFiles/cmTC_0d47b.dir/src.c.o
  1696. cc1: warning: command-line option '-Wnon-virtual-dtor' is valid for C++/ObjC++ but not for C
  1697. [2/2] Linking C executable cmTC_0d47b
  1698.  
  1699.  
  1700. Source file was:
  1701. int main(void) { return 0; }
  1702. Determining size of socklen_t failed with the following output:
  1703. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1704.  
  1705. Run Build Command(s):/usr/bin/ninja cmTC_159aa && [1/2] Building C object CMakeFiles/cmTC_159aa.dir/SIZEOF_SOCKLEN_T.c.o
  1706. FAILED: CMakeFiles/cmTC_159aa.dir/SIZEOF_SOCKLEN_T.c.o
  1707. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wunused -Wlogical-op -Wno-uninitialized -Wall -Wextra -Wformat-security -Wno-init-self -Wwrite-strings -Wshift-count-overflow -Wdeclaration-after-statement -Wno-undef -Wno-unknown-pragmas -o CMakeFiles/cmTC_159aa.dir/SIZEOF_SOCKLEN_T.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c
  1708. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:28:22: error: 'socklen_t' undeclared here (not in a function)
  1709.   28 | #define SIZE (sizeof(socklen_t))
  1710.      |                      ^~~~~~~~~
  1711. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:30:12: note: in expansion of macro 'SIZE'
  1712.   30 |   ('0' + ((SIZE / 10000)%10)),
  1713.      |            ^~~~
  1714. ninja: build stopped: subcommand failed.
  1715.  
  1716.  
  1717. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:
  1718. #include <sys/types.h>
  1719. #include <stdint.h>
  1720. #include <stddef.h>
  1721. #include "sys/types.h"
  1722.  
  1723.  
  1724. #undef KEY
  1725. #if defined(__i386)
  1726. # define KEY '_','_','i','3','8','6'
  1727. #elif defined(__x86_64)
  1728. # define KEY '_','_','x','8','6','_','6','4'
  1729. #elif defined(__PPC64__)
  1730. # define KEY '_','_','P','P','C','6','4','_','_'
  1731. #elif defined(__ppc64__)
  1732. # define KEY '_','_','p','p','c','6','4','_','_'
  1733. #elif defined(__PPC__)
  1734. # define KEY '_','_','P','P','C','_','_'
  1735. #elif defined(__ppc__)
  1736. # define KEY '_','_','p','p','c','_','_'
  1737. #elif defined(__aarch64__)
  1738. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  1739. #elif defined(__ARM_ARCH_7A__)
  1740. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  1741. #elif defined(__ARM_ARCH_7S__)
  1742. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  1743. #endif
  1744.  
  1745. #define SIZE (sizeof(socklen_t))
  1746. static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  1747.  ('0' + ((SIZE / 10000)%10)),
  1748.  ('0' + ((SIZE / 1000)%10)),
  1749.  ('0' + ((SIZE / 100)%10)),
  1750.  ('0' + ((SIZE / 10)%10)),
  1751.  ('0' +  (SIZE    % 10)),
  1752.  ']',
  1753. #ifdef KEY
  1754.  ' ','k','e','y','[', KEY, ']',
  1755. #endif
  1756.  '\0'};
  1757.  
  1758. #ifdef __CLASSIC_C__
  1759. int main(argc, argv) int argc; char *argv[];
  1760. #else
  1761. int main(int argc, char *argv[])
  1762. #endif
  1763. {
  1764.  int require = 0;
  1765.  require += info_size[argc];
  1766.  (void)argv;
  1767.  return require;
  1768. }
  1769.  
  1770.  
  1771. Determining if the function floor exists failed with the following output:
  1772. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1773.  
  1774. Run Build Command(s):/usr/bin/ninja cmTC_b428f && [1/2] Building C object CMakeFiles/cmTC_b428f.dir/CheckFunctionExists.c.o
  1775. <command-line>: warning: conflicting types for built-in function 'floor'; expected 'double(double)' [-Wbuiltin-declaration-mismatch]
  1776. /usr/share/cmake-3.19/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS'
  1777.    7 |   CHECK_FUNCTION_EXISTS(void);
  1778.      |   ^~~~~~~~~~~~~~~~~~~~~
  1779. /usr/share/cmake-3.19/Modules/CheckFunctionExists.c:1:1: note: 'floor' is declared in header '<math.h>'
  1780.  +++ |+#include <math.h>
  1781.    1 | #ifdef CHECK_FUNCTION_EXISTS
  1782. [2/2] Linking C executable cmTC_b428f
  1783. FAILED: cmTC_b428f
  1784. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wunused -Wlogical-op -Wno-uninitialized -Wall -Wextra -Wformat-security -Wno-init-self -Wwrite-strings -Wshift-count-overflow -Wdeclaration-after-statement -Wno-undef -Wno-unknown-pragmas -DCHECK_FUNCTION_EXISTS=floor -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_b428f.dir/CheckFunctionExists.c.o -o cmTC_b428f   && :
  1785. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_b428f.dir/CheckFunctionExists.c.o: in function `main':
  1786. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `floor'
  1787. collect2: error: ld returned 1 exit status
  1788. ninja: build stopped: subcommand failed.
  1789.  
  1790.  
  1791.  
  1792. Determining if the function pthread_getspecific exists failed with the following output:
  1793. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1794.  
  1795. Run Build Command(s):/usr/bin/ninja cmTC_308a4 && [1/2] Building C object CMakeFiles/cmTC_308a4.dir/CheckFunctionExists.c.o
  1796. [2/2] Linking C executable cmTC_308a4
  1797. FAILED: cmTC_308a4
  1798. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wunused -Wlogical-op -Wno-uninitialized -Wall -Wextra -Wformat-security -Wno-init-self -Wwrite-strings -Wshift-count-overflow -Wdeclaration-after-statement -Wno-undef -Wno-unknown-pragmas -DCHECK_FUNCTION_EXISTS=pthread_getspecific -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_308a4.dir/CheckFunctionExists.c.o -o cmTC_308a4   && :
  1799. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_308a4.dir/CheckFunctionExists.c.o: in function `main':
  1800. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_getspecific'
  1801. collect2: error: ld returned 1 exit status
  1802. ninja: build stopped: subcommand failed.
  1803.  
  1804.  
  1805.  
  1806. Determining if files lz4.h exist failed with the following output:
  1807. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1808.  
  1809. Run Build Command(s):/usr/bin/ninja cmTC_d2602 && [1/2] Building C object CMakeFiles/cmTC_d2602.dir/HAVE_LZ4_H.c.o
  1810. FAILED: CMakeFiles/cmTC_d2602.dir/HAVE_LZ4_H.c.o
  1811. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_d2602.dir/HAVE_LZ4_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZ4_H.c
  1812. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZ4_H.c:2:10: fatal error: lz4.h: No such file or directory
  1813.    2 | #include <lz4.h>
  1814.      |          ^~~~~~~
  1815. compilation terminated.
  1816. ninja: build stopped: subcommand failed.
  1817.  
  1818.  
  1819. Source:
  1820. /* */
  1821. #include <lz4.h>
  1822.  
  1823.  
  1824. int main(void){return 0;}
  1825.  
  1826. Determining if the function LZ4_compress_limitedOutput exists in the lz4 failed with the following output:
  1827. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1828.  
  1829. Run Build Command(s):/usr/bin/ninja cmTC_f10e8 && [1/2] Building C object CMakeFiles/cmTC_f10e8.dir/CheckFunctionExists.c.o
  1830. [2/2] Linking C executable cmTC_f10e8
  1831. FAILED: cmTC_f10e8
  1832. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=LZ4_compress_limitedOutput -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_f10e8.dir/CheckFunctionExists.c.o -o cmTC_f10e8  -llz4 && :
  1833. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llz4
  1834. collect2: error: ld returned 1 exit status
  1835. ninja: build stopped: subcommand failed.
  1836.  
  1837.  
  1838.  
  1839. Determining if the function LZ4_compress_default exists in the lz4 failed with the following output:
  1840. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1841.  
  1842. Run Build Command(s):/usr/bin/ninja cmTC_3f5cd && [1/2] Building C object CMakeFiles/cmTC_3f5cd.dir/CheckFunctionExists.c.o
  1843. [2/2] Linking C executable cmTC_3f5cd
  1844. FAILED: cmTC_3f5cd
  1845. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=LZ4_compress_default -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_3f5cd.dir/CheckFunctionExists.c.o -o cmTC_3f5cd  -llz4 && :
  1846. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llz4
  1847. collect2: error: ld returned 1 exit status
  1848. ninja: build stopped: subcommand failed.
  1849.  
  1850.  
  1851.  
  1852. Determining if files lzma.h exist failed with the following output:
  1853. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1854.  
  1855. Run Build Command(s):/usr/bin/ninja cmTC_8a558 && [1/2] Building C object CMakeFiles/cmTC_8a558.dir/HAVE_LZMA_H.c.o
  1856. FAILED: CMakeFiles/cmTC_8a558.dir/HAVE_LZMA_H.c.o
  1857. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_8a558.dir/HAVE_LZMA_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZMA_H.c
  1858. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZMA_H.c:2:10: fatal error: lzma.h: No such file or directory
  1859.    2 | #include <lzma.h>
  1860.      |          ^~~~~~~~
  1861. compilation terminated.
  1862. ninja: build stopped: subcommand failed.
  1863.  
  1864.  
  1865. Source:
  1866. /* */
  1867. #include <lzma.h>
  1868.  
  1869.  
  1870. int main(void){return 0;}
  1871.  
  1872. Determining if the function lzma_stream_buffer_decode exists in the lzma failed with the following output:
  1873. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1874.  
  1875. Run Build Command(s):/usr/bin/ninja cmTC_fd758 && [1/2] Building C object CMakeFiles/cmTC_fd758.dir/CheckFunctionExists.c.o
  1876. [2/2] Linking C executable cmTC_fd758
  1877. FAILED: cmTC_fd758
  1878. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=lzma_stream_buffer_decode -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_fd758.dir/CheckFunctionExists.c.o -o cmTC_fd758  -llzma && :
  1879. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llzma
  1880. collect2: error: ld returned 1 exit status
  1881. ninja: build stopped: subcommand failed.
  1882.  
  1883.  
  1884.  
  1885. Determining if the function lzma_easy_buffer_encode exists in the lzma failed with the following output:
  1886. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1887.  
  1888. Run Build Command(s):/usr/bin/ninja cmTC_76c1e && [1/2] Building C object CMakeFiles/cmTC_76c1e.dir/CheckFunctionExists.c.o
  1889. [2/2] Linking C executable cmTC_76c1e
  1890. FAILED: cmTC_76c1e
  1891. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=lzma_easy_buffer_encode -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_76c1e.dir/CheckFunctionExists.c.o -o cmTC_76c1e  -llzma && :
  1892. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llzma
  1893. collect2: error: ld returned 1 exit status
  1894. ninja: build stopped: subcommand failed.
  1895.  
  1896.  
  1897.  
  1898. Determining if files bzlib.h exist failed with the following output:
  1899. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1900.  
  1901. Run Build Command(s):/usr/bin/ninja cmTC_85f00 && [1/2] Building C object CMakeFiles/cmTC_85f00.dir/HAVE_BZLIB2_H.c.o
  1902. FAILED: CMakeFiles/cmTC_85f00.dir/HAVE_BZLIB2_H.c.o
  1903. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_85f00.dir/HAVE_BZLIB2_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_BZLIB2_H.c
  1904. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_BZLIB2_H.c:2:10: fatal error: bzlib.h: No such file or directory
  1905.    2 | #include <bzlib.h>
  1906.      |          ^~~~~~~~~
  1907. compilation terminated.
  1908. ninja: build stopped: subcommand failed.
  1909.  
  1910.  
  1911. Source:
  1912. /* */
  1913. #include <bzlib.h>
  1914.  
  1915.  
  1916. int main(void){return 0;}
  1917.  
  1918. Determining if the function BZ2_bzBuffToBuffCompress exists in the bz2 failed with the following output:
  1919. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1920.  
  1921. Run Build Command(s):/usr/bin/ninja cmTC_f5a44 && [1/2] Building C object CMakeFiles/cmTC_f5a44.dir/CheckFunctionExists.c.o
  1922. [2/2] Linking C executable cmTC_f5a44
  1923. FAILED: cmTC_f5a44
  1924. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=BZ2_bzBuffToBuffCompress -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_f5a44.dir/CheckFunctionExists.c.o -o cmTC_f5a44  -lbz2 && :
  1925. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lbz2
  1926. collect2: error: ld returned 1 exit status
  1927. ninja: build stopped: subcommand failed.
  1928.  
  1929.  
  1930.  
  1931. Determining if the function BZ2_bzBuffToBuffDecompress exists in the bz2 failed with the following output:
  1932. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1933.  
  1934. Run Build Command(s):/usr/bin/ninja cmTC_0dbd3 && [1/2] Building C object CMakeFiles/cmTC_0dbd3.dir/CheckFunctionExists.c.o
  1935. [2/2] Linking C executable cmTC_0dbd3
  1936. FAILED: cmTC_0dbd3
  1937. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=BZ2_bzBuffToBuffDecompress -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_0dbd3.dir/CheckFunctionExists.c.o -o cmTC_0dbd3  -lbz2 && :
  1938. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lbz2
  1939. collect2: error: ld returned 1 exit status
  1940. ninja: build stopped: subcommand failed.
  1941.  
  1942.  
  1943.  
  1944. Performing C++ SOURCE FILE Test have_CXX__Wpointer_sign failed with the following output:
  1945. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1946.  
  1947. Run Build Command(s):/usr/bin/ninja cmTC_4a980 && [1/2] Building CXX object CMakeFiles/cmTC_4a980.dir/src.cxx.o
  1948. cc1plus: warning: command-line option '-Wpointer-sign' is valid for C/ObjC but not for C++
  1949. [2/2] Linking CXX executable cmTC_4a980
  1950.  
  1951.  
  1952. Source file was:
  1953. int main(void) { return 0; }
  1954. Performing C++ SOURCE FILE Test have_CXX__Wbad_function_cast failed with the following output:
  1955. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1956.  
  1957. Run Build Command(s):/usr/bin/ninja cmTC_34dc7 && [1/2] Building CXX object CMakeFiles/cmTC_34dc7.dir/src.cxx.o
  1958. cc1plus: warning: command-line option '-Wbad-function-cast' is valid for C/ObjC but not for C++
  1959. [2/2] Linking CXX executable cmTC_34dc7
  1960.  
  1961.  
  1962. Source file was:
  1963. int main(void) { return 0; }
  1964. Performing C SOURCE FILE Test have_C__fimplicit_templates failed with the following output:
  1965. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1966.  
  1967. Run Build Command(s):/usr/bin/ninja cmTC_d4a2c && [1/2] Building C object CMakeFiles/cmTC_d4a2c.dir/src.c.o
  1968. cc1: warning: command-line option '-fimplicit-templates' is valid for C++/ObjC++ but not for C
  1969. [2/2] Linking C executable cmTC_d4a2c
  1970.  
  1971.  
  1972. Source file was:
  1973. int main(void) { return 0; }
  1974. Determining if the include file sys/sysctl.h exists failed with the following output:
  1975. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1976.  
  1977. Run Build Command(s):/usr/bin/ninja cmTC_7fe79 && [1/2] Building C object CMakeFiles/cmTC_7fe79.dir/CheckIncludeFile.c.o
  1978. FAILED: CMakeFiles/cmTC_7fe79.dir/CheckIncludeFile.c.o
  1979. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -o CMakeFiles/cmTC_7fe79.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c
  1980. CheckIncludeFile.c:1:10: fatal error: sys/sysctl.h: No such file or directory
  1981.    1 | #include <sys/sysctl.h>
  1982.      |          ^~~~~~~~~~~~~~
  1983. compilation terminated.
  1984. ninja: build stopped: subcommand failed.
  1985.  
  1986.  
  1987.  
  1988. Determining if the function _gmtime64_s exists failed with the following output:
  1989. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  1990.  
  1991. Run Build Command(s):/usr/bin/ninja cmTC_dbd14 && [1/2] Building C object CMakeFiles/cmTC_dbd14.dir/CheckFunctionExists.c.o
  1992. [2/2] Linking C executable cmTC_dbd14
  1993. FAILED: cmTC_dbd14
  1994. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=_gmtime64_s -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_dbd14.dir/CheckFunctionExists.c.o -o cmTC_dbd14   && :
  1995. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_dbd14.dir/CheckFunctionExists.c.o: in function `main':
  1996. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_gmtime64_s'
  1997. collect2: error: ld returned 1 exit status
  1998. ninja: build stopped: subcommand failed.
  1999.  
  2000.  
  2001.  
  2002. Determining if the function _localtime64_s exists failed with the following output:
  2003. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2004.  
  2005. Run Build Command(s):/usr/bin/ninja cmTC_48ffc && [1/2] Building C object CMakeFiles/cmTC_48ffc.dir/CheckFunctionExists.c.o
  2006. [2/2] Linking C executable cmTC_48ffc
  2007. FAILED: cmTC_48ffc
  2008. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=_localtime64_s -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_48ffc.dir/CheckFunctionExists.c.o -o cmTC_48ffc   && :
  2009. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_48ffc.dir/CheckFunctionExists.c.o: in function `main':
  2010. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_localtime64_s'
  2011. collect2: error: ld returned 1 exit status
  2012. ninja: build stopped: subcommand failed.
  2013.  
  2014.  
  2015.  
  2016. Determining if the function _strtoui64 exists failed with the following output:
  2017. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2018.  
  2019. Run Build Command(s):/usr/bin/ninja cmTC_30b1c && [1/2] Building C object CMakeFiles/cmTC_30b1c.dir/CheckFunctionExists.c.o
  2020. [2/2] Linking C executable cmTC_30b1c
  2021. FAILED: cmTC_30b1c
  2022. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=_strtoui64 -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_30b1c.dir/CheckFunctionExists.c.o -o cmTC_30b1c   && :
  2023. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_30b1c.dir/CheckFunctionExists.c.o: in function `main':
  2024. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_strtoui64'
  2025. collect2: error: ld returned 1 exit status
  2026. ninja: build stopped: subcommand failed.
  2027.  
  2028.  
  2029.  
  2030. Determining if the function backtrace exists in the execinfo failed with the following output:
  2031. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2032.  
  2033. Run Build Command(s):/usr/bin/ninja cmTC_8b1e2 && [1/2] Building C object CMakeFiles/cmTC_8b1e2.dir/CheckFunctionExists.c.o
  2034. [2/2] Linking C executable cmTC_8b1e2
  2035. FAILED: cmTC_8b1e2
  2036. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=backtrace -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_8b1e2.dir/CheckFunctionExists.c.o -o cmTC_8b1e2  -lexecinfo && :
  2037. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lexecinfo
  2038. collect2: error: ld returned 1 exit status
  2039. ninja: build stopped: subcommand failed.
  2040.  
  2041.  
  2042.  
  2043. Determining if the function pthread_mutexattr_setpshared exists failed with the following output:
  2044. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2045.  
  2046. Run Build Command(s):/usr/bin/ninja cmTC_a2f62 && [1/2] Building C object CMakeFiles/cmTC_a2f62.dir/CheckFunctionExists.c.o
  2047. [2/2] Linking C executable cmTC_a2f62
  2048. FAILED: cmTC_a2f62
  2049. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=pthread_mutexattr_setpshared -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_a2f62.dir/CheckFunctionExists.c.o -o cmTC_a2f62   && :
  2050. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a2f62.dir/CheckFunctionExists.c.o: in function `main':
  2051. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_mutexattr_setpshared'
  2052. collect2: error: ld returned 1 exit status
  2053. ninja: build stopped: subcommand failed.
  2054.  
  2055.  
  2056.  
  2057. Determining if the function pthread_condattr_setpshared exists failed with the following output:
  2058. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2059.  
  2060. Run Build Command(s):/usr/bin/ninja cmTC_82dcd && [1/2] Building C object CMakeFiles/cmTC_82dcd.dir/CheckFunctionExists.c.o
  2061. [2/2] Linking C executable cmTC_82dcd
  2062. FAILED: cmTC_82dcd
  2063. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=pthread_condattr_setpshared -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_82dcd.dir/CheckFunctionExists.c.o -o cmTC_82dcd   && :
  2064. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_82dcd.dir/CheckFunctionExists.c.o: in function `main':
  2065. CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_condattr_setpshared'
  2066. collect2: error: ld returned 1 exit status
  2067. ninja: build stopped: subcommand failed.
  2068.  
  2069.  
  2070.  
  2071. Determining if the include file libstemmer.h exists failed with the following output:
  2072. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2073.  
  2074. Run Build Command(s):/usr/bin/ninja cmTC_cb77c && [1/2] Building C object CMakeFiles/cmTC_cb77c.dir/CheckIncludeFile.c.o
  2075. FAILED: CMakeFiles/cmTC_cb77c.dir/CheckIncludeFile.c.o
  2076. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -o CMakeFiles/cmTC_cb77c.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c
  2077. CheckIncludeFile.c:1:10: fatal error: libstemmer.h: No such file or directory
  2078.    1 | #include <libstemmer.h>
  2079.      |          ^~~~~~~~~~~~~~
  2080. compilation terminated.
  2081. ninja: build stopped: subcommand failed.
  2082.  
  2083.  
  2084.  
  2085. Determining if the function sb_stemmer_list exists in the stemmer failed with the following output:
  2086. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2087.  
  2088. Run Build Command(s):/usr/bin/ninja cmTC_aca47 && [1/2] Building C object CMakeFiles/cmTC_aca47.dir/CheckFunctionExists.c.o
  2089. [2/2] Linking C executable cmTC_aca47
  2090. FAILED: cmTC_aca47
  2091. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=sb_stemmer_list -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_aca47.dir/CheckFunctionExists.c.o -o cmTC_aca47  -lstemmer && :
  2092. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lstemmer
  2093. collect2: error: ld returned 1 exit status
  2094. ninja: build stopped: subcommand failed.
  2095.  
  2096.  
  2097.  
  2098. Determining if the function msgpack_version exists in the msgpack failed with the following output:
  2099. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2100.  
  2101. Run Build Command(s):/usr/bin/ninja cmTC_725b1 && [1/2] Building C object CMakeFiles/cmTC_725b1.dir/CheckFunctionExists.c.o
  2102. [2/2] Linking C executable cmTC_725b1
  2103. FAILED: cmTC_725b1
  2104. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wall -Wno-unused-but-set-variable -Wno-pointer-sign -Wformat -Wstrict-aliasing=2 -fno-strict-aliasing -Wno-disabled-optimization -Wfloat-equal -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -fexceptions -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -DCHECK_FUNCTION_EXISTS=msgpack_version -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_725b1.dir/CheckFunctionExists.c.o -o cmTC_725b1  -lmsgpack && :
  2105. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lmsgpack
  2106. collect2: error: ld returned 1 exit status
  2107. ninja: build stopped: subcommand failed.
  2108.  
  2109.  
  2110.  
  2111. Performing C SOURCE FILE Test HAVE_PTHREAD_THREADID_NP failed with the following output:
  2112. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2113.  
  2114. Run Build Command(s):/usr/bin/ninja cmTC_dc5bb && [1/2] Building C object CMakeFiles/cmTC_dc5bb.dir/src.c.o
  2115. src.c: In function 'main':
  2116. src.c:6:3: warning: implicit declaration of function 'pthread_threadid_np'; did you mean 'pthread_tryjoin_np'? [-Wimplicit-function-declaration]
  2117.    6 |   pthread_threadid_np(NULL, &tid64);
  2118.      |   ^~~~~~~~~~~~~~~~~~~
  2119.      |   pthread_tryjoin_np
  2120. [2/2] Linking C executable cmTC_dc5bb
  2121. FAILED: cmTC_dc5bb
  2122. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_dc5bb.dir/src.c.o -o cmTC_dc5bb   && :
  2123. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_dc5bb.dir/src.c.o: in function `main':
  2124. src.c:(.text.startup+0x10): undefined reference to `pthread_threadid_np'
  2125. collect2: error: ld returned 1 exit status
  2126. ninja: build stopped: subcommand failed.
  2127.  
  2128.  
  2129. Source file was:
  2130.  
  2131. #include <pthread.h>
  2132. int main(int ac, char **av)
  2133. {
  2134.  unsigned long long tid64;
  2135.  pthread_threadid_np(NULL, &tid64);
  2136.  return (tid64 != 0 ? 0 : 1);
  2137. }
  2138. Performing C SOURCE FILE Test HAVE_GETTHRID failed with the following output:
  2139. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2140.  
  2141. Run Build Command(s):/usr/bin/ninja cmTC_3fa05 && [1/2] Building C object CMakeFiles/cmTC_3fa05.dir/src.c.o
  2142. src.c: In function 'main':
  2143. src.c:5:28: warning: implicit declaration of function 'getthrid'; did you mean 'gettid'? [-Wimplicit-function-declaration]
  2144.    5 |   unsigned long long tid = getthrid();
  2145.      |                            ^~~~~~~~
  2146.      |                            gettid
  2147. [2/2] Linking C executable cmTC_3fa05
  2148. FAILED: cmTC_3fa05
  2149. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_3fa05.dir/src.c.o -o cmTC_3fa05   && :
  2150. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_3fa05.dir/src.c.o: in function `main':
  2151. src.c:(.text.startup+0x8): undefined reference to `getthrid'
  2152. collect2: error: ld returned 1 exit status
  2153. ninja: build stopped: subcommand failed.
  2154.  
  2155.  
  2156. Source file was:
  2157.  
  2158. #include <unistd.h>
  2159. int main(int ac, char **av)
  2160. {
  2161.  unsigned long long tid = getthrid();
  2162.  return (tid != 0 ? 0 : 1);
  2163. }
  2164. Performing C SOURCE FILE Test HAVE_PTHREAD_GETTHREADID_NP failed with the following output:
  2165. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2166.  
  2167. Run Build Command(s):/usr/bin/ninja cmTC_28034 && [1/2] Building C object CMakeFiles/cmTC_28034.dir/src.c.o
  2168. FAILED: CMakeFiles/cmTC_28034.dir/src.c.o
  2169. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -DHAVE_PTHREAD_GETTHREADID_NP -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_28034.dir/src.c.o -c src.c
  2170. src.c:2:10: fatal error: pthread_np.h: No such file or directory
  2171.    2 | #include <pthread_np.h>
  2172.      |          ^~~~~~~~~~~~~~
  2173. compilation terminated.
  2174. ninja: build stopped: subcommand failed.
  2175.  
  2176.  
  2177. Source file was:
  2178.  
  2179. #include <pthread_np.h>
  2180. int main(int ac, char **av)
  2181. {
  2182.  unsigned long long tid = pthread_getthreadid_np();
  2183.  return (tid != 0 ? 0 : 1);
  2184. }
  2185. Performing C++ SOURCE FILE Test HAVE_SSE42 failed with the following output:
  2186. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2187.  
  2188. Run Build Command(s):/usr/bin/ninja cmTC_8f93d && [1/2] Building CXX object CMakeFiles/cmTC_8f93d.dir/src.cxx.o
  2189. FAILED: CMakeFiles/cmTC_8f93d.dir/src.cxx.o
  2190. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-c++ -DHAVE_SSE42 -DPACKAGE=test -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -march=armv8-a+crc+crypto -Wno-unused-function -msse4.2 -mpclmul -std=c++11 -o CMakeFiles/cmTC_8f93d.dir/src.cxx.o -c src.cxx
  2191. aarch64-linux-gnu-g++: error: unrecognized command-line option '-msse4.2'
  2192. aarch64-linux-gnu-g++: error: unrecognized command-line option '-mpclmul'
  2193. ninja: build stopped: subcommand failed.
  2194.  
  2195.  
  2196. Source file was:
  2197.  
  2198. #include <cstdint>
  2199. #include <nmmintrin.h>
  2200. #include <wmmintrin.h>
  2201. int main() {
  2202.  volatile uint32_t x = _mm_crc32_u32(0, 0);
  2203.  const auto a = _mm_set_epi64x(0, 0);
  2204.  const auto b = _mm_set_epi64x(0, 0);
  2205.  const auto c = _mm_clmulepi64_si128(a, b, 0x00);
  2206.  auto d = _mm_cvtsi128_si64(c);
  2207. }
  2208.  
  2209. Determining if the function FascistCheckUser exists in the crack failed with the following output:
  2210. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2211.  
  2212. Run Build Command(s):/usr/bin/ninja cmTC_f9077 && [1/2] Building C object CMakeFiles/cmTC_f9077.dir/CheckFunctionExists.c.o
  2213. [2/2] Linking C executable cmTC_f9077
  2214. FAILED: cmTC_f9077
  2215. : && /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -DCHECK_FUNCTION_EXISTS=FascistCheckUser -Wl,-z,relro -Wl,-z,now -Wl,--as-needed    -L/usr/aarch64-linux-gnu/usr/lib   -rdynamic CMakeFiles/cmTC_f9077.dir/CheckFunctionExists.c.o -o cmTC_f9077  -lcrack && :
  2216. /usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lcrack
  2217. collect2: error: ld returned 1 exit status
  2218. ninja: build stopped: subcommand failed.
  2219.  
  2220.  
  2221.  
  2222. Determining if files crack.h exist failed with the following output:
  2223. Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
  2224.  
  2225. Run Build Command(s):/usr/bin/ninja cmTC_82df0 && [1/2] Building C object CMakeFiles/cmTC_82df0.dir/HAVE_CRACK_H.c.o
  2226. FAILED: CMakeFiles/cmTC_82df0.dir/HAVE_CRACK_H.c.o
  2227. /builddir/.xbps-mariadb/wrappers/aarch64-linux-gnu-gcc -Dsize_t=int  -fstack-clash-protection -D_FORTIFY_SOURCE=2 -O2 -march=armv8-a   -I/usr/aarch64-linux-gnu/usr/include -pie -fPIC -fstack-protector --param=ssp-buffer-size=4 -moutline-atomics -o CMakeFiles/cmTC_82df0.dir/HAVE_CRACK_H.c.o -c /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_CRACK_H.c
  2228. /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_CRACK_H.c:2:10: fatal error: crack.h: No such file or directory
  2229.    2 | #include <crack.h>
  2230.      |          ^~~~~~~~~
  2231. compilation terminated.
  2232. ninja: build stopped: subcommand failed.
  2233.  
  2234.  
  2235. Source:
  2236. /* */
  2237. #include <crack.h>
  2238.  
  2239.  
  2240. int main(void){return 0;}
  2241.  
  2242.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement