povray 3.7 설치 하기
작성자 : 서진우 ( alang@clunix.com )
작성일 : 2010년 12월 1일
povray 3.7 설치를 위해서는 boost 버전이 1.37 이상이여야 한다. RHEL5 의 경우 1.33 으로 별도로 boost 라이브러리 설치를 해야 한다.
http://www.boost.org/ 사이트에서 boost 1.37 버전을 다운 받는다.
# cd boost_1_37_0
# ./configure –prefix=/usr/local/boost-1.37 –with-libraries=thread
# make
# make install
# vi /etc/ld.so.conf
——————————————————————
.
/usr/local/boost-1.37/lib
——————————————————————
# ldconfig
povray 3.7 소스 디렉토리로 이동한다.
# cd povray-3.7.0.beta.38
intel 컴파일러가 설치 되어 있다면 configure 전에 CC 와 CXX 환경 변수를 정의한다.
# export CC=<intel c path>/bin/icc
# export CXX<intel c++ path>/bin/icpc
# ./configure –prefix=/APP/HPC/povray-3.7 –with-x –with-libmkl=/APP/HPC/compiler/intel/mkl/lib/em64t –with-boost=/usr/local/boost-1.37 COMPILED_BY=”Jinwoo Seo <alang@clunix.com>”
# make && make install
povray 3.7에서 추가된 기능 중 대표적인 것은 rendering 시 SMP 기능을 제공한다는 것이다.