编译带有thread的程序人,如果忘记-lpthread,那么就会报错
很简单添加-lpthread就行了
在高版本的glibc上,可能无需增加-lpthread
Why glibc 2.34 removed libpthread | Red Hat Developer
(1) 首先查看当前机器上面的glibc的版本
strings /lib/x86_64-linux-gnu/libc.so.6 |grep GLIBC_
(2)在/etc/apt/sources.list中增加源
deb http://mirrors.aliyun.com/ubuntu/ jammy main
(3)安装
sudo apt update
sudo apt install libc6
?(4)查看glibc版本
(5)再次编译:成功