Skip to content

compile failure with clang6.0 llvm-6.0 #157

@zhiyuan1i

Description

@zhiyuan1i

my system is raspberry os (64 bit), I have read similar issues: #108 #150, but the issue still occurs.
here is my command:

sudo apt install clang-6.0 libllvm6.0 llvm-6.0-dev
cmake -DMULTI_THREADED=OFF .

here is CmakeError.txt:

Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_59bd7/fast && /usr/bin/make -f CMakeFiles/cmTC_59bd7.dir/build.make CMakeFiles/cmTC_59bd7.dir/build
make[1]: 进入目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
Building C object CMakeFiles/cmTC_59bd7.dir/src.c.o
/usr/bin/cc   -DCMAKE_HAVE_LIBC_PTHREAD   -o CMakeFiles/cmTC_59bd7.dir/src.c.o   -c /home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_59bd7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59bd7.dir/link.txt --verbose=1
/usr/bin/cc  -DCMAKE_HAVE_LIBC_PTHREAD    -rdynamic CMakeFiles/cmTC_59bd7.dir/src.c.o  -o cmTC_59bd7 
/usr/bin/ld: CMakeFiles/cmTC_59bd7.dir/src.c.o: in function `main':
src.c:(.text+0x34): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x3c): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x48): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_59bd7.dir/build.make:87:cmTC_59bd7] 错误 1
make[1]: 离开目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
make: *** [Makefile:121:cmTC_59bd7/fast] 错误 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/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_16556/fast && /usr/bin/make -f CMakeFiles/cmTC_16556.dir/build.make CMakeFiles/cmTC_16556.dir/build
make[1]: 进入目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
Building C object CMakeFiles/cmTC_16556.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_16556.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_16556
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_16556.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    -rdynamic CMakeFiles/cmTC_16556.dir/CheckFunctionExists.c.o  -o cmTC_16556  -lpthreads 
/usr/bin/ld: 找不到 -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_16556.dir/build.make:87:cmTC_16556] 错误 1
make[1]: 离开目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
make: *** [Makefile:121:cmTC_16556/fast] 错误 2



Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_68bb2/fast && /usr/bin/make -f CMakeFiles/cmTC_68bb2.dir/build.make CMakeFiles/cmTC_68bb2.dir/build
make[1]: 进入目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
Building C object CMakeFiles/cmTC_68bb2.dir/src.c.o
/usr/bin/cc   -DCMAKE_HAVE_LIBC_PTHREAD   -o CMakeFiles/cmTC_68bb2.dir/src.c.o   -c /home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_68bb2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_68bb2.dir/link.txt --verbose=1
/usr/bin/cc  -DCMAKE_HAVE_LIBC_PTHREAD    -rdynamic CMakeFiles/cmTC_68bb2.dir/src.c.o  -o cmTC_68bb2 
/usr/bin/ld: CMakeFiles/cmTC_68bb2.dir/src.c.o: in function `main':
src.c:(.text+0x34): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x3c): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x48): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_68bb2.dir/build.make:87:cmTC_68bb2] 错误 1
make[1]: 离开目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
make: *** [Makefile:121:cmTC_68bb2/fast] 错误 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/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_9b2e8/fast && /usr/bin/make -f CMakeFiles/cmTC_9b2e8.dir/build.make CMakeFiles/cmTC_9b2e8.dir/build
make[1]: 进入目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
Building C object CMakeFiles/cmTC_9b2e8.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_9b2e8.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_9b2e8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9b2e8.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    -rdynamic CMakeFiles/cmTC_9b2e8.dir/CheckFunctionExists.c.o  -o cmTC_9b2e8  -lpthreads 
/usr/bin/ld: 找不到 -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_9b2e8.dir/build.make:87:cmTC_9b2e8] 错误 1
make[1]: 离开目录“/home/pi/workspace/pi/VC4C/CMakeFiles/CMakeTmp”
make: *** [Makefile:121:cmTC_9b2e8/fast] 错误 2

How can I solve this? Wish some one can help me :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions