linux编译有线程的文件要加什么参数,Linux多线程实例,在编译中要加 -lpthread参数...
问题:undefinedreferenceto'pthread_create'undefinedreferenceto'pthread_join'问题原因:pthread库不是Linux系统默认的库,连接时需要使用静态库libpthread.a,所以在使用pthread_create()创建线程,以及调用pthread_atfork()函数建立fork处理程序时,需要链接该库。问题解决:在编译中要