错误:
CMakeFiles/helloworld.dir/main.cpp.o:在函数‘thread_create()’中:
/home/shenying/code/helloworld/main.cpp:35:对‘pthread_create’未定义的引用/home/shenying/code/helloworld/main.cpp:39:对‘pthread_create’未定义的引用
CMakeFiles/helloworld.dir/main.cpp.o:在函数‘thread_wait()’中:
/home/shenying/code/helloworld/main.cpp:46:对‘pthread_join’未定义的引用
/home/shenying/code/helloworld/main.cpp:50:对‘pthread_join’未定义的引用
collect2: error: ld returned 1 exit status
CMakeFiles/helloworld.dir/build.make:94: recipe for target 'helloworld' failed
make[2]: *** [helloworld] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/helloworld.dir/all' failed
make[1]: *** [CMakeFiles/helloworld.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
百度一通,都提示:
原来时因为pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在使用pthread_create创建线程时,在编译中要加-lpthread参数:gcc createThread.c -lpthread -o createThread. 加上这个以后编译成功!
可是我们都是在编译器下编译程序的,好不容易找个修改编译器的,也找不到地方,直接在cmakelist中写入
target_link_libraries(project_name pthread)
即可通过。