반응형
리눅스 콘솔에서 컴파일할때 pthread를 사용하였을때 이런 오류가 뜬다.
undefined reference to `pthread_create'
undefined reference to `pthread_join'
해결 방법은 옵션 2가지를 넣어주면 됩니다.
-D_REENTRANT -lpthread
ex) gcc test.c -o test -D_REENTRANT -lpthread
undefined reference to `pthread_create'
undefined reference to `pthread_join'
해결 방법은 옵션 2가지를 넣어주면 됩니다.
-D_REENTRANT -lpthread
ex) gcc test.c -o test -D_REENTRANT -lpthread
반응형
'Linux Server' 카테고리의 다른 글
VirtualBox Installation failed 해결방법 (0) | 2011.08.08 |
---|---|
mbstring 확장 모듈 설정 (0) | 2011.04.08 |
mysql 캐릭터셋 utf8로 설정 (0) | 2011.04.07 |
크로스 컴파일시 cannot find -lbluetooth 오류 (0) | 2010.11.25 |
BlueZ 를 사용할때 컴파일 방법 (0) | 2010.11.25 |