在Linux中對pthread_create的未定義引用

我從https://computing.llnl.gov/tutorials/pthreads/在網絡上獲取瞭如下演示 ubuntu

#include <pthread.h>
#include <stdio.h>
#define NUM_THREADS     5

void *PrintHello(void *threadid)
{
   long tid;
   tid = (long)threadid;
   printf("Hello World! It's me, thread #%ld!\n", tid);
   pthread_exit(NULL);
}

int main (int argc, char *argv[])
{
   pthread_t threads[NUM_THREADS];
   int rc;
   long t;
   for(t=0; t<NUM_THREADS; t++){
      printf("In main: creating thread %ld\n", t);
      rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
      if (rc){
         printf("ERROR; return code from pthread_create() is %d\n", rc);
         exit(-1);
      }
   }
   pthread_exit(NULL);
}

可是,當我在運行Ubuntu Linux 9.04的計算機上對其進行編譯時,出現如下錯誤: 網絡

corey@ubuntu:~/demo$ gcc -o term term.c
term.c: In function ‘main’:
term.c:23: warning: incompatible implicit declaration of built-in function ‘exit’
/tmp/cc8BMzwx.o: In function `main':
term.c:(.text+0x82): undefined reference to `pthread_create'
collect2: ld returned 1 exit status

這對我來講沒有任何意義,由於標頭包含pthread.h ,應具備pthread_create函數。 任何想法出什麼事了嗎? 函數


#1樓

您只須要在proprieties => C / C ++ build => GCC C ++ Linker => Libraries =>頂部「 Libraries(-l)」中添加「 pthread」。 而已 ui


#2樓

日食 spa

屬性-> c / c ++ Build->設置-> GCC C ++連接器->頂部的庫中添加「 pthread」 命令行


#3樓

在Anjuta中,轉到「生成」菜單,而後「配置項目」。 在「配置選項」框中,添加: code

LDFLAGS='-lpthread'

但願它也能幫助別人... 對象


#4樓

到目前爲止,這個問題的兩個答案都是錯誤的
對於Linux,正確的命令是: ci

gcc -pthread -o term term.c

一般,庫應該在命令行中跟隨源和對象,而且-lpthread不是「選項」,它是庫規範。 在僅安裝libpthread.a系統上, get

gcc -lpthread ...

將沒法連接。


#5樓

有時,若是您使用多個庫,請檢查庫依賴性。 (例如,-lpthread -lSDL ... <==> ... -lSDL -lpthread)

相關文章
相關標籤/搜索