This commit is contained in:
Ivan
2022-06-28 10:36:24 +03:00
commit e4c8529305
160 changed files with 59023 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_2610f/fast && /usr/bin/make -f CMakeFiles/cmTC_2610f.dir/build.make CMakeFiles/cmTC_2610f.dir/build
make[1]: Entering directory '/home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2610f.dir/src.c.o
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_2610f.dir/src.c.o -c /home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_2610f
/home/ivan/ivan/programs/clion-2021.1.2/bin/cmake/linux/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2610f.dir/link.txt --verbose=1
/usr/bin/cc -rdynamic CMakeFiles/cmTC_2610f.dir/src.c.o -o cmTC_2610f
/usr/bin/ld: CMakeFiles/cmTC_2610f.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+0x5e): undefined reference to `pthread_cancel'
/usr/bin/ld: src.c:(.text+0x6f): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_2610f.dir/build.make:99: cmTC_2610f] Error 1
make[1]: Leaving directory '/home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_2610f/fast] Error 2
Source file was:
#include <pthread.h>
static void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_cancel(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_ef6ea/fast && /usr/bin/make -f CMakeFiles/cmTC_ef6ea.dir/build.make CMakeFiles/cmTC_ef6ea.dir/build
make[1]: Entering directory '/home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ef6ea.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_ef6ea.dir/CheckFunctionExists.c.o -c /home/ivan/ivan/programs/clion-2021.1.2/bin/cmake/linux/share/cmake-3.20/Modules/CheckFunctionExists.c
Linking C executable cmTC_ef6ea
/home/ivan/ivan/programs/clion-2021.1.2/bin/cmake/linux/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef6ea.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_ef6ea.dir/CheckFunctionExists.c.o -o cmTC_ef6ea -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_ef6ea.dir/build.make:99: cmTC_ef6ea] Error 1
make[1]: Leaving directory '/home/ivan/ivan/git/work_drivecast2/SLAM/dso/cmake-build-debug/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_ef6ea/fast] Error 2