Determining if the pthread_setname_np exist failed with the following output: Change Dir: /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make -f Makefile cmTC_a6686/fast && make[1]: Entering directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' /usr/bin/make -f CMakeFiles/cmTC_a6686.dir/build.make CMakeFiles/cmTC_a6686.dir/build make[2]: Entering directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_a6686.dir/CheckSymbolExists.c.o /home/thomas/autobuild/instance-2/output-1/host/bin/mips-linux-gnu-gcc --sysroot=/home/thomas/autobuild/instance-2/output-1/host/mips64-buildroot-linux-gnu/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -D_FORTIFY_SOURCE=2 -DNDEBUG -fPIE -o CMakeFiles/cmTC_a6686.dir/CheckSymbolExists.c.o -c /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/CheckSymbolExists.c /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function 'main': /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: 'pthread_setname_np' undeclared (first use in this function) return ((int*)(&pthread_setname_np))[argc]; ^ /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in make[2]: *** [CMakeFiles/cmTC_a6686.dir/build.make:78: CMakeFiles/cmTC_a6686.dir/CheckSymbolExists.c.o] Error 1 make[2]: Leaving directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' make[1]: *** [Makefile:127: cmTC_a6686/fast] Error 2 make[1]: Leaving directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' File /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef pthread_setname_np return ((int*)(&pthread_setname_np))[argc]; #else (void)argc; return 0; #endif } Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make -f Makefile cmTC_90bc2/fast && make[1]: Entering directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' /usr/bin/make -f CMakeFiles/cmTC_90bc2.dir/build.make CMakeFiles/cmTC_90bc2.dir/build make[2]: Entering directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_90bc2.dir/src.c.o /home/thomas/autobuild/instance-2/output-1/host/bin/mips-linux-gnu-gcc --sysroot=/home/thomas/autobuild/instance-2/output-1/host/mips64-buildroot-linux-gnu/sysroot -DCMAKE_HAVE_LIBC_PTHREAD -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -D_FORTIFY_SOURCE=2 -DNDEBUG -fPIE -o CMakeFiles/cmTC_90bc2.dir/src.c.o -c /home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_90bc2 /home/thomas/autobuild/instance-2/output-1/host/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90bc2.dir/link.txt --verbose=1 /home/thomas/autobuild/instance-2/output-1/host/bin/mips-linux-gnu-gcc --sysroot=/home/thomas/autobuild/instance-2/output-1/host/mips64-buildroot-linux-gnu/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -D_FORTIFY_SOURCE=2 -DNDEBUG -latomic CMakeFiles/cmTC_90bc2.dir/src.c.o -o cmTC_90bc2 /home/thomas/autobuild/instance-2/output-1/host/opt/ext-toolchain/bin/../lib/gcc/mips-linux-gnu/5.3.0/../../../../mips-linux-gnu/bin/ld: CMakeFiles/cmTC_90bc2.dir/src.c.o: undefined reference to symbol 'pthread_detach@@GLIBC_2.0' /home/thomas/autobuild/instance-2/output-1/host/mips64-buildroot-linux-gnu/sysroot/lib64/libpthread.so.0: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status make[2]: *** [CMakeFiles/cmTC_90bc2.dir/build.make:99: cmTC_90bc2] Error 1 make[2]: Leaving directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/CMakeFiles/CMakeTmp' make[1]: *** [Makefile:127: cmTC_90bc2/fast] Error 2 make[1]: Leaving directory '/home/thomas/autobuild/instance-2/output-1/build/grpc-1.48.0/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; }