ParaView-Superbuild, henceforth referred to as "superbuild", is a project to build ParaView and its dependencies. ParaView itself can be easily built using CMake as long as the required external dependencies are available on the build machine. However, ParaView's several external dependencies, e.g. Qt, CGNS, FFMPEG, etc. can be very tedious to build. Also, if you want to generate redistributable binaries, you need to take extra care when building and packaging these dependencies. To make our lives easier in supporting both these use-cases, the superbuild project was born.
Although primarily designed to build the official ParaView binaries, the superbuild has since been regularly used to build and install ParaView on various supercomputing systems.
To obtain the superbuild source locally, clone this repository using Git.
$ git clone --recursive https://gitlab.kitware.com/paraview/paraview-superbuild.git
The superbuild can be built with a Makefiles or Ninja CMake generator. The IDE generators (Xcode and Visual Studio) are not supported.
The superbuild tries to provide all of its own dependencies, but some tooling is assumed to be available on the host machine.
- Compiler toolchain
- GCC 4.9 or newer
- Xcode 10 or newer (older is probably supported, but untested)
- MSVC 2017 or newer
- ICC (minimum version unknown)
- Tools
pkg-config
is used on non-Windows platforms to find dependencies in some projectsninja
(ormake
) for building- Python (if not built by the superbuild) for building packages
- If building
mesa
orosmesa
,bison
andflex
are required. - If building packages on Linux,
chrpath
orpatchelf
is required to make relocatable packages
The superbuild project uses the same versioning scheme as ParaView,
and gets tagged for every release of ParaView. For example, to build
ParaView version 5.7.1, checkout the v5.7.0
tag of ParaView and
superbuild.
Currently available tags are shown here.
To checkout a specific tag from the superbuild git repository:
$ cd paraview-superbuild
$ git fetch origin # ensure you have the latest state from the main repo
$ git checkout v5.7.0 # replace `v5.7.0` with tag name of your choice
$ git submodule update
At this point, your superbuild has all of the rules that were used
when building the selected version of ParaView. Also, note that it's
possible to build a version of ParaView using a different superbuild
version. For example, you could use superbuild v5.7.0
, to build the
latest master (i.e., development) version of ParaView, or a custom
branch. This is done by first checking out the superbuild for the
appropriate version and then setting the CMake variables that affect
which ParaView source is to be used. There are several ways to
control how superbuild finds its source packages:
- If you want to use git to checkout ParaView source (default), then set
paraview_SOURCE_SELECTION
togit
, ensureparaview_GIT_REPOSITORY
is pointing to the ParaView git repository you want to clone (by default it is set to the offical ParaView repository) and then set theparaview_GIT_TAG
to be a specific tagname or branch available for the selected git repository. Usemaster
for latest development code,v5.7.0
for the 5.7.0 release,release
for latest stable release, or a specific ParaView commit SHA. In this setup, when building the superbuild, it will clone and checkout the appropriate revision from the ParaView git repository automatically. - Instead of letting superbuild do the cloning and updating of the ParaView
source, you can also manually check it out and keep it updated as needed.
To use this configuration, set
paraview_SOURCE_SELECTION
tosource
, and setparaview_SOURCE_DIR
to point to a custom ParaView source tree. See 'offline builds' below for instructions to download needed dependency packages. - Another option is to use a source tarball of a ParaView release. For that,
set
paraview_SOURCE_SELECTION
to the version to build such as5.7.0
. The superbuild offers the lastest stable release as well as release candidate in preparation for the release. This is the best way to build a released version of ParaView.
NOTE: If you switch to a superbuild version older than 5.2, the instructions described on this page are not relevant since the superbuild was refactored and changed considerably for 5.2. For older versions, refer to instructions on the Wiki.
ALSO NOTE: Since this README is expected to be updated for each version, once you checkout a specfic version, you may want to refer to the README for that specific version.
The superbuild is kind of naïve for changes to project sources within the superbuild. This is due to the superbuild not tracking all source files for each project and instead only "stamp files" to indicate the steps performed.
When changing the source of a subproject, the best solution is to delete the "stamp file" for the build step of that project:
$ rm superbuild/$project/stamp/$project-build
and to rerun the superbuild's build step.
The superbuild contains multiple projects which may be used to enable different features within the resulting ParaView build. Most projects involve downloading and adding the feature to the resulting package, but there are a few which are used just to enable features within ParaView itself.
The paraview
project must be enabled to build ParaView.
The paraviewsdk
project enables the building of a package which includes
headers and libraries suitable for developing against ParaView. It is only available
on Linux (at the moment).
The paraviewweb
project adds web services into the resulting package.
The paraviewgettingstartedguide
, and paraviewtutorialdata
packages add
startup documentation and example data to the package.
ParaView supports multiple rendering engines including egl
, mesa
,
osmesa
, and qt5
. All of these are incompatible with each other. If none of
these are chosen, a UI-less ParaView will be built (basically just
pvpython
). On Windows and macOS, only the qt5
rendering engine is
available.
The python
package is available to enable Python support in the package. In
addition, the matplotlib
and numpy
packages are available.
The following packages enable other features within ParaView:
adios
: Enable readers and writers for visualization data in the ADIOS file format.las
: Enable reading the LAS file formatcosmotools
: Enables Cosmo file format readers and related filters and algorithms.ffmpeg
: Video encoding library for macOS and Linux.ospray
: A ray tracing rendering backend from Intel.silo
: Support reading the silo file format.tbb
: Improved parallel processing support within various VTK and ParaView filters and algorithms.visitbridge
: Enables readers for file formats provided from the VisIt project.vortexfinder2
: A collection of tools to visualize and analyze vortices.vrpn
: Virtual reality support through the VRPN interface.vtkm
: VTK-m Accelerator Filtersxdmf3
: A meta file format built on top of HDF5.
The superbuild has a download-all
target that will download all of
the files from the network that are necessary for the currently
configured build. By default, they are placed into the downloads
directory of the build tree. This superbuild-plus-downloads tree may
then be copied to a non-networked machine and pointed at using the
superbuild_download_location
variable (or placed in the default
location).
Note that the nvidiaoptix
and nvidiamdl
project sources are not available
at their URLs in the superbuild outside of Kitware due to their sources being
behind click-wrapping. They may be manually downloaded from these web pages:
nvidiaoptix
: https://developer.nvidia.com/designworks/optix/download Though older versions are available here: https://developer.nvidia.com/designworks/optix/downloads/legacynvidiamdl
: https://developer.nvidia.com/mdl-sdk
On rare occasions, you may want to replace a downloaded archive with a different
version. You may replace the archive with a newer version preserving its
name, however, on doing so, the hash verification will most likely fail during
the build step. To skip the hash verification for archives that have been
manually changed, set the xxx_SKIP_VERIFICATION
option, where xxx
is the name of the project. xxx_SKIP_VERIFICATION
must be passed on command line
when invoking CMake using -Dxxx_SKIP_VERIFICATION:BOOL=TRUE
.
Alternatively, you can edit the versions.cmake
files in the source repository
and modify the URL_MDF5
or URL_HASH
values for the specific project with
updated hashes.
The superbuild supports the install
target by selecting a template package
using the SUPERBUILD_DEFAULT_INSTALL
variable. The default and availability
depends on the platform and selected projects, but valid values for this
include:
paraview/ZIP
paraview/DragNDrop
paraview/TGZ
paraview/TXZ
paraviewsdk/TGZ
paraviewsdk/TXZ
The CMake cache editors (ccmake
and cmake-gui
) have dropdown options for
the supported options.
The selected package logic will be used to install ParaView and its
dependencies into CMAKE_INSTALL_PREFIX
rather than being placed into a
package. For example, the DragNDrop
generator creates .app
bundles which
will be created whereas the TGZ
, TXZ
, and ZIP
generators use the standard
bin/
, lib/
, etc. directories.
If using the git
source selection for ParaView, the build will rerun when
using the install
target due to limitations in the external project
mechanisms and the way CPack works. There are two ways to avoid this:
- the
SUPERBUILD_OFFLINE_BUILD
option may be set toON
to unlink the git update step from the configure/build steps; or - the initial build can just be run using the
install
target instead of the usualmake && make install
pattern.
Note that currently not all project and configuration variables follow this style guide but any new projects should use this convention while any existing projects and configuration variables will transition to this over time.
- All references to a given project name will be lowercase.
- Underscores will be used as word seperators in variable names.
- All project specific configuration variables will be lower-case project
name followed by upper-case setting name.
Examples include:
mesa_USE_SWR
: Enable the OpenSWR driver for (OS)Mesa.ospray_BUILD_ISA
: Select the SIMD architecture used to build OSPray.
- Internal variables used within a given project's projectname.cmake file will be all lower-case.
- Multiple versions:
- Use the
superbuild_set_selectable_source
macro to allow multiple versions of a given project. - Specify source selection versions as numeric, i.e. without any "v" or "V" prefix.
- If the project is going through a release candidate cycle, add the available RCs as additional sources as they become availabe. Once a final release is made, replace all the RCs with the updated release.
- Use the
superbuild_download_location
(default${CMAKE_BINARY_DIR}/downloads
): The location to store downloaded source artifacts. Usually, it is changed so that it is preserved across a wipe of the build directory.SUPERBUILD_PROJECT_PARALLELISM
(default based on the number of available processors): When using a Makefiles generator, subproject builds use-j
explicitly with this number.ENABLE_xxx
(generally, defaultOFF
): If selected, thexxx
project will be built within the superbuild. See above for descriptions of the various projects.ENABLE_
flags are not shown for projects which must be enabled due to a project depending on it (e.g.,visitbridge
requiresboost
, so enablingvisitbridge
will hide theENABLE_boost
option).USE_SYSTEM_xxx
(defaultOFF
): If selected, thexxx
project from the build environment is used instead of building it within the superbuild. Not all projects support system copies (the flag is not available if so).SUPERBUILD_DEBUG_CONFIGURE_STEPS
(defaultOFF
): If set, the superbuild will log configure steps for eachxxx
project intosuperbuild/xxx/stamp/xxx-configure-*.log
files.CMAKE_BUILD_TYPE
(defaultRelease
): The build type to use for the build. Can beRelease
,RelWithDebInfo
, or (on not-Windows)Debug
.- Due to complications around shipping OpenSSL in the binaries, OpenSSL
requires explicit settings in the build. They are
-DALLOW_openssl:BOOL=ON -DENABLE_openssl:BOOL=ON
. paraview_always_package_scipy
(defaultOFF
): Force packagingscipy
on Windows installer generators. Other generators do not have issues with long paths and will always try to includescipy
.
The following flags affect ParaView directly:
-
paraview_SOURCE_SELECTION
(default5.12.0-RC1
): The source to use for ParaView itself. The version numbers use the source tarballs from the website for the release. Thesource
selection uses theparaview_SOURCE_DIR
variable to look at a checked out ParaView source directory. Thegit
selection has the superbuild clone and builds a checkout of ParaView from git repository controlled by theparaview_GIT_REPOSITORY
andparaview_GIT_TAG
variables. By default, themaster
branch of the main repository is used.Note: When using the
source
selection, incremental builds to the superbuild may not rebuild ParaView even if the source tree has changed. This is because the superbuild is "blind" to the source tree other than its existence. -
CMAKE_BUILD_TYPE_paraview
(default is the same as the superbuild): ParaView may be built with a different build type (e.g.,Release
vs.RelWithDebInfo
) as the rest of the superbuild using this variable. In addition to<SAME>
which usesCMAKE_BUILD_TYPE
, any valid value forCMAKE_BUILD_TYPE
is also valid. -
BUILD_SHARED_LIBS_paraview
(default is the same as the superbuild): ParaView may be built with a different selection for BUILD_SHARED_LIBS flag than the rest of the superbuild using this variable. For example, to build ParaView static while building other projects in the superbuild (e.g. MPI, Python, etc.) as shared, setBUILD_SHARED_LIBS
toON
andBUILD_SHARED_LIBS_paraview
toOFF
. -
PARAVIEW_BUILD_WEB_DOCUMENTATION
(defaultOFF
): Have ParaView build its HTML documentation. -
mesa_USE_SWR
(defaultON
): Ifmesa
is enabled, this enables Intel's software rasterization backend (x86 only). -
PARAVIEW_INITIALIZE_MPI_ON_CLIENT
(defaultON
): Ifmpi
is enabled, this enables MPI to be initialized automatically when running the GUI or pvpython. Some readers use MPI IO and thus must have MPI initialized in order to be used so this is the default for general ease of use. For some MPI implementations, a code that initializes MPI must be run with the appropriate mpi launcher (e.g. mpirun) which in this case it may be desirable to disable this option. Note that the--mpi
or--no-mpi
command line options to paraview and pvpython can be used to override this option. -
PARAVIEW_EXTRA_CMAKE_ARGUMENTS
(default""
: Extra CMake arguments to pass to ParaView's configure step. This can be used to set CMake variables for the build that are otherwise not exposed in the superbuild itself. Arguments should be separated with;
. -
PARAVIEW_ENABLE_CAVEInteraction
(defaultON
): Enables the CAVEInteraction. Ifvrpn
is enabled, the CAVEInteraction will support input devices through a VRPN connection. VRUI support is enabled unconditionally on Linux. -
PARAVIEW_ENABLE_NODEEDITOR
(defaultON
): Enables the NodeEditor plugin. -
PARAVIEW_ENABLE_XRInterface
(defaultON
): Enables the XRInterface plugin.
A typical ParaView build includes several modules and dependencies. While these
are necessary for a fully functional application, there are cases (e.g. in situ
use-cases) where a build with limited set of features is adequate. ParaView build supports
this using the PARAVIEW_BUILD_EDITION
setting. Supported values for this setting are:
CORE
: Build modules necessary for core ParaView functionality. This does not include rendering.RENDERING
: Build modules necessary for supporting rendering including views and representations. This includes everything inCORE
.CATALYST
: Build all modules necessary for in situ use cases without rendering and optional components like NetCDF- and HDF5-based readers and writers.CATALYST_RENDERING
: Same asCATALYST
but with rendering supported added.CANONICAL
(default): Build modules necessary for standard ParaView build.
PARAVIEW_PACKAGE_SUFFIX
(default based on selected options): The suffix for the name generated by the package.paraview_PLUGINS_AUTOLOAD
: List of plugins to autoload in the packaged ParaView.
The packages may be built using the cpack-paraview
tests via ctest
. The
easiest way to build all available packages is to run ctest -R cpack
.
Even though almost all dependencies are bundled into the final package, there are still some libraries that should be present on the user OS. Namely :
- a valid OpenGL implementation (GPU driver or Mesa)
- for Linux systems :
- libxcb
- libxi
- libxkbcommon
- libxrender
- alsa (only if using the Audio Player docker from the DSP ParaView plugin)
-
General information is available at the ParaView Homepage.
-
Community discussion takes place on the ParaView Mailing Lists.
If you have found a bug:
-
If you have a patch, please read the CONTRIBUTING.md document.
-
Otherwise, please join one of the ParaView Mailing Lists and ask about the expected and observed behaviors to determine if it is really a bug.
-
Finally, if the issue is not resolved by the above steps, open an entry in the ParaView Issue Tracker.
Like ParaView, ParaView-Superbuild is distributed under the OSI-approved BSD 3-clause License. See Copyright.txt for details. For additional licenses, refer to ParaView Licenses.
See CONTRIBUTING.md for instructions to contribute.