You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.7 KiB
59 lines
2.7 KiB
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
|
|
Change Dir: /home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp
|
|
|
|
Run Build Command(s):/usr/bin/make cmTC_23d1d/fast && /usr/bin/make -f CMakeFiles/cmTC_23d1d.dir/build.make CMakeFiles/cmTC_23d1d.dir/build
|
|
make[1]: Entering directory '/home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp'
|
|
Building C object CMakeFiles/cmTC_23d1d.dir/src.c.o
|
|
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_23d1d.dir/src.c.o -c /home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp/src.c
|
|
Linking C executable cmTC_23d1d
|
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23d1d.dir/link.txt --verbose=1
|
|
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_23d1d.dir/src.c.o -o cmTC_23d1d
|
|
/usr/bin/ld: CMakeFiles/cmTC_23d1d.dir/src.c.o: in function `main':
|
|
src.c:(.text+0x46): undefined reference to `pthread_create'
|
|
/usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
|
|
/usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
|
|
collect2: error: ld returned 1 exit status
|
|
make[1]: *** [CMakeFiles/cmTC_23d1d.dir/build.make:87: cmTC_23d1d] Error 1
|
|
make[1]: Leaving directory '/home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp'
|
|
make: *** [Makefile:121: cmTC_23d1d/fast] Error 2
|
|
|
|
|
|
Source file was:
|
|
#include <pthread.h>
|
|
|
|
void* test_func(void* data)
|
|
{
|
|
return data;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
pthread_t thread;
|
|
pthread_create(&thread, NULL, test_func, NULL);
|
|
pthread_detach(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: /home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp
|
|
|
|
Run Build Command(s):/usr/bin/make cmTC_97e3f/fast && /usr/bin/make -f CMakeFiles/cmTC_97e3f.dir/build.make CMakeFiles/cmTC_97e3f.dir/build
|
|
make[1]: Entering directory '/home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp'
|
|
Building C object CMakeFiles/cmTC_97e3f.dir/CheckFunctionExists.c.o
|
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_97e3f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
|
Linking C executable cmTC_97e3f
|
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_97e3f.dir/link.txt --verbose=1
|
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_97e3f.dir/CheckFunctionExists.c.o -o cmTC_97e3f -lpthreads
|
|
/usr/bin/ld: cannot find -lpthreads
|
|
collect2: error: ld returned 1 exit status
|
|
make[1]: *** [CMakeFiles/cmTC_97e3f.dir/build.make:87: cmTC_97e3f] Error 1
|
|
make[1]: Leaving directory '/home/jackyma/Codes/C++/MinimalCC/CMakeFiles/CMakeTmp'
|
|
make: *** [Makefile:121: cmTC_97e3f/fast] Error 2
|
|
|
|
|
|
|