Difference between revisions of "User:Le Forgeron/vault/Ubuntu Gcc"

From POV-Wiki
Jump to navigation Jump to search
(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...")
 
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)

  1. Install (with all dependencies):
    • g++
    • libboost-all-dev
    • libpng12-dev
    • libjpeg62-dev
    • libtiff4-dev
    • libopenexr-dev
    • libsdl1.2-dev
  2. Get the sources (wget http://www.povray.org/redirect/www.povray.org/beta/source/povray-3.7.0.RC4.tar.gz )
  3. Extract them (tar -xzf povray-3.7.0.RC4.tar.gz )
  4. Enter directory (cd povray-3.7.0.RC4 )
  5. Configure ( ./configure COMPILED_BY="[email protected]" --disable-io-restrictions )
  6. Build (make -j 12 )
  7. Check (make check )
  8. Install (sudo make install )