gcc 컴파일시 undefined reference to `pthread_create' 등.... 에러날때

2012. 4. 22. 16:18Computer/Linux


leesj@leesj-ubuntu:~$ cd gcc
leesj@leesj-ubuntu:~/gcc$ gcc ex.c -o ex
/tmp/ccGTpZCU.o: In function `main':
ex.c:(.text+0x58): undefined reference to `pthread_create'
ex.c:(.text+0x6c): undefined reference to `pthread_join'
collect2: ld returned 1 exit status
leesj@leesj-ubuntu:~/gcc$ gcc -lpthread ex.c -o ex
leesj@leesj-ubuntu:~/gcc$


gcc 컴파일시 -lpthread라는 명령을 추가해주면 에러가 발생하지 않는다.