반응형
컴파일 설치 시
configure: error: no acceptable C compiler found in $PATH
이런 에러가 뜨게되면
# rpm -qa | grep gcc 로 gcc컴파일러가 설치되어있는지 확인.
libgcc만 잡힌다면 yum으로 gcc를 설치한다.
# yum install gcc 로 설치하면 된다.
configure: error: No curses/termcap library found
이런 에러가 뜨게되면
yum -y install libtermcap-devel ncurses-devel
로 라이브러리를 설치
make하면서
exec: g++: not found
*** [my_new.o] Error 127
이런 에러가 뜨면
yum install gcc-c++
로 gcc c++ 설치 후 다시 바로
make 하면
redeclaration of C++ built-in type ‘bool’
이 에러가 뜬다
make clean
하고 다시 컴파일 하면 성공..
'Programing' 카테고리의 다른 글
[iPhone]스토리보드 Push, Modal (2) | 2015.08.19 |
---|---|
[iPhone] UIAlertView 내부에 tableVew넣기 (0) | 2013.01.25 |
Spring 트랜잭션 (0) | 2012.10.16 |
[MYSQL] String int 형변환 (0) | 2012.08.27 |
[iPhone]네비게이션바 타이틀 색상변경 (0) | 2011.11.03 |