thread.c:(.text+0xd8): undefined reference to `pthread_join' 问题

/tmp/ccOMMpWh.o: In function `main':
thread.c:(.text+0x58): undefined reference to `pthread_create'
thread.c:(.text+0xd8): undefined reference to `pthread_join'
/tmp/ccOMMpWh.o: In function `thrd_func':
thread.c:(.text+0x24c): undefined reference to `pthread_exit'
collect2: ld returned 1 exit status

今天写一个多线程的例子编译的时候遇到这个问题
执行

arm-none-linux-gnueabi-gcc -o pthread pthread.c  -static  

头文件也包含了就是编译不过
网上查找了资料发现pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a。

所以在使用pthread_create() pthread_join() 进行操作的时候,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。

问题解决如下:
在编译中要加 -lpthread参数

arm-none-linux-gnueabi-gcc -o pthread pthread.c  -static  -lpthread

你可能感兴趣的:(Linux系统编程)