编译C语言多线程程序的时候,如果出现 undefined reference to 'pthread_create' 错误
在编译中要加 -lpthread参数 g++ thread.c -o thread -lpthread
或
gcc thread.c -o thread -lpthread
特此备忘