Problem while compiling Caribou (VTK) #126
Unanswered
ateixeira0163
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Hey @ateixeira0163 Could you try with VTK 9? This is how we install it on our ubuntu 18.04 and 20.04 CI: $ git clone --depth 1 --branch v9.0.1 https://gitlab.kitware.com/vtk/vtk.git /tmp/vtk
$ cd /tmp/vtk
$ git submodule update --init
$ mkdir build && cd build
$ cmake \
-GNinja \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Release \
-DVTK_GROUP_ENABLE_Imaging=NO \
-DVTK_GROUP_ENABLE_MPI=NO \
-DVTK_GROUP_ENABLE_Qt=NO \
-DVTK_GROUP_ENABLE_Rendering=NO \
-DVTK_GROUP_ENABLE_StandAlone=DEFAULT \
-DVTK_GROUP_ENABLE_Views=NO \
-DVTK_GROUP_ENABLE_Web=NO \
-DVTK_RELOCATABLE_INSTALL=ON \
-DVTK_MODULE_ENABLE_VTK_IOLegacy=YES \
-DBUILD_SHARED_LIBS=OFF \
..
$ cmake --build .
$ cmake --install .
$ cd /
$ rm -rf /tmp/vtk If you don't want to install it for the whole system, you can change the installation prefix using the Let me know if it helped or not. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having problem compiling Caribou.
While doing the command:
cmake --build . -j4
I get these messages:And while compiling, I get this error:
I've tried installing
libvtk6-dev
andpython3-vtk7
but with no success.Beta Was this translation helpful? Give feedback.
All reactions