系统相关
首页 > 系统相关> > linux-使用-lpthread标志时对`pthread_init’的未定义引用:

linux-使用-lpthread标志时对`pthread_init’的未定义引用:

作者:互联网

我正在使用以下代码进行编译:

gcc -o outfile infile.c -lpthread

并且唯一未定义的引用是pthread_init.

根据网上的一些建议,我尝试使用-pthread代替-lpthread.

我包括< pthread.h>

有任何想法吗?

解决方法:

不要调用pthread_init().在Linux上没有必要.

标签:gcc,pthreads,linux
来源: https://codeday.me/bug/20191101/1983622.html