Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- mariaDB
- 기초
- 그랑사가
- Subscribe
- 프로그래밍
- 반복문
- JungOl
- install opencv-4.4.0 on ubuntu 22.04
- mysql
- 등차수열
- C++
- 오늘도 우라라
- LeetCode
- MSG
- 오늘도 우라라 펫
- ros
- ubuntu
- topic
- 리눅스
- 데이터 베이스
- while
- 마리아 DB
- C언어
- 우분투
- publish
- 오늘도 우라라 펫 공략
- Linux
- 환경설정
- 오늘도 우라라 공략
- 토픽
Archives
- Today
- Total
하루의 쉼터
[LinkError] gcc 이용하여 pthread 컴파일 본문
반응형
| undefined reference to 'pthread_'
테스트를 위하여 간단하게 pthread를 이용한 코드 작성하고 gcc를 통한 컴파일을 진행할 경우
실수로 인해 gcc 컴파일 스크립트에 라이브러리를 알려주지 않는 경우가 생길 수 있는데
이러한 경우 아래와 같이 에러가 발생한다.
링크 옵션은 "-lpthread", "-pthread"를 통하여 입력해준다면 손쉽게 해결 될 수 있다.
gcc "파일명" -o "출력 파일명" -lpthred OR -pthread
반응형
'프로그래밍 > C++' 카테고리의 다른 글
[BasicGrammar] Inline Function (0) | 2023.04.18 |
---|---|
[BasicGrammar] FunctionPointer(함수포인터) - with. c++ (0) | 2023.04.16 |
[Error] error: no matching function for call to ‘std::basic_ifstream<char>::open(std::__cxx11::string&)’ (0) | 2022.01.19 |
[Error] terminate called after throwing an instance of 'std::logic_error' (0) | 2021.08.10 |
[make] make: nothing to be done for 'all' 오류 (0) | 2020.09.09 |
Comments