tried building on ubuntu 20 and ROS 2 foxy, got out of memory error
This commit is contained in:
58
build/drone_sensors/CMakeFiles/CMakeError.log
Normal file
58
build/drone_sensors/CMakeFiles/CMakeError.log
Normal file
@@ -0,0 +1,58 @@
|
||||
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_380a0/fast && /usr/bin/make -f CMakeFiles/cmTC_380a0.dir/build.make CMakeFiles/cmTC_380a0.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_380a0.dir/src.c.o
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_380a0.dir/src.c.o -c /home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp/src.c
|
||||
Linking C executable cmTC_380a0
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_380a0.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_380a0.dir/src.c.o -o cmTC_380a0
|
||||
/usr/bin/ld: CMakeFiles/cmTC_380a0.dir/src.c.o: in function `main':
|
||||
src.c:(.text+0x48): undefined reference to `pthread_create'
|
||||
/usr/bin/ld: src.c:(.text+0x50): undefined reference to `pthread_detach'
|
||||
/usr/bin/ld: src.c:(.text+0x5c): undefined reference to `pthread_join'
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_380a0.dir/build.make:87: cmTC_380a0] Error 1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_380a0/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/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_93910/fast && /usr/bin/make -f CMakeFiles/cmTC_93910.dir/build.make CMakeFiles/cmTC_93910.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_93910.dir/CheckFunctionExists.c.o
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_93910.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
||||
Linking C executable cmTC_93910
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_93910.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_93910.dir/CheckFunctionExists.c.o -o cmTC_93910 -lpthreads
|
||||
/usr/bin/ld: cannot find -lpthreads
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_93910.dir/build.make:87: cmTC_93910] Error 1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/build/drone_sensors/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_93910/fast] Error 2
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user