關於pthread_create未定義的引用的奇葩解決

1原本在代碼裏包含了pthread.h  第一次編譯:gcc -o create create.c  提示錯誤 未定義的引用linux

2後來知道linux標準庫沒有pthread.h 要連接之-lpthread  第二次編譯:gcc -o create -lpthread create.c  仍然提示錯誤 未定義的引用!編譯

3再後來。。。。。發現,-lpthread應該寫在末尾  第三次編譯:gcc -o create create.c -lpthread 編譯成功。。。。。thread

相關文章
相關標籤/搜索