2014-02-12 17 views
1

POV-Ray 3.7 안정 버전을 설치하려고합니다. 소스 코드를 github repo에서 다운로드했습니다.POV-Ray 설치 : 구성 오류

README file에 설명 된 유닉스 시스템에 대한 지침을 따랐습니다.

불행히도 configure 명령을 실행하면 오류 메시지가 나타납니다.

./configure COMPILED_BY="your name <[email protected]>" 

첫 번째 오류는 부스트 라이브러리 1.37 이상을 찾을 수 없다고하여 라이브러리를 설치했습니다.

/usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_iostreams.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_python-py27.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_python-py33.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_system.so.1.53.0 
/usr/lib/x86_64-linux-gnu/libboost_thread.so.1.53.0 

을 그리고 난 다시 configure를 실행하려고 및 오류 메시지는 다음과 같이이다 :

sudo apt-get install libboost-all-dev 

지금은 아래를 찾을 수 있습니다.

... 
checking for boostlib >= 1.37... yes 
checking whether the Boost::Thread library is available... yes 
checking for exit in -lboost_thread... yes 
checking whether the boost thread library is usable... no 
configure: error: in `/usr/local/povray-3.7-stable': 
configure: error: cannot link with the boost thread library 
See `config.log' for more details 

그래서 추가 옵션 --with-boost-libdir=/usr/lib/x86_64-linux-gnu/을 넣었지만 성공하지 못했습니다.

내가 누락 된 내용을 누구에게 말해 줄 수 있습니까?

답변

1

찾았습니다.

configure 스크립트가 라이브러리 링크를 제대로 찾지 못했습니다. 같은 문제가있는 사람이있을 경우를 대비하여이 글을 쓰고 있습니다.

./configure COMPILED_BY="name <email>" LIBS="-lboost_system -lboost_thread" 

이렇게하면 내 문제가 해결되고 다른 해결책이 있습니다. [POV-Ray 뉴스 그룹]