C语言线程编译方法备忘

编译C语言多线程程序的时候,如果出现 undefined reference to 'pthread_create' 错误

在编译中要加 -lpthread参数
g++ thread.c -o thread -lpthread

gcc thread.c -o thread -lpthread

特此备忘

posted @ 2012-08-22 16:45  健哥的数据花园  阅读(399)  评论(0编辑  收藏  举报