Difference between revisions of "User:Le Forgeron/vault/Ubuntu Gcc"
< User:Le Forgeron | vault
Jump to navigation
Jump to search
Le Forgeron (talk | contribs) (Created page with "From a fresh install of Ubuntu (11.10, Oneiric Oslo) # Install (with all dependencies): #* g++ #* libboost-all-dev #* libpng12-dev #* libjpeg62-dev #* libtiff4-dev #* libopen...") |
Le Forgeron (talk | contribs) |
||
Line 8: | Line 8: | ||
#* libtiff4-dev | #* libtiff4-dev | ||
#* libopenexr-dev | #* libopenexr-dev | ||
+ | #* libsdl1.2-dev | ||
# Get the sources (wget http://www.povray.org/redirect/www.povray.org/beta/source/povray-3.7.0.RC4.tar.gz ) | # Get the sources (wget http://www.povray.org/redirect/www.povray.org/beta/source/povray-3.7.0.RC4.tar.gz ) | ||
# Extract them (tar -xzf povray-3.7.0.RC4.tar.gz ) | # Extract them (tar -xzf povray-3.7.0.RC4.tar.gz ) |
Revision as of 19:09, 21 February 2012
From a fresh install of Ubuntu (11.10, Oneiric Oslo)
- Install (with all dependencies):
- g++
- libboost-all-dev
- libpng12-dev
- libjpeg62-dev
- libtiff4-dev
- libopenexr-dev
- libsdl1.2-dev
- Get the sources (wget http://www.povray.org/redirect/www.povray.org/beta/source/povray-3.7.0.RC4.tar.gz )
- Extract them (tar -xzf povray-3.7.0.RC4.tar.gz )
- Enter directory (cd povray-3.7.0.RC4 )
- Configure ( ./configure COMPILED_BY="[email protected]" --disable-io-restrictions )
- Build (make -j 12 )
- Check (make check )
- Install (sudo make install )