320x100
/usr/bin/ld: cannot find -lm
/usr/bin/ld: cannot find -lc
collect2: error: ld returned 1 exit status
컴파일 할때 위와 같이 에러가 발생을 한다면
# yum install glibc-static libstdc++-static -y
설치 하면 된다. 이렇게 설치 했는대도 동일한 에러가 발생 된다면
컴파일 환경이 32bit 로 만들어 진것이다.
32bit 패키지 설치 해주면 된다.
# yum install glibc-static.i686 libstdc++-static.i686 -y
320x100
'Linux' 카테고리의 다른 글
jenkins install centos 8 (0) | 2022.03.14 |
---|---|
fatal error gnu/stubs-32.h no such file or directory (0) | 2022.03.12 |
centos software raid setting (0) | 2022.03.04 |
centos 9 stream repository, epel repository (0) | 2022.02.14 |
프로세스 체크 후 구동 스크립트 (0) | 2022.01.10 |