Skip to content

Instantly share code, notes, and snippets.

@Veganizer
Created April 11, 2021 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Veganizer/33ffe4401b28c2d7ac33d5605de99744 to your computer and use it in GitHub Desktop.
Save Veganizer/33ffe4401b28c2d7ac33d5605de99744 to your computer and use it in GitHub Desktop.
Determining if the function floor exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_d867c && [1/2] Building C object CMakeFiles/cmTC_d867c.dir/CheckFunctionExists.c.o
<command-line>: warning: conflicting types for built-in function 'floor'; expected 'double(double)' [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.19/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS'
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.19/Modules/CheckFunctionExists.c:1:1: note: 'floor' is declared in header '<math.h>'
+++ |+#include <math.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
[2/2] Linking C executable cmTC_d867c
FAILED: cmTC_d867c
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_d867c.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `floor'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function crypt exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_fd39d && [1/2] Building C object CMakeFiles/cmTC_fd39d.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_fd39d
FAILED: cmTC_fd39d
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_fd39d.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `crypt'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a9214 && [1/2] Building C object CMakeFiles/cmTC_a9214.dir/src.c.o
[2/2] Linking C executable cmTC_a9214
FAILED: cmTC_a9214
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a9214.dir/src.c.o: in function `main':
src.c:(.text.startup+0x1c): undefined reference to `pthread_create'
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x24): undefined reference to `pthread_detach'
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x2c): undefined reference to `pthread_cancel'
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: src.c:(.text.startup+0x38): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Source file was:
#include <pthread.h>
static void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_cancel(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_e7a19 && [1/2] Building C object CMakeFiles/cmTC_e7a19.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_e7a19
FAILED: cmTC_e7a19
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if files ieeefp.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_e0c42 && [1/2] Building C object CMakeFiles/cmTC_e0c42.dir/HAVE_IEEEFP_H.c.o
FAILED: CMakeFiles/cmTC_e0c42.dir/HAVE_IEEEFP_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IEEEFP_H.c:2:10: fatal error: ieeefp.h: No such file or directory
2 | #include <ieeefp.h>
| ^~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <ieeefp.h>
int main(void){return 0;}
Determining if files ndir.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8b731 && [1/2] Building C object CMakeFiles/cmTC_8b731.dir/HAVE_NDIR_H.c.o
FAILED: CMakeFiles/cmTC_8b731.dir/HAVE_NDIR_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_NDIR_H.c:2:10: fatal error: ndir.h: No such file or directory
2 | #include <ndir.h>
| ^~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <ndir.h>
int main(void){return 0;}
Determining if files select.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_c2e06 && [1/2] Building C object CMakeFiles/cmTC_c2e06.dir/HAVE_SELECT_H.c.o
FAILED: CMakeFiles/cmTC_c2e06.dir/HAVE_SELECT_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SELECT_H.c:2:10: fatal error: select.h: No such file or directory
2 | #include <select.h>
| ^~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <select.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/event.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a51a2 && [1/2] Building C object CMakeFiles/cmTC_a51a2.dir/HAVE_SYS_EVENT_H.c.o
FAILED: CMakeFiles/cmTC_a51a2.dir/HAVE_SYS_EVENT_H.c.o
/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
/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
3 | #include <sys/event.h>
| ^~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/types.h>
#include <sys/event.h>
int main(void){return 0;}
Determining if files sys/ndir.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f7c5b && [1/2] Building C object CMakeFiles/cmTC_f7c5b.dir/HAVE_SYS_NDIR_H.c.o
FAILED: CMakeFiles/cmTC_f7c5b.dir/HAVE_SYS_NDIR_H.c.o
/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
/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
2 | #include <sys/ndir.h>
| ^~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/ndir.h>
int main(void){return 0;}
Determining if files sys/pte.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_86ef3 && [1/2] Building C object CMakeFiles/cmTC_86ef3.dir/HAVE_SYS_PTE_H.c.o
FAILED: CMakeFiles/cmTC_86ef3.dir/HAVE_SYS_PTE_H.c.o
/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
/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
2 | #include <sys/pte.h>
| ^~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/pte.h>
int main(void){return 0;}
Determining if files synch.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_ed7ef && [1/2] Building C object CMakeFiles/cmTC_ed7ef.dir/HAVE_SYNCH_H.c.o
FAILED: CMakeFiles/cmTC_ed7ef.dir/HAVE_SYNCH_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYNCH_H.c:2:10: fatal error: synch.h: No such file or directory
2 | #include <synch.h>
| ^~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <synch.h>
int main(void){return 0;}
Determining if files sysent.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_37443 && [1/2] Building C object CMakeFiles/cmTC_37443.dir/HAVE_SYSENT_H.c.o
FAILED: CMakeFiles/cmTC_37443.dir/HAVE_SYSENT_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_SYSENT_H.c:2:10: fatal error: sysent.h: No such file or directory
2 | #include <sysent.h>
| ^~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sysent.h>
int main(void){return 0;}
Determining if files sys/fpu.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_c1629 && [1/2] Building C object CMakeFiles/cmTC_c1629.dir/HAVE_SYS_FPU_H.c.o
FAILED: CMakeFiles/cmTC_c1629.dir/HAVE_SYS_FPU_H.c.o
/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
/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
2 | #include <sys/fpu.h>
| ^~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/fpu.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/malloc.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_67dfa && [1/2] Building C object CMakeFiles/cmTC_67dfa.dir/HAVE_SYS_MALLOC_H.c.o
FAILED: CMakeFiles/cmTC_67dfa.dir/HAVE_SYS_MALLOC_H.c.o
/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
/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
3 | #include <sys/malloc.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/types.h>
#include <sys/malloc.h>
int main(void){return 0;}
Determining if files sys/stream.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f99c9 && [1/2] Building C object CMakeFiles/cmTC_f99c9.dir/HAVE_SYS_STREAM_H.c.o
FAILED: CMakeFiles/cmTC_f99c9.dir/HAVE_SYS_STREAM_H.c.o
/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
/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
2 | #include <sys/stream.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/stream.h>
int main(void){return 0;}
Determining if files termbits.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8b8d1 && [1/2] Building C object CMakeFiles/cmTC_8b8d1.dir/HAVE_TERMBITS_H.c.o
FAILED: CMakeFiles/cmTC_8b8d1.dir/HAVE_TERMBITS_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_TERMBITS_H.c:2:10: fatal error: termbits.h: No such file or directory
2 | #include <termbits.h>
| ^~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <termbits.h>
int main(void){return 0;}
Determining if files varargs.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_28a0e && [1/2] Building C object CMakeFiles/cmTC_28a0e.dir/HAVE_VARARGS_H.c.o
FAILED: CMakeFiles/cmTC_28a0e.dir/HAVE_VARARGS_H.c.o
/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
In file included from /builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_VARARGS_H.c:2:
/usr/lib/gcc/aarch64-linux-gnu/10.2/include/varargs.h:4:2: error: #error "GCC no longer implements <varargs.h>."
4 | #error "GCC no longer implements <varargs.h>."
| ^~~~~
/usr/lib/gcc/aarch64-linux-gnu/10.2/include/varargs.h:5:2: error: #error "Revise your code to use <stdarg.h>."
5 | #error "Revise your code to use <stdarg.h>."
| ^~~~~
ninja: build stopped: subcommand failed.
Source:
/* */
#include <varargs.h>
int main(void){return 0;}
Determining if files sys/utime.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_759e6 && [1/2] Building C object CMakeFiles/cmTC_759e6.dir/HAVE_SYS_UTIME_H.c.o
FAILED: CMakeFiles/cmTC_759e6.dir/HAVE_SYS_UTIME_H.c.o
/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
/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
2 | #include <sys/utime.h>
| ^~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/utime.h>
int main(void){return 0;}
Determining if files sys/vadvise.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_55bb9 && [1/2] Building C object CMakeFiles/cmTC_55bb9.dir/HAVE_SYS_VADVISE_H.c.o
FAILED: CMakeFiles/cmTC_55bb9.dir/HAVE_SYS_VADVISE_H.c.o
/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
/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
2 | #include <sys/vadvise.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/vadvise.h>
int main(void){return 0;}
Determining if files sys/sockio.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_bb6da && [1/2] Building C object CMakeFiles/cmTC_bb6da.dir/HAVE_SYS_SOCKIO_H.c.o
FAILED: CMakeFiles/cmTC_bb6da.dir/HAVE_SYS_SOCKIO_H.c.o
/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
/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
2 | #include <sys/sockio.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/sockio.h>
int main(void){return 0;}
Determining if files bfd.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_66b75 && [1/2] Building C object CMakeFiles/cmTC_66b75.dir/BFD_H_EXISTS.c.o
FAILED: CMakeFiles/cmTC_66b75.dir/BFD_H_EXISTS.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/BFD_H_EXISTS.c:2:10: fatal error: bfd.h: No such file or directory
2 | #include <bfd.h>
| ^~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <bfd.h>
int main(void){return 0;}
Determining if files sys/ptem.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_156d8 && [1/2] Building C object CMakeFiles/cmTC_156d8.dir/HAVE_SYS_PTEM_H.c.o
FAILED: CMakeFiles/cmTC_156d8.dir/HAVE_SYS_PTEM_H.c.o
/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
/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
2 | #include <sys/ptem.h>
| ^~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <sys/ptem.h>
int main(void){return 0;}
Determining if the function printstack exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_d15bb && [1/2] Building C object CMakeFiles/cmTC_d15bb.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_d15bb
FAILED: cmTC_d15bb
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_d15bb.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `printstack'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function bfill exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_c6ad2 && [1/2] Building C object CMakeFiles/cmTC_c6ad2.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_c6ad2
FAILED: cmTC_c6ad2
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_c6ad2.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `bfill'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function compress exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_1b3e7 && [1/2] Building C object CMakeFiles/cmTC_1b3e7.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_1b3e7
FAILED: cmTC_1b3e7
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_1b3e7.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `compress'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function gethrtime exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_cc3d7 && [1/2] Building C object CMakeFiles/cmTC_cc3d7.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_cc3d7
FAILED: cmTC_cc3d7
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_cc3d7.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `gethrtime'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function getpassphrase exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_650c8 && [1/2] Building C object CMakeFiles/cmTC_650c8.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_650c8
FAILED: cmTC_650c8
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_650c8.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `getpassphrase'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_attr_create exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_7ed01 && [1/2] Building C object CMakeFiles/cmTC_7ed01.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_7ed01
FAILED: cmTC_7ed01
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_7ed01.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_attr_create'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_condattr_create exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a0093 && [1/2] Building C object CMakeFiles/cmTC_a0093.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_a0093
FAILED: cmTC_a0093
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a0093.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_condattr_create'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_yield_np exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8f7dd && [1/2] Building C object CMakeFiles/cmTC_8f7dd.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_8f7dd
FAILED: cmTC_8f7dd
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_8f7dd.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_yield_np'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function rwlock_init exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_ff7b4 && [1/2] Building C object CMakeFiles/cmTC_ff7b4.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_ff7b4
FAILED: cmTC_ff7b4
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_ff7b4.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `rwlock_init'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function sigthreadmask exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_05b16 && [1/2] Building C object CMakeFiles/cmTC_05b16.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_05b16
FAILED: cmTC_05b16
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_05b16.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `sigthreadmask'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function tell exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a3e35 && [1/2] Building C object CMakeFiles/cmTC_a3e35.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_a3e35
FAILED: cmTC_a3e35
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a3e35.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `tell'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function thr_setconcurrency exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_90d04 && [1/2] Building C object CMakeFiles/cmTC_90d04.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_90d04
FAILED: cmTC_90d04
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_90d04.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `thr_setconcurrency'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function thr_yield exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8b531 && [1/2] Building C object CMakeFiles/cmTC_8b531.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_8b531
FAILED: cmTC_8b531
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_8b531.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `thr_yield'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Performing C++ SOURCE FILE Test HAVE_READDIR_R failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_61343 && [1/2] Building CXX object CMakeFiles/cmTC_61343.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_61343.dir/src.cxx.o
/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
src.cxx: In function 'int main()':
src.cxx:3:18: error: 'int readdir_r(DIR*, dirent*, dirent**)' is deprecated [-Werror=deprecated-declarations]
3 | readdir_r(0,0,0);
| ^
In file included from src.cxx:1:
/usr/aarch64-linux-gnu/usr/include/dirent.h:183:12: note: declared here
183 | extern int readdir_r (DIR *__restrict __dirp,
| ^~~~~~~~~
cc1plus: all warnings being treated as errors
ninja: build stopped: subcommand failed.
Source file was:
#include <dirent.h>
int main() {
readdir_r(0,0,0);
return 0;
}
Determining if files ia64intrin.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_af9fe && [1/2] Building C object CMakeFiles/cmTC_af9fe.dir/HAVE_IA64INTRIN_H.c.o
FAILED: CMakeFiles/cmTC_af9fe.dir/HAVE_IA64INTRIN_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_IA64INTRIN_H.c:2:10: fatal error: ia64intrin.h: No such file or directory
2 | #include <ia64intrin.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <ia64intrin.h>
int main(void){return 0;}
Determining if the function read_real_time exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_78090 && [1/2] Building C object CMakeFiles/cmTC_78090.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_78090
FAILED: cmTC_78090
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_78090.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `read_real_time'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the getpagesizes exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a88c5 && [1/2] Building C object CMakeFiles/cmTC_a88c5.dir/CheckSymbolExists.c.o
FAILED: CMakeFiles/cmTC_a88c5.dir/CheckSymbolExists.c.o
/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
CheckSymbolExists.c: In function 'main':
CheckSymbolExists.c:8:19: error: 'getpagesizes' undeclared (first use in this function)
8 | return ((int*)(&getpagesizes))[argc];
| ^~~~~~~~~~~~
CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
ninja: build stopped: subcommand failed.
File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <sys/mman.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef getpagesizes
return ((int*)(&getpagesizes))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the TIOCSTAT exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_b89d8 && [1/2] Building C object CMakeFiles/cmTC_b89d8.dir/CheckSymbolExists.c.o
FAILED: CMakeFiles/cmTC_b89d8.dir/CheckSymbolExists.c.o
/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
CheckSymbolExists.c: In function 'main':
CheckSymbolExists.c:8:19: error: 'TIOCSTAT' undeclared (first use in this function); did you mean 'TIOCSTI'?
8 | return ((int*)(&TIOCSTAT))[argc];
| ^~~~~~~~
| TIOCSTI
CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
ninja: build stopped: subcommand failed.
File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <sys/ioctl.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef TIOCSTAT
return ((int*)(&TIOCSTAT))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the FIONREAD exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_0cf53 && [1/2] Building C object CMakeFiles/cmTC_0cf53.dir/CheckSymbolExists.c.o
FAILED: CMakeFiles/cmTC_0cf53.dir/CheckSymbolExists.c.o
/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
CheckSymbolExists.c:2:10: fatal error: sys/filio.h: No such file or directory
2 | #include <sys/filio.h>
| ^~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
File /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <sys/filio.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef FIONREAD
return ((int*)(&FIONREAD))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining size of uchar failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_e7668 && [1/2] Building C object CMakeFiles/cmTC_e7668.dir/SIZEOF_UCHAR.c.o
FAILED: CMakeFiles/cmTC_e7668.dir/SIZEOF_UCHAR.c.o
/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
/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'?
29 | #define SIZE (sizeof(uchar))
| ^~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(uchar))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of int8 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_dff3f && [1/2] Building C object CMakeFiles/cmTC_dff3f.dir/SIZEOF_INT8.c.o
FAILED: CMakeFiles/cmTC_dff3f.dir/SIZEOF_INT8.c.o
/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
/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'?
29 | #define SIZE (sizeof(int8))
| ^~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT8.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(int8))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of uint8 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_05d08 && [1/2] Building C object CMakeFiles/cmTC_05d08.dir/SIZEOF_UINT8.c.o
FAILED: CMakeFiles/cmTC_05d08.dir/SIZEOF_UINT8.c.o
/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
/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'?
29 | #define SIZE (sizeof(uint8))
| ^~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT8.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(uint8))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of int16 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_5887c && [1/2] Building C object CMakeFiles/cmTC_5887c.dir/SIZEOF_INT16.c.o
FAILED: CMakeFiles/cmTC_5887c.dir/SIZEOF_INT16.c.o
/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
/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'?
29 | #define SIZE (sizeof(int16))
| ^~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT16.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(int16))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of uint16 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_d2215 && [1/2] Building C object CMakeFiles/cmTC_d2215.dir/SIZEOF_UINT16.c.o
FAILED: CMakeFiles/cmTC_d2215.dir/SIZEOF_UINT16.c.o
/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
/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'?
29 | #define SIZE (sizeof(uint16))
| ^~~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT16.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(uint16))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of int32 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_099f3 && [1/2] Building C object CMakeFiles/cmTC_099f3.dir/SIZEOF_INT32.c.o
FAILED: CMakeFiles/cmTC_099f3.dir/SIZEOF_INT32.c.o
/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
/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'?
29 | #define SIZE (sizeof(int32))
| ^~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT32.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(int32))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of uint32 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_20ff3 && [1/2] Building C object CMakeFiles/cmTC_20ff3.dir/SIZEOF_UINT32.c.o
FAILED: CMakeFiles/cmTC_20ff3.dir/SIZEOF_UINT32.c.o
/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
/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'?
29 | #define SIZE (sizeof(uint32))
| ^~~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT32.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(uint32))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of int64 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f3e13 && [1/2] Building C object CMakeFiles/cmTC_f3e13.dir/SIZEOF_INT64.c.o
FAILED: CMakeFiles/cmTC_f3e13.dir/SIZEOF_INT64.c.o
/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
/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'?
29 | #define SIZE (sizeof(int64))
| ^~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_INT64.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(int64))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining size of uint64 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_3e155 && [1/2] Building C object CMakeFiles/cmTC_3e155.dir/SIZEOF_UINT64.c.o
FAILED: CMakeFiles/cmTC_3e155.dir/SIZEOF_UINT64.c.o
/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
/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'?
29 | #define SIZE (sizeof(uint64))
| ^~~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c:31:12: note: in expansion of macro 'SIZE'
31 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_UINT64.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stdio.h"
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(uint64))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Performing C SOURCE FILE Test TIME_T_UNSIGNED failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_673d1 && [1/2] Building C object CMakeFiles/cmTC_673d1.dir/src.c.o
FAILED: CMakeFiles/cmTC_673d1.dir/src.c.o
/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
src.c: In function 'main':
src.c:5:7: error: size of array 'array' is negative
5 | int array[(((time_t)-1) > 0) ? 1 : -1];
| ^~~~~
ninja: build stopped: subcommand failed.
Source file was:
#include <time.h>
int main()
{
int array[(((time_t)-1) > 0) ? 1 : -1];
return 0;
}
Performing C SOURCE FILE Test HAVE_TIMESPEC_TS_SEC failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_10f4a && [1/2] Building C object CMakeFiles/cmTC_10f4a.dir/src.c.o
FAILED: CMakeFiles/cmTC_10f4a.dir/src.c.o
/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
src.c: In function 'main':
src.c:7:11: error: 'struct timespec' has no member named 'ts_sec'; did you mean 'tv_sec'?
7 | abstime.ts_sec = time(NULL)+1;
| ^~~~~~
| tv_sec
src.c:8:11: error: 'struct timespec' has no member named 'ts_nsec'; did you mean 'tv_nsec'?
8 | abstime.ts_nsec = 0;
| ^~~~~~~
| tv_nsec
ninja: build stopped: subcommand failed.
Source file was:
#include <pthread.h>
int main(int ac, char **av)
{
struct timespec abstime;
abstime.ts_sec = time(NULL)+1;
abstime.ts_nsec = 0;
}
Performing C++ SOURCE FILE Test HAVE_SOLARIS_STYLE_GETHOST failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_5158a && [1/2] Building CXX object CMakeFiles/cmTC_5158a.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_5158a.dir/src.cxx.o
/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
src.cxx: In function 'int main()':
src.cxx:17:58: error: cannot convert 'int*' to 'hostent**'
17 | 0, 0, (struct hostent *) 0, (char *) NULL, 0, (int *)0);
| ^~~~~~~~
| |
| int*
In file included from src.cxx:11:
/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*)'
174 | struct hostent **__restrict __result,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
ninja: build stopped: subcommand failed.
Source file was:
#undef inline
#if !defined(SCO) && !defined(__osf__) && !defined(_REENTRANT)
#define _REENTRANT
#endif
#include <pthread.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
int main()
{
struct hostent *foo =
gethostbyaddr_r((const char *) 0,
0, 0, (struct hostent *) 0, (char *) NULL, 0, (int *)0);
return 0;
}
Determining if files valgrind/memcheck.h;valgrind/valgrind.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_ecf78 && [1/2] Building C object CMakeFiles/cmTC_ecf78.dir/HAVE_VALGRIND_MEMCHECK_H.c.o
FAILED: CMakeFiles/cmTC_ecf78.dir/HAVE_VALGRIND_MEMCHECK_H.c.o
/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
/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
2 | #include <valgrind/memcheck.h>
| ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <valgrind/memcheck.h>
#include <valgrind/valgrind.h>
int main(void){return 0;}
Determining if the include file netinet/in6.h exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_60af3 && [1/2] Building C object CMakeFiles/cmTC_60af3.dir/CheckIncludeFile.c.o
FAILED: CMakeFiles/cmTC_60af3.dir/CheckIncludeFile.c.o
/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
CheckIncludeFile.c:1:10: fatal error: netinet/in6.h: No such file or directory
1 | #include <netinet/in6.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Performing C SOURCE FILE Test HAVE_SOCKADDR_IN_SIN_LEN failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_065dd && [1/2] Building C object CMakeFiles/cmTC_065dd.dir/src.c.o
FAILED: CMakeFiles/cmTC_065dd.dir/src.c.o
/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
src.c: In function 'main':
src.c:8:41: error: 'struct sockaddr_in' has no member named 'sin_len'
8 | (void)sizeof(((struct sockaddr_in *)0)->sin_len);
| ^~
ninja: build stopped: subcommand failed.
Source file was:
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
int main()
{
(void)sizeof(((struct sockaddr_in *)0)->sin_len);
return 0;
}
Performing C SOURCE FILE Test HAVE_SOCKADDR_IN6_SIN6_LEN failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_046b3 && [1/2] Building C object CMakeFiles/cmTC_046b3.dir/src.c.o
FAILED: CMakeFiles/cmTC_046b3.dir/src.c.o
/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
src.c: In function 'main':
src.c:8:42: error: 'struct sockaddr_in6' has no member named 'sin6_len'
8 | (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len);
| ^~
ninja: build stopped: subcommand failed.
Source file was:
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
int main()
{
(void)sizeof(((struct sockaddr_in6 *)0)->sin6_len);
return 0;
}
Performing C SOURCE FILE Test STRUCT_DIRENT_HAS_D_NAMLEN failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_eb8b5 && [1/2] Building C object CMakeFiles/cmTC_eb8b5.dir/src.c.o
FAILED: CMakeFiles/cmTC_eb8b5.dir/src.c.o
/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
src.c: In function 'main':
src.c:6:38: error: 'struct dirent' has no member named 'd_namlen'; did you mean 'd_name'?
6 | (void)sizeof(((struct dirent *)0)->d_namlen);
| ^~~~~~~~
| d_name
ninja: build stopped: subcommand failed.
Source file was:
#include <dirent.h>
int main()
{
(void)sizeof(((struct dirent *)0)->d_namlen);
return 0;
}
Performing C++ SOURCE FILE Test have_CXX__Wdeclaration_after_statement failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_7afd6 && [1/2] Building CXX object CMakeFiles/cmTC_7afd6.dir/src.cxx.o
cc1plus: warning: command-line option '-Wdeclaration-after-statement' is valid for C/ObjC but not for C++
[2/2] Linking CXX executable cmTC_7afd6
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__Wformat_security failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_09045 && [1/2] Building C object CMakeFiles/cmTC_09045.dir/src.c.o
cc1: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
[2/2] Linking C executable cmTC_09045
Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test have_CXX__Wformat_security failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_98cec && [1/2] Building CXX object CMakeFiles/cmTC_98cec.dir/src.cxx.o
cc1plus: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
[2/2] Linking CXX executable cmTC_98cec
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__Wnull_conversion failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_b24ce && [1/2] Building C object CMakeFiles/cmTC_b24ce.dir/src.c.o
FAILED: CMakeFiles/cmTC_b24ce.dir/src.c.o
/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
aarch64-linux-gnu-gcc: error: unrecognized command-line option '-Wnull-conversion'; did you mean '-Wno-conversion'?
ninja: build stopped: subcommand failed.
Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test have_CXX__Wnull_conversion failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_64d18 && [1/2] Building CXX object CMakeFiles/cmTC_64d18.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_64d18.dir/src.cxx.o
/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
aarch64-linux-gnu-g++: error: unrecognized command-line option '-Wnull-conversion'; did you mean '-Wno-conversion'?
ninja: build stopped: subcommand failed.
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__Wunused_private_field failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_eadbd && [1/2] Building C object CMakeFiles/cmTC_eadbd.dir/src.c.o
FAILED: CMakeFiles/cmTC_eadbd.dir/src.c.o
/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
aarch64-linux-gnu-gcc: error: unrecognized command-line option '-Wunused-private-field'
ninja: build stopped: subcommand failed.
Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test have_CXX__Wunused_private_field failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_c67fa && [1/2] Building CXX object CMakeFiles/cmTC_c67fa.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_c67fa.dir/src.cxx.o
/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
aarch64-linux-gnu-g++: error: unrecognized command-line option '-Wunused-private-field'
ninja: build stopped: subcommand failed.
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__Woverloaded_virtual failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_6d866 && [1/2] Building C object CMakeFiles/cmTC_6d866.dir/src.c.o
cc1: warning: command-line option '-Woverloaded-virtual' is valid for C++/ObjC++ but not for C
[2/2] Linking C executable cmTC_6d866
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__Wnon_virtual_dtor failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_0d47b && [1/2] Building C object CMakeFiles/cmTC_0d47b.dir/src.c.o
cc1: warning: command-line option '-Wnon-virtual-dtor' is valid for C++/ObjC++ but not for C
[2/2] Linking C executable cmTC_0d47b
Source file was:
int main(void) { return 0; }
Determining size of socklen_t failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_159aa && [1/2] Building C object CMakeFiles/cmTC_159aa.dir/SIZEOF_SOCKLEN_T.c.o
FAILED: CMakeFiles/cmTC_159aa.dir/SIZEOF_SOCKLEN_T.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:28:22: error: 'socklen_t' undeclared here (not in a function)
28 | #define SIZE (sizeof(socklen_t))
| ^~~~~~~~~
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:30:12: note: in expansion of macro 'SIZE'
30 | ('0' + ((SIZE / 10000)%10)),
| ^~~~
ninja: build stopped: subcommand failed.
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "sys/types.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(socklen_t))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
Determining if the function floor exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_b428f && [1/2] Building C object CMakeFiles/cmTC_b428f.dir/CheckFunctionExists.c.o
<command-line>: warning: conflicting types for built-in function 'floor'; expected 'double(double)' [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.19/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS'
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.19/Modules/CheckFunctionExists.c:1:1: note: 'floor' is declared in header '<math.h>'
+++ |+#include <math.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
[2/2] Linking C executable cmTC_b428f
FAILED: cmTC_b428f
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_b428f.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `floor'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_getspecific exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_308a4 && [1/2] Building C object CMakeFiles/cmTC_308a4.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_308a4
FAILED: cmTC_308a4
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_308a4.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_getspecific'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if files lz4.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_d2602 && [1/2] Building C object CMakeFiles/cmTC_d2602.dir/HAVE_LZ4_H.c.o
FAILED: CMakeFiles/cmTC_d2602.dir/HAVE_LZ4_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZ4_H.c:2:10: fatal error: lz4.h: No such file or directory
2 | #include <lz4.h>
| ^~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <lz4.h>
int main(void){return 0;}
Determining if the function LZ4_compress_limitedOutput exists in the lz4 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f10e8 && [1/2] Building C object CMakeFiles/cmTC_f10e8.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_f10e8
FAILED: cmTC_f10e8
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llz4
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function LZ4_compress_default exists in the lz4 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_3f5cd && [1/2] Building C object CMakeFiles/cmTC_3f5cd.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_3f5cd
FAILED: cmTC_3f5cd
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llz4
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if files lzma.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8a558 && [1/2] Building C object CMakeFiles/cmTC_8a558.dir/HAVE_LZMA_H.c.o
FAILED: CMakeFiles/cmTC_8a558.dir/HAVE_LZMA_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_LZMA_H.c:2:10: fatal error: lzma.h: No such file or directory
2 | #include <lzma.h>
| ^~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <lzma.h>
int main(void){return 0;}
Determining if the function lzma_stream_buffer_decode exists in the lzma failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_fd758 && [1/2] Building C object CMakeFiles/cmTC_fd758.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_fd758
FAILED: cmTC_fd758
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llzma
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function lzma_easy_buffer_encode exists in the lzma failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_76c1e && [1/2] Building C object CMakeFiles/cmTC_76c1e.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_76c1e
FAILED: cmTC_76c1e
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -llzma
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if files bzlib.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_85f00 && [1/2] Building C object CMakeFiles/cmTC_85f00.dir/HAVE_BZLIB2_H.c.o
FAILED: CMakeFiles/cmTC_85f00.dir/HAVE_BZLIB2_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_BZLIB2_H.c:2:10: fatal error: bzlib.h: No such file or directory
2 | #include <bzlib.h>
| ^~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <bzlib.h>
int main(void){return 0;}
Determining if the function BZ2_bzBuffToBuffCompress exists in the bz2 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f5a44 && [1/2] Building C object CMakeFiles/cmTC_f5a44.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_f5a44
FAILED: cmTC_f5a44
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lbz2
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function BZ2_bzBuffToBuffDecompress exists in the bz2 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_0dbd3 && [1/2] Building C object CMakeFiles/cmTC_0dbd3.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_0dbd3
FAILED: cmTC_0dbd3
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lbz2
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Performing C++ SOURCE FILE Test have_CXX__Wpointer_sign failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_4a980 && [1/2] Building CXX object CMakeFiles/cmTC_4a980.dir/src.cxx.o
cc1plus: warning: command-line option '-Wpointer-sign' is valid for C/ObjC but not for C++
[2/2] Linking CXX executable cmTC_4a980
Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test have_CXX__Wbad_function_cast failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_34dc7 && [1/2] Building CXX object CMakeFiles/cmTC_34dc7.dir/src.cxx.o
cc1plus: warning: command-line option '-Wbad-function-cast' is valid for C/ObjC but not for C++
[2/2] Linking CXX executable cmTC_34dc7
Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test have_C__fimplicit_templates failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_d4a2c && [1/2] Building C object CMakeFiles/cmTC_d4a2c.dir/src.c.o
cc1: warning: command-line option '-fimplicit-templates' is valid for C++/ObjC++ but not for C
[2/2] Linking C executable cmTC_d4a2c
Source file was:
int main(void) { return 0; }
Determining if the include file sys/sysctl.h exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_7fe79 && [1/2] Building C object CMakeFiles/cmTC_7fe79.dir/CheckIncludeFile.c.o
FAILED: CMakeFiles/cmTC_7fe79.dir/CheckIncludeFile.c.o
/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
CheckIncludeFile.c:1:10: fatal error: sys/sysctl.h: No such file or directory
1 | #include <sys/sysctl.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Determining if the function _gmtime64_s exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_dbd14 && [1/2] Building C object CMakeFiles/cmTC_dbd14.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_dbd14
FAILED: cmTC_dbd14
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_dbd14.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_gmtime64_s'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function _localtime64_s exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_48ffc && [1/2] Building C object CMakeFiles/cmTC_48ffc.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_48ffc
FAILED: cmTC_48ffc
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_48ffc.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_localtime64_s'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function _strtoui64 exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_30b1c && [1/2] Building C object CMakeFiles/cmTC_30b1c.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_30b1c
FAILED: cmTC_30b1c
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_30b1c.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `_strtoui64'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function backtrace exists in the execinfo failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8b1e2 && [1/2] Building C object CMakeFiles/cmTC_8b1e2.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_8b1e2
FAILED: cmTC_8b1e2
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lexecinfo
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_mutexattr_setpshared exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_a2f62 && [1/2] Building C object CMakeFiles/cmTC_a2f62.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_a2f62
FAILED: cmTC_a2f62
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_a2f62.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_mutexattr_setpshared'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function pthread_condattr_setpshared exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_82dcd && [1/2] Building C object CMakeFiles/cmTC_82dcd.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_82dcd
FAILED: cmTC_82dcd
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_82dcd.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text.startup+0x14): undefined reference to `pthread_condattr_setpshared'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the include file libstemmer.h exists failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_cb77c && [1/2] Building C object CMakeFiles/cmTC_cb77c.dir/CheckIncludeFile.c.o
FAILED: CMakeFiles/cmTC_cb77c.dir/CheckIncludeFile.c.o
/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
CheckIncludeFile.c:1:10: fatal error: libstemmer.h: No such file or directory
1 | #include <libstemmer.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Determining if the function sb_stemmer_list exists in the stemmer failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_aca47 && [1/2] Building C object CMakeFiles/cmTC_aca47.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_aca47
FAILED: cmTC_aca47
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lstemmer
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if the function msgpack_version exists in the msgpack failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_725b1 && [1/2] Building C object CMakeFiles/cmTC_725b1.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_725b1
FAILED: cmTC_725b1
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lmsgpack
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Performing C SOURCE FILE Test HAVE_PTHREAD_THREADID_NP failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_dc5bb && [1/2] Building C object CMakeFiles/cmTC_dc5bb.dir/src.c.o
src.c: In function 'main':
src.c:6:3: warning: implicit declaration of function 'pthread_threadid_np'; did you mean 'pthread_tryjoin_np'? [-Wimplicit-function-declaration]
6 | pthread_threadid_np(NULL, &tid64);
| ^~~~~~~~~~~~~~~~~~~
| pthread_tryjoin_np
[2/2] Linking C executable cmTC_dc5bb
FAILED: cmTC_dc5bb
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_dc5bb.dir/src.c.o: in function `main':
src.c:(.text.startup+0x10): undefined reference to `pthread_threadid_np'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Source file was:
#include <pthread.h>
int main(int ac, char **av)
{
unsigned long long tid64;
pthread_threadid_np(NULL, &tid64);
return (tid64 != 0 ? 0 : 1);
}
Performing C SOURCE FILE Test HAVE_GETTHRID failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_3fa05 && [1/2] Building C object CMakeFiles/cmTC_3fa05.dir/src.c.o
src.c: In function 'main':
src.c:5:28: warning: implicit declaration of function 'getthrid'; did you mean 'gettid'? [-Wimplicit-function-declaration]
5 | unsigned long long tid = getthrid();
| ^~~~~~~~
| gettid
[2/2] Linking C executable cmTC_3fa05
FAILED: cmTC_3fa05
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: CMakeFiles/cmTC_3fa05.dir/src.c.o: in function `main':
src.c:(.text.startup+0x8): undefined reference to `getthrid'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Source file was:
#include <unistd.h>
int main(int ac, char **av)
{
unsigned long long tid = getthrid();
return (tid != 0 ? 0 : 1);
}
Performing C SOURCE FILE Test HAVE_PTHREAD_GETTHREADID_NP failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_28034 && [1/2] Building C object CMakeFiles/cmTC_28034.dir/src.c.o
FAILED: CMakeFiles/cmTC_28034.dir/src.c.o
/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
src.c:2:10: fatal error: pthread_np.h: No such file or directory
2 | #include <pthread_np.h>
| ^~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source file was:
#include <pthread_np.h>
int main(int ac, char **av)
{
unsigned long long tid = pthread_getthreadid_np();
return (tid != 0 ? 0 : 1);
}
Performing C++ SOURCE FILE Test HAVE_SSE42 failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_8f93d && [1/2] Building CXX object CMakeFiles/cmTC_8f93d.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_8f93d.dir/src.cxx.o
/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
aarch64-linux-gnu-g++: error: unrecognized command-line option '-msse4.2'
aarch64-linux-gnu-g++: error: unrecognized command-line option '-mpclmul'
ninja: build stopped: subcommand failed.
Source file was:
#include <cstdint>
#include <nmmintrin.h>
#include <wmmintrin.h>
int main() {
volatile uint32_t x = _mm_crc32_u32(0, 0);
const auto a = _mm_set_epi64x(0, 0);
const auto b = _mm_set_epi64x(0, 0);
const auto c = _mm_clmulepi64_si128(a, b, 0x00);
auto d = _mm_cvtsi128_si64(c);
}
Determining if the function FascistCheckUser exists in the crack failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_f9077 && [1/2] Building C object CMakeFiles/cmTC_f9077.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_f9077
FAILED: cmTC_f9077
: && /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 && :
/usr/lib/gcc/aarch64-linux-gnu/10.2.1/../../../../aarch64-linux-gnu/bin/ld: cannot find -lcrack
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Determining if files crack.h exist failed with the following output:
Change Dir: /builddir/mariadb-10.5.9/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_82df0 && [1/2] Building C object CMakeFiles/cmTC_82df0.dir/HAVE_CRACK_H.c.o
FAILED: CMakeFiles/cmTC_82df0.dir/HAVE_CRACK_H.c.o
/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
/builddir/mariadb-10.5.9/build/CMakeFiles/CheckIncludeFiles/HAVE_CRACK_H.c:2:10: fatal error: crack.h: No such file or directory
2 | #include <crack.h>
| ^~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.
Source:
/* */
#include <crack.h>
int main(void){return 0;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment