g++ -lpthread -pthread
时间: 2023-09-12 16:04:09 浏览: 230
pthread的helloworld
这是一个编译C/C++程序时常见的参数。"-lpthread"和"-pthread"都是用来链接线程库的参数。在Linux系统中,多线程程序需要链接pthread库来进行编译。
"-lpthread"是用于链接静态链接库版本的pthread库,而"-pthread"是用于链接动态链接库版本的pthread库。
这两个参数可以根据具体的编译环境和需求来选择使用。
阅读全文