프린트 하기

OS환경 : Oracle Linux 7.6 (64bit)


DB 환경 : Postgresql 12 + PostGIS 3.0


에러 : configure: error: *** A compiler with support for C++11 language features is required.

geos-3.7.3 의 tar.bzip2 을 압축 푼 뒤 

해당 폴더로 가서

1
# ./configure --prefix=$LOCALDESTDIR && make && make install

명령 실행 시 마지막에 

1
configure: error: *** A compiler with support for C++11 language features is required.

에러 발생



해결 방법 : gcc 와 gcc-c++을 설치한다

1
2
# yum install gcc -y
# yum install gcc-c++ -y



원인 : c++ 패키지가 설치되어 있지 않아서 발생한 문제




참조 : https://trac.osgeo.org/gdal/ticket/7066