https://computing.llnl.gov/tutorials/pthreads/ 에서 웹에서 다음 데모를 선택했습니다.
#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
. 무슨 일이 일어나고 있는지 어떤 아이디어?
답변
지금까지이 질문에 대한 대답은 모두 틀립니다 .
Linux의 경우 올바른 명령은 다음과 같습니다.
gcc -pthread -o term term.c
일반적으로 라이브러리는 명령 행에서 소스 및 오브젝트를 따라야 -lpthread
하며 “옵션”이 아니며 라이브러리 스펙입니다. libpthread.a
설치된 시스템에서만
gcc -lpthread ...
연결되지 않습니다.
답변
일식으로
속성-> c / c ++ 빌드-> 설정-> GCC C ++ 링커-> 상단의 라이브러리에 “pthread”추가
답변
Linux 터미널에서 실행하면 다음 명령을 사용하여 컴파일했습니다 (컴파일하려는 c 파일을 test.c라고 함).
gcc -o test test.c -pthread
그것이 누군가를 돕기를 바랍니다!
답변
Linux의 경우 올바른 명령은 다음과 같습니다.
gcc -o term term.c -lpthread
- 컴파일 명령 바로 뒤에 -lpthread를 넣어야합니다.이 명령은 pthread.h 라이브러리로 프로그램을 실행하도록 컴파일러에 지시합니다.
- gcc -l은 라이브러리 파일과 연결합니다 .lib 접두사가없는 라이브러리 이름과 -l을 연결하십시오.
답변
다음 튜토리얼을 계속 읽으면 pthreads 코드에 사용되는 컴파일 명령의 몇 가지 예가 아래 표에 나열되어 있습니다.
답변
cmake를 사용하는 경우 다음을 사용할 수 있습니다.
add_compile_options(-pthread)
또는
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
답변
다음과 같이 컴파일하십시오 : gcc demo.c -o demo -pthread