Determining if the environ exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0308c/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_0308c.dir/build.make CMakeFiles/cmTC_0308c.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0308c.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -std=gnu11 -o CMakeFiles/cmTC_0308c.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'environ' undeclared (first use in this function) 8 | return ((int*)(&environ))[argc]; | ^~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_0308c.dir/build.make:78: CMakeFiles/cmTC_0308c.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_0308c/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef environ return ((int*)(&environ))[argc]; #else (void)argc; return 0; #endif } Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_eba1c/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_eba1c.dir/build.make CMakeFiles/cmTC_eba1c.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_eba1c.dir/src.c.o /usr/bin/gcc -DCMAKE_HAVE_LIBC_PTHREAD -O2 -std=gnu11 -o CMakeFiles/cmTC_eba1c.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_eba1c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_eba1c.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_eba1c.dir/src.c.o -o cmTC_eba1c /usr/bin/ld: CMakeFiles/cmTC_eba1c.dir/src.c.o: in function `main': src.c:(.text.startup+0x15): undefined reference to `pthread_create' /usr/bin/ld: src.c:(.text.startup+0x1f): undefined reference to `pthread_detach' /usr/bin/ld: src.c:(.text.startup+0x29): undefined reference to `pthread_cancel' /usr/bin/ld: src.c:(.text.startup+0x35): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_eba1c.dir/build.make:99: cmTC_eba1c] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_eba1c/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include 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: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_799df/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_799df.dir/build.make CMakeFiles/cmTC_799df.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_799df.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu11 -o CMakeFiles/cmTC_799df.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_799df /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_799df.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -DCHECK_FUNCTION_EXISTS=pthread_create -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_799df.dir/CheckFunctionExists.c.o -o cmTC_799df -lpthreads /usr/bin/ld: cannot find -lpthreads collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_799df.dir/build.make:99: cmTC_799df] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_799df/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Checking whether CXX compiler has environ in stdlib.h failed to compile with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c0479/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_c0479.dir/build.make CMakeFiles/cmTC_c0479.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_c0479.dir/kwsysPlatformTestsCXX.cxx.o /usr/bin/g++ -DTEST_KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H -O2 -std=gnu++17 -o CMakeFiles/cmTC_c0479.dir/kwsysPlatformTestsCXX.cxx.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx: In function 'int main()': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx:53:13: error: 'environ' was not declared in this scope; did you mean 'union'? 53 | char* e = environ[0]; | ^~~~~~~ | union gmake[2]: *** [CMakeFiles/cmTC_c0479.dir/build.make:78: CMakeFiles/cmTC_c0479.dir/kwsysPlatformTestsCXX.cxx.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_c0479/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' Checking whether CXX compiler struct stat has st_mtimespec member failed to compile with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_01908/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_01908.dir/build.make CMakeFiles/cmTC_01908.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_01908.dir/kwsysPlatformTestsCXX.cxx.o /usr/bin/g++ -DTEST_KWSYS_CXX_STAT_HAS_ST_MTIMESPEC -O2 -std=gnu++17 -o CMakeFiles/cmTC_01908.dir/kwsysPlatformTestsCXX.cxx.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx: In function 'int main()': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx:26:15: error: 'struct stat' has no member named 'st_mtimespec' 26 | (void)stat1.st_mtimespec.tv_sec; | ^~~~~~~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/kwsysPlatformTestsCXX.cxx:27:15: error: 'struct stat' has no member named 'st_mtimespec' 27 | (void)stat1.st_mtimespec.tv_nsec; | ^~~~~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_01908.dir/build.make:78: CMakeFiles/cmTC_01908.dir/kwsysPlatformTestsCXX.cxx.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_01908/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/Source/kwsys/CMakeFiles/CMakeTmp' Determining if the function connect exists in the socket;dl failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_7c583/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_7c583.dir/build.make CMakeFiles/cmTC_7c583.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7c583.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=connect -std=gnu11 -o CMakeFiles/cmTC_7c583.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_7c583 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_7c583.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=connect -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_7c583.dir/CheckFunctionExists.c.o -o cmTC_7c583 -lsocket -ldl /usr/bin/ld: cannot find -lsocket collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_7c583.dir/build.make:99: cmTC_7c583] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_7c583/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function recv exists in the network;dl failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_47b32/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_47b32.dir/build.make CMakeFiles/cmTC_47b32.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_47b32.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=recv -std=gnu11 -o CMakeFiles/cmTC_47b32.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_47b32 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_47b32.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=recv -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_47b32.dir/CheckFunctionExists.c.o -o cmTC_47b32 -lnetwork -ldl /usr/bin/ld: cannot find -lnetwork collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_47b32.dir/build.make:99: cmTC_47b32] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_47b32/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function dlopen exists in the dl;cmnghttp2 failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_898f4/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_898f4.dir/build.make CMakeFiles/cmTC_898f4.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_898f4.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=dlopen -std=gnu11 -o CMakeFiles/cmTC_898f4.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_898f4 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_898f4.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=dlopen -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_898f4.dir/CheckFunctionExists.c.o -o cmTC_898f4 -ldl -lcmnghttp2 /usr/bin/ld: cannot find -lcmnghttp2 collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_898f4.dir/build.make:99: cmTC_898f4] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_898f4/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if files stdio.h;inttypes.h;sys/filio.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2650a/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2650a.dir/build.make CMakeFiles/cmTC_2650a.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2650a.dir/HAVE_SYS_FILIO_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_2650a.dir/HAVE_SYS_FILIO_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FILIO_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FILIO_H.c:4:10: fatal error: sys/filio.h: No such file or directory 4 | #include | ^~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_2650a.dir/build.make:78: CMakeFiles/cmTC_2650a.dir/HAVE_SYS_FILIO_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2650a/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/sockio.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_56b87/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_56b87.dir/build.make CMakeFiles/cmTC_56b87.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_56b87.dir/HAVE_SYS_SOCKIO_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_56b87.dir/HAVE_SYS_SOCKIO_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c:10:10: fatal error: sys/sockio.h: No such file or directory 10 | #include | ^~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_56b87.dir/build.make:78: CMakeFiles/cmTC_56b87.dir/HAVE_SYS_SOCKIO_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_56b87/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/utime.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_4a70d/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_4a70d.dir/build.make CMakeFiles/cmTC_4a70d.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_4a70d.dir/HAVE_SYS_UTIME_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_4a70d.dir/HAVE_SYS_UTIME_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_UTIME_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_UTIME_H.c:15:10: fatal error: sys/utime.h: No such file or directory 15 | #include | ^~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_4a70d.dir/build.make:78: CMakeFiles/cmTC_4a70d.dir/HAVE_SYS_UTIME_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_4a70d/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;idn2.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_cb312/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_cb312.dir/build.make CMakeFiles/cmTC_cb312.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_cb312.dir/HAVE_IDN2_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_cb312.dir/HAVE_IDN2_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_IDN2_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_IDN2_H.c:22:10: fatal error: idn2.h: No such file or directory 22 | #include | ^~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_cb312.dir/build.make:78: CMakeFiles/cmTC_cb312.dir/HAVE_IDN2_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_cb312/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;io.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_78cf9/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_78cf9.dir/build.make CMakeFiles/cmTC_78cf9.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_78cf9.dir/HAVE_IO_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_78cf9.dir/HAVE_IO_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_IO_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_IO_H.c:23:10: fatal error: io.h: No such file or directory 23 | #include | ^~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_78cf9.dir/build.make:78: CMakeFiles/cmTC_78cf9.dir/HAVE_IO_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_78cf9/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;krb.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_70aa2/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_70aa2.dir/build.make CMakeFiles/cmTC_70aa2.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_70aa2.dir/HAVE_KRB_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_70aa2.dir/HAVE_KRB_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_KRB_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_KRB_H.c:23:10: fatal error: krb.h: No such file or directory 23 | #include | ^~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_70aa2.dir/build.make:78: CMakeFiles/cmTC_70aa2.dir/HAVE_KRB_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_70aa2/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;pem.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_96966/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_96966.dir/build.make CMakeFiles/cmTC_96966.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_96966.dir/HAVE_PEM_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_96966.dir/HAVE_PEM_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_PEM_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_PEM_H.c:29:10: fatal error: pem.h: No such file or directory 29 | #include | ^~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_96966.dir/build.make:78: CMakeFiles/cmTC_96966.dir/HAVE_PEM_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_96966/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;poll.h;pwd.h;setjmp.h;signal.h;ssl.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_08c4b/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_08c4b.dir/build.make CMakeFiles/cmTC_08c4b.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_08c4b.dir/HAVE_SSL_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_08c4b.dir/HAVE_SSL_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SSL_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SSL_H.c:33:10: fatal error: ssl.h: No such file or directory 33 | #include | ^~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_08c4b.dir/build.make:78: CMakeFiles/cmTC_08c4b.dir/HAVE_SSL_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_08c4b/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;poll.h;pwd.h;setjmp.h;signal.h;stdbool.h;stdint.h;stdio.h;stdlib.h;string.h;strings.h;stropts.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e44d7/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_e44d7.dir/build.make CMakeFiles/cmTC_e44d7.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e44d7.dir/HAVE_STROPTS_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_e44d7.dir/HAVE_STROPTS_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_STROPTS_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_STROPTS_H.c:39:10: fatal error: stropts.h: No such file or directory 39 | #include | ^~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_e44d7.dir/build.make:78: CMakeFiles/cmTC_e44d7.dir/HAVE_STROPTS_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_e44d7/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;poll.h;pwd.h;setjmp.h;signal.h;stdbool.h;stdint.h;stdio.h;stdlib.h;string.h;strings.h;termio.h;termios.h;time.h;unistd.h;utime.h;x509.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2fd81/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2fd81.dir/build.make CMakeFiles/cmTC_2fd81.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2fd81.dir/HAVE_X509_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_2fd81.dir/HAVE_X509_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_X509_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_X509_H.c:44:10: fatal error: x509.h: No such file or directory 44 | #include | ^~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_2fd81.dir/build.make:78: CMakeFiles/cmTC_2fd81.dir/HAVE_X509_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2fd81/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;poll.h;pwd.h;setjmp.h;signal.h;stdbool.h;stdint.h;stdio.h;stdlib.h;string.h;strings.h;termio.h;termios.h;time.h;unistd.h;utime.h;process.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_41a46/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_41a46.dir/build.make CMakeFiles/cmTC_41a46.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_41a46.dir/HAVE_PROCESS_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_41a46.dir/HAVE_PROCESS_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_PROCESS_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_PROCESS_H.c:44:10: fatal error: process.h: No such file or directory 44 | #include | ^~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_41a46.dir/build.make:78: CMakeFiles/cmTC_41a46.dir/HAVE_PROCESS_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_41a46/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files stdio.h;inttypes.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/resource.h;sys/select.h;sys/socket.h;sys/stat.h;sys/time.h;sys/types.h;sys/uio.h;sys/un.h;sys/xattr.h;alloca.h;arpa/inet.h;arpa/tftp.h;assert.h;errno.h;fcntl.h;ifaddrs.h;libgen.h;locale.h;net/if.h;netdb.h;netinet/in.h;netinet/tcp.h;poll.h;pwd.h;setjmp.h;signal.h;stdbool.h;stdint.h;stdio.h;stdlib.h;string.h;strings.h;termio.h;termios.h;time.h;unistd.h;utime.h;stddef.h;dlfcn.h;malloc.h;memory.h;netinet/if_ether.h;stdint.h;sockio.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_96591/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_96591.dir/build.make CMakeFiles/cmTC_96591.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_96591.dir/HAVE_SOCKIO_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_96591.dir/HAVE_SOCKIO_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SOCKIO_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SOCKIO_H.c:50:10: fatal error: sockio.h: No such file or directory 50 | #include | ^~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_96591.dir/build.make:78: CMakeFiles/cmTC_96591.dir/HAVE_SOCKIO_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_96591/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if the stricmp exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0781c/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_0781c.dir/build.make CMakeFiles/cmTC_0781c.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0781c.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_0781c.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'stricmp' undeclared (first use in this function); did you mean 'strncmp'? 56 | return ((int*)(&stricmp))[argc]; | ^~~~~~~ | strncmp /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_0781c.dir/build.make:78: CMakeFiles/cmTC_0781c.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_0781c/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef stricmp return ((int*)(&stricmp))[argc]; #else (void)argc; return 0; #endif } Determining if the strcmpi exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_316e1/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_316e1.dir/build.make CMakeFiles/cmTC_316e1.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_316e1.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_316e1.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'strcmpi' undeclared (first use in this function); did you mean 'strcmp'? 56 | return ((int*)(&strcmpi))[argc]; | ^~~~~~~ | strcmp /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_316e1.dir/build.make:78: CMakeFiles/cmTC_316e1.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_316e1/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef strcmpi return ((int*)(&strcmpi))[argc]; #else (void)argc; return 0; #endif } Determining if the strncmpi exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_58ed7/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_58ed7.dir/build.make CMakeFiles/cmTC_58ed7.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_58ed7.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_58ed7.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'strncmpi' undeclared (first use in this function); did you mean 'strncmp'? 56 | return ((int*)(&strncmpi))[argc]; | ^~~~~~~~ | strncmp /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_58ed7.dir/build.make:78: CMakeFiles/cmTC_58ed7.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_58ed7/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef strncmpi return ((int*)(&strncmpi))[argc]; #else (void)argc; return 0; #endif } Determining if the closesocket exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c8269/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_c8269.dir/build.make CMakeFiles/cmTC_c8269.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c8269.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_c8269.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'closesocket' undeclared (first use in this function) 56 | return ((int*)(&closesocket))[argc]; | ^~~~~~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_c8269.dir/build.make:78: CMakeFiles/cmTC_c8269.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_c8269/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef closesocket return ((int*)(&closesocket))[argc]; #else (void)argc; return 0; #endif } Determining if the getpass_r exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_9ecce/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_9ecce.dir/build.make CMakeFiles/cmTC_9ecce.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_9ecce.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_9ecce.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'getpass_r' undeclared (first use in this function); did you mean 'getpass'? 56 | return ((int*)(&getpass_r))[argc]; | ^~~~~~~~~ | getpass /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_9ecce.dir/build.make:78: CMakeFiles/cmTC_9ecce.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_9ecce/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef getpass_r return ((int*)(&getpass_r))[argc]; #else (void)argc; return 0; #endif } Determining if the _strtoi64 exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_40a13/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_40a13.dir/build.make CMakeFiles/cmTC_40a13.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_40a13.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_40a13.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: '_strtoi64' undeclared (first use in this function) 56 | return ((int*)(&_strtoi64))[argc]; | ^~~~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_40a13.dir/build.make:78: CMakeFiles/cmTC_40a13.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_40a13/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef _strtoi64 return ((int*)(&_strtoi64))[argc]; #else (void)argc; return 0; #endif } Determining if the setmode exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_695a5/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_695a5.dir/build.make CMakeFiles/cmTC_695a5.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_695a5.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_695a5.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: error: 'setmode' undeclared (first use in this function) 56 | return ((int*)(&setmode))[argc]; | ^~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:56:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_695a5.dir/build.make:78: CMakeFiles/cmTC_695a5.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_695a5/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef setmode return ((int*)(&setmode))[argc]; #else (void)argc; return 0; #endif } Determining if the function mach_absolute_time exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_f7f0d/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_f7f0d.dir/build.make CMakeFiles/cmTC_f7f0d.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_f7f0d.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=mach_absolute_time -std=gnu11 -o CMakeFiles/cmTC_f7f0d.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_f7f0d /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_f7f0d.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=mach_absolute_time -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_f7f0d.dir/CheckFunctionExists.c.o -o cmTC_f7f0d /usr/bin/ld: CMakeFiles/cmTC_f7f0d.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `mach_absolute_time' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_f7f0d.dir/build.make:99: cmTC_f7f0d] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_f7f0d/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_FSETXATTR_6 failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_1147c/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_1147c.dir/build.make CMakeFiles/cmTC_1147c.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_1147c.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_FSETXATTR_6 -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_1147c.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:463:3: error: too many arguments to function 'fsetxattr' 463 | fsetxattr(0, 0, 0, 0, 0, 0); | ^~~~~~~~~ In file included from /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:460: /usr/include/x86_64-linux-gnu/sys/xattr.h:54:12: note: declared here 54 | extern int fsetxattr (int __fd, const char *__name, const void *__value, | ^~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_1147c.dir/build.make:78: CMakeFiles/cmTC_1147c.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_1147c/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining size of ADDRESS_FAMILY failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_06175/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_06175.dir/build.make CMakeFiles/cmTC_06175.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_06175.dir/SIZEOF_ADDRESS_FAMILY.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_06175.dir/SIZEOF_ADDRESS_FAMILY.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckTypeSize/SIZEOF_ADDRESS_FAMILY.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckTypeSize/SIZEOF_ADDRESS_FAMILY.c:4:10: fatal error: ws2def.h: No such file or directory 4 | #include "ws2def.h" | ^~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_06175.dir/build.make:78: CMakeFiles/cmTC_06175.dir/SIZEOF_ADDRESS_FAMILY.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_06175/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckTypeSize/SIZEOF_ADDRESS_FAMILY.c: #include #include #include #include "ws2def.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(ADDRESS_FAMILY)) 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 Curl Test HAVE_IOCTLSOCKET failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b4606/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_b4606.dir/build.make CMakeFiles/cmTC_b4606.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_b4606.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_IOCTLSOCKET -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_b4606.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:245:44: error: 'FIONBIO' undeclared (first use in this function) 245 | unsigned long flags = ioctlsocket(socket, FIONBIO, &flags); | ^~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:245:44: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_b4606.dir/build.make:78: CMakeFiles/cmTC_b4606.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_b4606/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_IOCTLSOCKET_CAMEL failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_402cd/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_402cd.dir/build.make CMakeFiles/cmTC_402cd.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_402cd.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_IOCTLSOCKET_CAMEL -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_402cd.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c Linking C executable cmTC_402cd /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_402cd.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DHAVE_IOCTLSOCKET_CAMEL -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_402cd.dir/CurlTests.c.o -o cmTC_402cd /usr/bin/ld: CMakeFiles/cmTC_402cd.dir/CurlTests.c.o: in function `main': CurlTests.c:(.text.startup+0xd): undefined reference to `IoctlSocket' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_402cd.dir/build.make:99: cmTC_402cd] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_402cd/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_56791/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_56791.dir/build.make CMakeFiles/cmTC_56791.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_56791.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_IOCTLSOCKET_CAMEL_FIONBIO -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_56791.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:301:32: error: 'FIONBIO' undeclared (first use in this function) 301 | if(0 != IoctlSocket(0, FIONBIO, &flags)) | ^~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:301:32: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_56791.dir/build.make:78: CMakeFiles/cmTC_56791.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_56791/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2be24/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2be24.dir/build.make CMakeFiles/cmTC_2be24.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2be24.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_IOCTLSOCKET_FIONBIO -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_2be24.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:328:32: error: 'FIONBIO' undeclared (first use in this function) 328 | if(0 != ioctlsocket(0, FIONBIO, &flags)) | ^~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:328:32: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_2be24.dir/build.make:78: CMakeFiles/cmTC_2be24.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2be24/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_a1bb3/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_a1bb3.dir/build.make CMakeFiles/cmTC_a1bb3.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_a1bb3.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_SETSOCKOPT_SO_NONBLOCK -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_a1bb3.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:424:43: error: 'SO_NONBLOCK' undeclared (first use in this function); did you mean 'SOCK_NONBLOCK'? 424 | if(0 != setsockopt(0, SOL_SOCKET, SO_NONBLOCK, 0, 0)) | ^~~~~~~~~~~ | SOCK_NONBLOCK /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:424:43: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_a1bb3.dir/build.make:78: CMakeFiles/cmTC_a1bb3.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_a1bb3/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_O_NONBLOCK failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_33981/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_33981.dir/build.make CMakeFiles/cmTC_33981.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_33981.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_O_NONBLOCK -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_33981.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c Linking C executable cmTC_33981 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_33981.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DHAVE_O_NONBLOCK -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_33981.dir/CurlTests.c.o -o cmTC_33981 /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x20): undefined reference to `main' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_33981.dir/build.make:99: cmTC_33981] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_33981/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_GETHOSTBYNAME_R_3 failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_5fa3a/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_5fa3a.dir/build.make CMakeFiles/cmTC_5fa3a.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_5fa3a.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_GETHOSTBYNAME_R_3 -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_5fa3a.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:97:23: error: storage size of 'hdata' isn't known 97 | struct hostent_data hdata; | ^~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:109:8: error: too few arguments to function 'gethostbyname_r' 109 | rc = gethostbyname_r(address, &h, &hdata); | ^~~~~~~~~~~~~~~ In file included from /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:87: /usr/include/netdb.h:177:12: note: declared here 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_5fa3a.dir/build.make:78: CMakeFiles/cmTC_5fa3a.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_5fa3a/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_GETHOSTBYNAME_R_5 failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c7bfc/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_c7bfc.dir/build.make CMakeFiles/cmTC_c7bfc.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c7bfc.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_GETHOSTBYNAME_R_5 -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_c7bfc.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:112:8: error: too few arguments to function 'gethostbyname_r' 112 | rc = gethostbyname_r(address, &h, buffer, 8192, &h_errnop); | ^~~~~~~~~~~~~~~ In file included from /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:87: /usr/include/netdb.h:177:12: note: declared here 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_c7bfc.dir/build.make:78: CMakeFiles/cmTC_c7bfc.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_c7bfc/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e5cce/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_e5cce.dir/build.make CMakeFiles/cmTC_e5cce.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e5cce.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_GETHOSTBYNAME_R_3_REENTRANT -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_e5cce.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:97:23: error: storage size of 'hdata' isn't known 97 | struct hostent_data hdata; | ^~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:109:8: error: too few arguments to function 'gethostbyname_r' 109 | rc = gethostbyname_r(address, &h, &hdata); | ^~~~~~~~~~~~~~~ In file included from /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:87: /usr/include/netdb.h:177:12: note: declared here 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_e5cce.dir/build.make:78: CMakeFiles/cmTC_e5cce.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_e5cce/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_5178f/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_5178f.dir/build.make CMakeFiles/cmTC_5178f.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_5178f.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_GETHOSTBYNAME_R_5_REENTRANT -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_5178f.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:112:8: error: too few arguments to function 'gethostbyname_r' 112 | rc = gethostbyname_r(address, &h, buffer, 8192, &h_errnop); | ^~~~~~~~~~~~~~~ In file included from /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:87: /usr/include/netdb.h:177:12: note: declared here 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_5178f.dir/build.make:78: CMakeFiles/cmTC_5178f.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_5178f/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_GLIBC_STRERROR_R failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2d398/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2d398.dir/build.make CMakeFiles/cmTC_2d398.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2d398.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_GLIBC_STRERROR_R -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_2d398.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:440:51: error: subscripted value is neither array nor pointer nor vector 440 | check(strerror_r(EACCES, buffer, sizeof(buffer))[0]); | ^ gmake[2]: *** [CMakeFiles/cmTC_2d398.dir/build.make:78: CMakeFiles/cmTC_2d398.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2d398/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing Curl Test HAVE_BUILTIN_AVAILABLE failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e52f0/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_e52f0.dir/build.make CMakeFiles/cmTC_e52f0.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e52f0.dir/CurlTests.c.o /usr/bin/gcc -O2 -w -DHAVE_BUILTIN_AVAILABLE -DHAVE_STDIO_H -DHAVE_INTTYPES_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_PARAM_H -DHAVE_SYS_POLL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_SELECT_H -DHAVE_SYS_SOCKET_H -DHAVE_SYS_STAT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_UIO_H -DHAVE_SYS_UN_H -DHAVE_SYS_XATTR_H -DHAVE_ALLOCA_H -DHAVE_ARPA_INET_H -DHAVE_ARPA_TFTP_H -DHAVE_ASSERT_H -DHAVE_ERRNO_H -DHAVE_FCNTL_H -DHAVE_IFADDRS_H -DHAVE_LIBGEN_H -DHAVE_LOCALE_H -DHAVE_NET_IF_H -DHAVE_NETDB_H -DHAVE_NETINET_IN_H -DHAVE_NETINET_TCP_H -DHAVE_POLL_H -DHAVE_PWD_H -DHAVE_SETJMP_H -DHAVE_SIGNAL_H -DHAVE_STDBOOL_H -DHAVE_STDINT_H -DHAVE_STDIO_H -DHAVE_STDLIB_H -DHAVE_STRING_H -DHAVE_STRINGS_H -DHAVE_TERMIO_H -DHAVE_TERMIOS_H -DHAVE_TIME_H -DHAVE_UNISTD_H -DHAVE_UTIME_H -DHAVE_STDDEF_H -DHAVE_DLFCN_H -DHAVE_MALLOC_H -DHAVE_MEMORY_H -DHAVE_NETINET_IF_ETHER_H -DHAVE_STDINT_H -DHAVE_SYS_UTSNAME_H -std=gnu11 -o CMakeFiles/cmTC_e52f0.dir/CurlTests.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:487:26: error: 'macOS' undeclared (first use in this function) 487 | if(__builtin_available(macOS 10.12, *)) {} | ^~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:487:26: note: each undeclared identifier is reported only once for each function it appears in /tmp/instance-18/output-1/build/host-cmake-3.22.3/Utilities/cmcurl/CMake/CurlTests.c:487:31: error: expected ')' before numeric constant 487 | if(__builtin_available(macOS 10.12, *)) {} | ^~~~~~ | ) gmake[2]: *** [CMakeFiles/cmTC_e52f0.dir/build.make:78: CMakeFiles/cmTC_e52f0.dir/CurlTests.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_e52f0/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the arc4random_buf exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_cf070/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_cf070.dir/build.make CMakeFiles/cmTC_cf070.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_cf070.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_cf070.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'arc4random_buf' undeclared (first use in this function) 8 | return ((int*)(&arc4random_buf))[argc]; | ^~~~~~~~~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_cf070.dir/build.make:78: CMakeFiles/cmTC_cf070.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_cf070/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef arc4random_buf return ((int*)(&arc4random_buf))[argc]; #else (void)argc; return 0; #endif } Determining if the arc4random exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_77a23/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_77a23.dir/build.make CMakeFiles/cmTC_77a23.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_77a23.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_77a23.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'arc4random' undeclared (first use in this function); did you mean 'srandom'? 8 | return ((int*)(&arc4random))[argc]; | ^~~~~~~~~~ | srandom /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_77a23.dir/build.make:78: CMakeFiles/cmTC_77a23.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_77a23/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef arc4random return ((int*)(&arc4random))[argc]; #else (void)argc; return 0; #endif } Determining if files sys/types.h;ctype.h;copyfile.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_008e4/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_008e4.dir/build.make CMakeFiles/cmTC_008e4.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_008e4.dir/HAVE_COPYFILE_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_008e4.dir/HAVE_COPYFILE_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_COPYFILE_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_COPYFILE_H.c:4:10: fatal error: copyfile.h: No such file or directory 4 | #include | ^~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_008e4.dir/build.make:78: CMakeFiles/cmTC_008e4.dir/HAVE_COPYFILE_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_008e4/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;direct.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_63269/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_63269.dir/build.make CMakeFiles/cmTC_63269.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_63269.dir/HAVE_DIRECT_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_63269.dir/HAVE_DIRECT_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_DIRECT_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_DIRECT_H.c:4:10: fatal error: direct.h: No such file or directory 4 | #include | ^~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_63269.dir/build.make:78: CMakeFiles/cmTC_63269.dir/HAVE_DIRECT_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_63269/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;ext2fs/ext2_fs.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c5655/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_c5655.dir/build.make CMakeFiles/cmTC_c5655.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c5655.dir/HAVE_EXT2FS_EXT2_FS_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_c5655.dir/HAVE_EXT2FS_EXT2_FS_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_EXT2FS_EXT2_FS_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_EXT2FS_EXT2_FS_H.c:6:10: fatal error: ext2fs/ext2_fs.h: No such file or directory 6 | #include | ^~~~~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_c5655.dir/build.make:78: CMakeFiles/cmTC_c5655.dir/HAVE_EXT2FS_EXT2_FS_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_c5655/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include int main(void){return 0;} Performing C SOURCE FILE Test HAVE_WORKING_EXT2_IOC_GETFLAGS failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_26d36/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_26d36.dir/build.make CMakeFiles/cmTC_26d36.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_26d36.dir/src.c.o /usr/bin/gcc -DHAVE_WORKING_EXT2_IOC_GETFLAGS -O2 -w -std=gnu11 -o CMakeFiles/cmTC_26d36.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:2:10: fatal error: ext2fs/ext2_fs.h: No such file or directory 2 | #include | ^~~~~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_26d36.dir/build.make:78: CMakeFiles/cmTC_26d36.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_26d36/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main(void) { return EXT2_IOC_GETFLAGS; } Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;membership.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0dc90/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_0dc90.dir/build.make CMakeFiles/cmTC_0dc90.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0dc90.dir/HAVE_MEMBERSHIP_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_0dc90.dir/HAVE_MEMBERSHIP_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_MEMBERSHIP_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_MEMBERSHIP_H.c:15:10: fatal error: membership.h: No such file or directory 15 | #include | ^~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_0dc90.dir/build.make:78: CMakeFiles/cmTC_0dc90.dir/HAVE_MEMBERSHIP_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_0dc90/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;readpassphrase.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_aa6bc/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_aa6bc.dir/build.make CMakeFiles/cmTC_aa6bc.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_aa6bc.dir/HAVE_READPASSPHRASE_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_aa6bc.dir/HAVE_READPASSPHRASE_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_READPASSPHRASE_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_READPASSPHRASE_H.c:20:10: fatal error: readpassphrase.h: No such file or directory 20 | #include | ^~~~~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_aa6bc.dir/build.make:78: CMakeFiles/cmTC_aa6bc.dir/HAVE_READPASSPHRASE_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_aa6bc/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/extattr.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_99553/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_99553.dir/build.make CMakeFiles/cmTC_99553.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_99553.dir/HAVE_SYS_EXTATTR_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_99553.dir/HAVE_SYS_EXTATTR_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EXTATTR_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EXTATTR_H.c:29:10: fatal error: sys/extattr.h: No such file or directory 29 | #include | ^~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_99553.dir/build.make:78: CMakeFiles/cmTC_99553.dir/HAVE_SYS_EXTATTR_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_99553/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/mkdev.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_78d43/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_78d43.dir/build.make CMakeFiles/cmTC_78d43.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_78d43.dir/HAVE_SYS_MKDEV_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_78d43.dir/HAVE_SYS_MKDEV_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MKDEV_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MKDEV_H.c:30:10: fatal error: sys/mkdev.h: No such file or directory 30 | #include | ^~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_78d43.dir/build.make:78: CMakeFiles/cmTC_78d43.dir/HAVE_SYS_MKDEV_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_78d43/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/mount.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_33dad/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_33dad.dir/build.make CMakeFiles/cmTC_33dad.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_33dad.dir/HAVE_SYS_MOUNT_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_33dad.dir/HAVE_SYS_MOUNT_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MOUNT_H.c In file included from /usr/include/linux/fs.h:19, from /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MOUNT_H.c:12: /usr/include/x86_64-linux-gnu/sys/mount.h:35:3: error: expected identifier before numeric constant 35 | MS_RDONLY = 1, /* Mount read-only. */ | ^~~~~~~~~ gmake[2]: *** [CMakeFiles/cmTC_33dad.dir/build.make:78: CMakeFiles/cmTC_33dad.dir/HAVE_SYS_MOUNT_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_33dad/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/richacl.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_019c3/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_019c3.dir/build.make CMakeFiles/cmTC_019c3.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_019c3.dir/HAVE_SYS_RICHACL_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_019c3.dir/HAVE_SYS_RICHACL_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_RICHACL_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_SYS_RICHACL_H.c:32:10: fatal error: sys/richacl.h: No such file or directory 32 | #include | ^~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_019c3.dir/build.make:78: CMakeFiles/cmTC_019c3.dir/HAVE_SYS_RICHACL_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_019c3/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/select.h;sys/stat.h;sys/statfs.h;sys/statvfs.h;sys/sysmacros.h;sys/time.h;sys/utsname.h;sys/vfs.h;sys/wait.h;sys/xattr.h;time.h;unistd.h;utime.h;wchar.h;wctype.h;windows.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_9bc8f/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_9bc8f.dir/build.make CMakeFiles/cmTC_9bc8f.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_9bc8f.dir/HAVE_WINDOWS_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_9bc8f.dir/HAVE_WINDOWS_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINDOWS_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINDOWS_H.c:47:10: fatal error: windows.h: No such file or directory 47 | #include | ^~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_9bc8f.dir/build.make:78: CMakeFiles/cmTC_9bc8f.dir/HAVE_WINDOWS_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_9bc8f/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/select.h;sys/stat.h;sys/statfs.h;sys/statvfs.h;sys/sysmacros.h;sys/time.h;sys/utsname.h;sys/vfs.h;sys/wait.h;sys/xattr.h;time.h;unistd.h;utime.h;wchar.h;wctype.h;wincrypt.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_efaa3/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_efaa3.dir/build.make CMakeFiles/cmTC_efaa3.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_efaa3.dir/HAVE_WINCRYPT_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_efaa3.dir/HAVE_WINCRYPT_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINCRYPT_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINCRYPT_H.c:47:10: fatal error: wincrypt.h: No such file or directory 47 | #include | ^~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_efaa3.dir/build.make:78: CMakeFiles/cmTC_efaa3.dir/HAVE_WINCRYPT_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_efaa3/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;ctype.h;dlfcn.h;errno.h;fcntl.h;grp.h;langinfo.h;limits.h;linux/types.h;linux/fiemap.h;linux/fs.h;linux/magic.h;locale.h;memory.h;paths.h;poll.h;pthread.h;pwd.h;regex.h;signal.h;spawn.h;stdarg.h;stdlib.h;string.h;strings.h;sys/acl.h;sys/cdefs.h;sys/ioctl.h;sys/param.h;sys/poll.h;sys/select.h;sys/stat.h;sys/statfs.h;sys/statvfs.h;sys/sysmacros.h;sys/time.h;sys/utsname.h;sys/vfs.h;sys/wait.h;sys/xattr.h;time.h;unistd.h;utime.h;wchar.h;wctype.h;winioctl.h exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_cab5a/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_cab5a.dir/build.make CMakeFiles/cmTC_cab5a.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_cab5a.dir/HAVE_WINIOCTL_H.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_cab5a.dir/HAVE_WINIOCTL_H.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINIOCTL_H.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CheckIncludeFiles/HAVE_WINIOCTL_H.c:47:10: fatal error: winioctl.h: No such file or directory 47 | #include | ^~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_cab5a.dir/build.make:78: CMakeFiles/cmTC_cab5a.dir/HAVE_WINIOCTL_H.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_cab5a/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if the function MD5Init exists in the md failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_ba596/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_ba596.dir/build.make CMakeFiles/cmTC_ba596.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ba596.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=MD5Init -std=gnu11 -o CMakeFiles/cmTC_ba596.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_ba596 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_ba596.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=MD5Init -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_ba596.dir/CheckFunctionExists.c.o -o cmTC_ba596 -lmd /usr/bin/ld: cannot find -lmd collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_ba596.dir/build.make:99: cmTC_ba596] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_ba596/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function getvfsbyname exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_96c17/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_96c17.dir/build.make CMakeFiles/cmTC_96c17.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_96c17.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=getvfsbyname -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_96c17.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_96c17 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_96c17.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=getvfsbyname -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_96c17.dir/CheckFunctionExists.c.o -o cmTC_96c17 /usr/bin/ld: CMakeFiles/cmTC_96c17.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `getvfsbyname' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_96c17.dir/build.make:99: cmTC_96c17] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_96c17/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function lchflags exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2765e/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2765e.dir/build.make CMakeFiles/cmTC_2765e.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2765e.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=lchflags -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_2765e.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_2765e /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_2765e.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=lchflags -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_2765e.dir/CheckFunctionExists.c.o -o cmTC_2765e /usr/bin/ld: CMakeFiles/cmTC_2765e.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `lchflags' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_2765e.dir/build.make:99: cmTC_2765e] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2765e/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function readpassphrase exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0a70e/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_0a70e.dir/build.make CMakeFiles/cmTC_0a70e.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0a70e.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=readpassphrase -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_0a70e.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_0a70e /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_0a70e.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=readpassphrase -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_0a70e.dir/CheckFunctionExists.c.o -o cmTC_0a70e /usr/bin/ld: CMakeFiles/cmTC_0a70e.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `readpassphrase' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_0a70e.dir/build.make:99: cmTC_0a70e] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_0a70e/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function strncpy_s exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_cf6c2/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_cf6c2.dir/build.make CMakeFiles/cmTC_cf6c2.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_cf6c2.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=strncpy_s -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_cf6c2.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_cf6c2 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_cf6c2.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=strncpy_s -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_cf6c2.dir/CheckFunctionExists.c.o -o cmTC_cf6c2 /usr/bin/ld: CMakeFiles/cmTC_cf6c2.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `strncpy_s' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_cf6c2.dir/build.make:99: cmTC_cf6c2] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_cf6c2/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _ctime64_s exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_5a064/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_5a064.dir/build.make CMakeFiles/cmTC_5a064.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_5a064.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_ctime64_s -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_5a064.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_5a064 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_5a064.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_ctime64_s -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_5a064.dir/CheckFunctionExists.c.o -o cmTC_5a064 /usr/bin/ld: CMakeFiles/cmTC_5a064.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_ctime64_s' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_5a064.dir/build.make:99: cmTC_5a064] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_5a064/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _fseeki64 exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_464b6/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_464b6.dir/build.make CMakeFiles/cmTC_464b6.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_464b6.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_fseeki64 -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_464b6.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_464b6 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_464b6.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_fseeki64 -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_464b6.dir/CheckFunctionExists.c.o -o cmTC_464b6 /usr/bin/ld: CMakeFiles/cmTC_464b6.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_fseeki64' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_464b6.dir/build.make:99: cmTC_464b6] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_464b6/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _get_timezone exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_eede6/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_eede6.dir/build.make CMakeFiles/cmTC_eede6.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_eede6.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_get_timezone -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_eede6.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_eede6 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_eede6.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_get_timezone -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_eede6.dir/CheckFunctionExists.c.o -o cmTC_eede6 /usr/bin/ld: CMakeFiles/cmTC_eede6.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_get_timezone' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_eede6.dir/build.make:99: cmTC_eede6] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_eede6/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _gmtime64_s exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_fb4c1/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_fb4c1.dir/build.make CMakeFiles/cmTC_fb4c1.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_fb4c1.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_gmtime64_s -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_fb4c1.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_fb4c1 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_fb4c1.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_gmtime64_s -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_fb4c1.dir/CheckFunctionExists.c.o -o cmTC_fb4c1 /usr/bin/ld: CMakeFiles/cmTC_fb4c1.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_gmtime64_s' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_fb4c1.dir/build.make:99: cmTC_fb4c1] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_fb4c1/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _localtime64_s exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e957d/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_e957d.dir/build.make CMakeFiles/cmTC_e957d.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e957d.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_localtime64_s -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_e957d.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_e957d /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_e957d.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_localtime64_s -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_e957d.dir/CheckFunctionExists.c.o -o cmTC_e957d /usr/bin/ld: CMakeFiles/cmTC_e957d.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_localtime64_s' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_e957d.dir/build.make:99: cmTC_e957d] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_e957d/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function _mkgmtime64 exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_4fd35/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_4fd35.dir/build.make CMakeFiles/cmTC_4fd35.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_4fd35.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_mkgmtime64 -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_4fd35.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_4fd35 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_4fd35.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=_mkgmtime64 -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_4fd35.dir/CheckFunctionExists.c.o -o cmTC_4fd35 /usr/bin/ld: CMakeFiles/cmTC_4fd35.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `_mkgmtime64' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_4fd35.dir/build.make:99: cmTC_4fd35] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_4fd35/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Determining if the function cygwin_conv_path exists failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_3ca87/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_3ca87.dir/build.make CMakeFiles/cmTC_3ca87.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_3ca87.dir/CheckFunctionExists.c.o /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=cygwin_conv_path -fno-builtin -std=gnu11 -o CMakeFiles/cmTC_3ca87.dir/CheckFunctionExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/Modules/CheckFunctionExists.c Linking C executable cmTC_3ca87 /tmp/instance-18/output-1/build/host-cmake-3.22.3/Bootstrap.cmk/cmake -E cmake_link_script CMakeFiles/cmTC_3ca87.dir/link.txt --verbose=1 /usr/bin/gcc -O2 -w -DCHECK_FUNCTION_EXISTS=cygwin_conv_path -fno-builtin -L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib CMakeFiles/cmTC_3ca87.dir/CheckFunctionExists.c.o -o cmTC_3ca87 /usr/bin/ld: CMakeFiles/cmTC_3ca87.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `cygwin_conv_path' collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cmTC_3ca87.dir/build.make:99: cmTC_3ca87] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_3ca87/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Performing C SOURCE FILE Test HAVE_STRUCT_VFSCONF failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_d97f2/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_d97f2.dir/build.make CMakeFiles/cmTC_d97f2.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_d97f2.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_VFSCONF -O2 -w -std=gnu11 -o CMakeFiles/cmTC_d97f2.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:3:33: error: storage size of 'v' isn't known 3 | int main(void) { struct vfsconf v; return sizeof(v);} | ^ gmake[2]: *** [CMakeFiles/cmTC_d97f2.dir/build.make:78: CMakeFiles/cmTC_d97f2.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_d97f2/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main(void) { struct vfsconf v; return sizeof(v);} Performing C SOURCE FILE Test HAVE_STRUCT_XVFSCONF failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_919ce/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_919ce.dir/build.make CMakeFiles/cmTC_919ce.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_919ce.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_XVFSCONF -O2 -w -std=gnu11 -o CMakeFiles/cmTC_919ce.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:3:34: error: storage size of 'v' isn't known 3 | int main(void) { struct xvfsconf v; return sizeof(v);} | ^ gmake[2]: *** [CMakeFiles/cmTC_919ce.dir/build.make:78: CMakeFiles/cmTC_919ce.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_919ce/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main(void) { struct xvfsconf v; return sizeof(v);} Performing C SOURCE FILE Test MAJOR_IN_MKDEV failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_ec6c9/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_ec6c9.dir/build.make CMakeFiles/cmTC_ec6c9.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ec6c9.dir/src.c.o /usr/bin/gcc -DMAJOR_IN_MKDEV -O2 -w -std=gnu11 -o CMakeFiles/cmTC_ec6c9.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:1:10: fatal error: sys/mkdev.h: No such file or directory 1 | #include | ^~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [CMakeFiles/cmTC_ec6c9.dir/build.make:78: CMakeFiles/cmTC_ec6c9.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_ec6c9/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include int main() { return major(256); } Determining if the EFTYPE exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e6306/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_e6306.dir/build.make CMakeFiles/cmTC_e6306.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e6306.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_e6306.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'EFTYPE' undeclared (first use in this function) 8 | return ((int*)(&EFTYPE))[argc]; | ^~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_e6306.dir/build.make:78: CMakeFiles/cmTC_e6306.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_e6306/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef EFTYPE return ((int*)(&EFTYPE))[argc]; #else (void)argc; return 0; #endif } Determining if the D_MD_ORDER exist failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_77598/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_77598.dir/build.make CMakeFiles/cmTC_77598.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_77598.dir/CheckSymbolExists.c.o /usr/bin/gcc -O2 -w -std=gnu11 -o CMakeFiles/cmTC_77598.dir/CheckSymbolExists.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'D_MD_ORDER' undeclared (first use in this function) 8 | return ((int*)(&D_MD_ORDER))[argc]; | ^~~~~~~~~~ /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in gmake[2]: *** [CMakeFiles/cmTC_77598.dir/build.make:78: CMakeFiles/cmTC_77598.dir/CheckSymbolExists.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_77598/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' File /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef D_MD_ORDER return ((int*)(&D_MD_ORDER))[argc]; #else (void)argc; return 0; #endif } Performing C SOURCE FILE Test HAVE_STRUCT_TM___TM_GMTOFF failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_241d4/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_241d4.dir/build.make CMakeFiles/cmTC_241d4.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_241d4.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_TM___TM_GMTOFF -O2 -w -std=gnu11 -o CMakeFiles/cmTC_241d4.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:6:34: error: 'struct tm' has no member named '__tm_gmtoff'; did you mean 'tm_gmtoff'? 6 | (void)sizeof(((struct tm *)0)->__tm_gmtoff); | ^~~~~~~~~~~ | tm_gmtoff gmake[2]: *** [CMakeFiles/cmTC_241d4.dir/build.make:78: CMakeFiles/cmTC_241d4.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_241d4/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include int main() { (void)sizeof(((struct tm *)0)->__tm_gmtoff); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STATFS_F_NAMEMAX failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2889f/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2889f.dir/build.make CMakeFiles/cmTC_2889f.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2889f.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STATFS_F_NAMEMAX -O2 -w -std=gnu11 -o CMakeFiles/cmTC_2889f.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:36: error: invalid use of undefined type 'struct statfs' 7 | (void)sizeof(((struct statfs *)0)->f_namemax); | ^~ gmake[2]: *** [CMakeFiles/cmTC_2889f.dir/build.make:78: CMakeFiles/cmTC_2889f.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2889f/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct statfs *)0)->f_namemax); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_BIRTHTIME failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_f8e34/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_f8e34.dir/build.make CMakeFiles/cmTC_f8e34.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_f8e34.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_BIRTHTIME -O2 -w -std=gnu11 -o CMakeFiles/cmTC_f8e34.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:34: error: 'struct stat' has no member named 'st_birthtime' 7 | (void)sizeof(((struct stat *)0)->st_birthtime); | ^~ gmake[2]: *** [CMakeFiles/cmTC_f8e34.dir/build.make:78: CMakeFiles/cmTC_f8e34.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_f8e34/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_birthtime); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_52a2a/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_52a2a.dir/build.make CMakeFiles/cmTC_52a2a.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_52a2a.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC -O2 -w -std=gnu11 -o CMakeFiles/cmTC_52a2a.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:34: error: 'struct stat' has no member named 'st_birthtimespec' 7 | (void)sizeof(((struct stat *)0)->st_birthtimespec.tv_nsec); | ^~ gmake[2]: *** [CMakeFiles/cmTC_52a2a.dir/build.make:78: CMakeFiles/cmTC_52a2a.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_52a2a/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_birthtimespec.tv_nsec); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_63720/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_63720.dir/build.make CMakeFiles/cmTC_63720.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_63720.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC -O2 -w -std=gnu11 -o CMakeFiles/cmTC_63720.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:34: error: 'struct stat' has no member named 'st_mtimespec' 7 | (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec); | ^~ gmake[2]: *** [CMakeFiles/cmTC_63720.dir/build.make:78: CMakeFiles/cmTC_63720.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_63720/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_MTIME_N failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_18d3b/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_18d3b.dir/build.make CMakeFiles/cmTC_18d3b.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_18d3b.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_MTIME_N -O2 -w -std=gnu11 -o CMakeFiles/cmTC_18d3b.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:36: error: 'struct stat' has no member named 'st_mtime_n'; did you mean 'st_mtim'? 7 | (void)sizeof(((struct stat *)0)->st_mtime_n); | ^~~~~~~~~~ | st_mtim gmake[2]: *** [CMakeFiles/cmTC_18d3b.dir/build.make:78: CMakeFiles/cmTC_18d3b.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_18d3b/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_mtime_n); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_UMTIME failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_7cbcb/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_7cbcb.dir/build.make CMakeFiles/cmTC_7cbcb.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7cbcb.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_UMTIME -O2 -w -std=gnu11 -o CMakeFiles/cmTC_7cbcb.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:36: error: 'struct stat' has no member named 'st_umtime'; did you mean 'st_mtim'? 7 | (void)sizeof(((struct stat *)0)->st_umtime); | ^~~~~~~~~ | st_mtim gmake[2]: *** [CMakeFiles/cmTC_7cbcb.dir/build.make:78: CMakeFiles/cmTC_7cbcb.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_7cbcb/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_umtime); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_MTIME_USEC failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_7a495/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_7a495.dir/build.make CMakeFiles/cmTC_7a495.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7a495.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_MTIME_USEC -O2 -w -std=gnu11 -o CMakeFiles/cmTC_7a495.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:34: error: 'struct stat' has no member named 'st_mtime_usec' 7 | (void)sizeof(((struct stat *)0)->st_mtime_usec); | ^~ gmake[2]: *** [CMakeFiles/cmTC_7a495.dir/build.make:78: CMakeFiles/cmTC_7a495.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_7a495/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_mtime_usec); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_FLAGS failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_2d6f0/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_2d6f0.dir/build.make CMakeFiles/cmTC_2d6f0.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2d6f0.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STAT_ST_FLAGS -O2 -w -std=gnu11 -o CMakeFiles/cmTC_2d6f0.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:34: error: 'struct stat' has no member named 'st_flags' 7 | (void)sizeof(((struct stat *)0)->st_flags); | ^~ gmake[2]: *** [CMakeFiles/cmTC_2d6f0.dir/build.make:78: CMakeFiles/cmTC_2d6f0.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_2d6f0/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct stat *)0)->st_flags); return 0; } Performing C SOURCE FILE Test HAVE_STRUCT_STATVFS_F_IOSIZE failed with the following output: Change Dir: /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_4d69b/fast && gmake[1]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake -f CMakeFiles/cmTC_4d69b.dir/build.make CMakeFiles/cmTC_4d69b.dir/build gmake[2]: Entering directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_4d69b.dir/src.c.o /usr/bin/gcc -DHAVE_STRUCT_STATVFS_F_IOSIZE -O2 -w -std=gnu11 -o CMakeFiles/cmTC_4d69b.dir/src.c.o -c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c: In function 'main': /tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp/src.c:7:39: error: 'struct statvfs' has no member named 'f_iosize'; did you mean 'f_bsize'? 7 | (void)sizeof(((struct statvfs *)0)->f_iosize); | ^~~~~~~~ | f_bsize gmake[2]: *** [CMakeFiles/cmTC_4d69b.dir/build.make:78: CMakeFiles/cmTC_4d69b.dir/src.c.o] Error 1 gmake[2]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' gmake[1]: *** [Makefile:127: cmTC_4d69b/fast] Error 2 gmake[1]: Leaving directory '/tmp/instance-18/output-1/build/host-cmake-3.22.3/CMakeFiles/CMakeTmp' Source file was: #include #include int main() { (void)sizeof(((struct statvfs *)0)->f_iosize); return 0; } Looking for a Fortran compiler failed with the following output: -- The Fortran compiler identification is unknown CMake Error at CMakeLists.txt:2 (project): No CMAKE_Fortran_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "FC" or the CMake cache entry CMAKE_Fortran_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH. -- Configuring incomplete, errors occurred! See also "/tmp/instance-18/output-1/build/host-cmake-3.22.3/Tests/CMakeFiles/CheckFortran/CMakeFiles/CMakeOutput.log". See also "/tmp/instance-18/output-1/build/host-cmake-3.22.3/Tests/CMakeFiles/CheckFortran/CMakeFiles/CMakeError.log".