liunx 下多线程编译时出现对‘pthread_create’未定义的引用

错误:

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)

即可通过。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值