728x90
1. 문제
centos 에서 컴파일 시 아래와 같은 에러가 나온다면
centos cannot find -lstdc++
2. 원인
해당 라이브러리가 설치가 안되어 있어서 링킹 에러가 나타남
3. 조치
-m32 컴파일 시 i686
yum install libstdc++-devel.i686
yum -y install libstdc++.i686
yum -y intstall ncurses-devel.i686
-m64 컴파일 시 x86_64
yum -y intstall ncurses-devel.x86_64
yum -y install libstdc++-devel.x86_64
yum -y install libstdc++.x86_64
반응형
'Programming > C, C++' 카테고리의 다른 글
[Linux, C/C++] undefined reference to '__gxx_personality_v0' 오류 조치 (0) | 2020.04.09 |
---|---|
[C, Error] error: use of undeclared identifier '함수' (0) | 2020.04.09 |
[C++, Error] unresolved overloaded function type (0) | 2019.07.22 |
[Linux,C++] getenv.c: undefined reference secure_getenv (0) | 2019.03.29 |
[C/C++] 소켓에서 컴파일 에러 (invalid conversion from int* to socklen_t*) (0) | 2019.02.26 |