[Industry News] glibc 2.34 removed libpthread
Tofloor
poster avatar
绍贝格尔
deepin
2023-04-28 20:04
Author

GNU发布了glibc库新版本glibc-2.34,这次版本更新带来了一些新特性,比如将libpthread、libdl等一些函数集成到了主库,添加了对64位time_t的支持等

#include
#include

int
main()
{
std::thread thr{[]() {
std::cout << "Hello, world!\n";
}};
thr.join();
}

原来

g++ -o hello hello.cpp -lpthread

现在

g++ -o hello hello.cpp

Reply Favorite View the author
All Replies

No replies yet