使用eclipse開發openwrt使用多線程,報undefined reference to ‘pthread_create’"問題解決

pthread 庫不是 Linux 系統默認的庫,連接時需要使用靜態庫 libpthread.a,所以在使用pthread_create()創建線程,以及調用 pthread_atfork()函數建立fork處理程序時,需要鏈接該庫。 源文件,不要忘了加上頭文件#include<pthread.h> 在編譯中要加 -lpthread參數 #gcc test.c -o thread -lpthrea
相關文章
相關標籤/搜索