Building ParaView: Difference between revisions

From VrlWiki
Jump to navigation Jump to search
Line 23: Line 23:
# make
# make
# make install
# make install
#* If you get an error, try sudo make install
#* If you get an error, try the following:
#** sudo make install

Revision as of 23:48, 23 July 2013

Currently, this has only been tested and shown to work on the CCV test curved wall at 94 Waterman.

Setting Up and Checking Everything Out

  1. cd $G
  2. git clone git://paraview.org/ParaView.git ParaView
  3. cd $G/ParaView
  4. git checkout -b trunk origin/master
  5. git submodule init
  6. git submodule update
  7. mkdir $G/ParaView-bin

Building ParaView

  1. cd $G/ParaView-bin
  2. ccmake -D MPIEXEC=/usr/lib64/openmpi/bin/mpiexec -D QT_QMAKE_EXECUTABLE=/usr/lib64/qt48/bin/qmake $G/ParaView
    • in the configuration, set MPI_C_INCLUDE_PATH to /usr/include/openmpi-x86_64
    • configure and then generate
  3. make
  4. make install
    • If you get an error, try the following:
      • sudo make install