ChenZuodi 98a3024061 code
2025-05-24 19:30:25 +08:00

56 lines
2.6 KiB
Plaintext

Determining if the pthread_create exist failed with the following output:
Change Dir: /home/test/My/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c82d9/fast"
/usr/bin/make -f CMakeFiles/cmTC_c82d9.dir/build.make CMakeFiles/cmTC_c82d9.dir/build
make[1]: Entering directory '/home/test/My/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c82d9.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_c82d9.dir/CheckSymbolExists.c.o -c /home/test/My/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_c82d9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c82d9.dir/link.txt --verbose=1
/usr/bin/cc -rdynamic CMakeFiles/cmTC_c82d9.dir/CheckSymbolExists.c.o -o cmTC_c82d9
CMakeFiles/cmTC_c82d9.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_c82d9.dir/build.make:97: recipe for target 'cmTC_c82d9' failed
make[1]: *** [cmTC_c82d9] Error 1
make[1]: Leaving directory '/home/test/My/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_c82d9/fast' failed
make: *** [cmTC_c82d9/fast] Error 2
File /home/test/My/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/test/My/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_44779/fast"
/usr/bin/make -f CMakeFiles/cmTC_44779.dir/build.make CMakeFiles/cmTC_44779.dir/build
make[1]: Entering directory '/home/test/My/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_44779.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_44779.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_44779
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_44779.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_44779.dir/CheckFunctionExists.c.o -o cmTC_44779 -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_44779.dir/build.make:97: recipe for target 'cmTC_44779' failed
make[1]: *** [cmTC_44779] Error 1
make[1]: Leaving directory '/home/test/My/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_44779/fast' failed
make: *** [cmTC_44779/fast] Error 2