반응형
특정 프로그램이나 유틸리티를 컴파일 설치하는 경우 다음과 같은 에러가 발생할 수 있습니다.
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
위 문구 그대로 gcc 나 c 컴파일러 등이 없기 때문에 발생하는 에러이기 때문에 해당하는 애들을 설치해주면 됩니다.
yum install gcc glibc glibc-common gd gd-devel
설치 이후 다시 configure 를 해보면 다음과 같이 잘 진행되는 것을 확인할 수 있습니다.
...
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
...
반응형
'Linux' 카테고리의 다른 글
configure 시 에러 모음 (0) | 2022.10.17 |
---|---|
[CentOS 7] php 7.x 설치 (0) | 2021.12.30 |
[HP] ssacli 명령어 (0) | 2021.05.03 |
SCP 명령어 (0) | 2021.04.14 |
CentOS 7 SNMP 설정 (0) | 2021.04.13 |