관리 메뉴

웹개발자의 기지개

[linux] configure: error: no acceptable C compiler found in $PATHSee `config.log' for more details 에러날때 본문

리눅스서버

[linux] configure: error: no acceptable C compiler found in $PATHSee `config.log' for more details 에러날때

http://portfolio.wonpaper.net 2023. 6. 12. 10:38
[root@localhost sqlite-autoconf-3360000]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/usr/local/src/sqlite-autoconf-3360000':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details

 

상기 내용과 같이 gcc, cc , cl 등등의 안 깔려있다는 메세지이다.

 

yum install gcc glibc glibc-common gd gd-devel

 

참고 : https://sojinhwan0207.tistory.com/90

 

Comments