Building ParaView
From ScorecWiki
(Difference between revisions)
Revision as of 01:23, 26 March 2006 Duprec (Talk | contribs) ← Previous diff |
Revision as of 18:49, 26 March 2006 Duprec (Talk | contribs) Next diff → |
||
Line 8: | Line 8: | ||
== Prerequisites == | == Prerequisites == | ||
* CMake, version 2.0.6 or newer | * CMake, version 2.0.6 or newer | ||
- | * CVS clien to get the sources | + | * CVS client to get the sources |
* C++ compiler such as g++ | * C++ compiler such as g++ | ||
* MPICH (or other MPI implementation) if parallel ParaView is desired | * MPICH (or other MPI implementation) if parallel ParaView is desired |
Revision as of 18:49, 26 March 2006
- This page is a stub. You can help us by editing it.
ParaView is a visualization software designed with the need of large data sets in mind. It is able to run on multiple computers using MPI to handle the largest data sets.
What follows is a tutorial to compile ParaView from sources on a Unix computer.
Prerequisites
- CMake, version 2.0.6 or newer
- CVS client to get the sources
- C++ compiler such as g++
- MPICH (or other MPI implementation) if parallel ParaView is desired
Getting the sources
We are interested in the very new phasta Reader developped by Kitware, which is (at least for the time being) only available in the development version of ParaView, which means that we need to get the sources from CVS.
$ cd /space $ cvs -d :pserver:anoncvs@www.paraview.org:/cvsroot/ParaView login Logging in to :pserver:anoncvs@www.paraview.org:2401/cvsroot/ParaView CVS password: <Press ENTER> $ cvs -d :pserver:anoncvs@www.paraview.org:/cvsroot/ParaView co ParaView output truncated
Compilation - Serial
The recommended way to build ParaView is out of source, meaning that cmake, make etc are not run in the ParaView directory, but in a separate, empty one. This makes it possible to build ParaView in serial in one object directory, and in parallel in a second object directory.