Does libvtkCommon.a libvtkIO.a exist in version from 7.1 to 9.x on linux?

I am a new user of VTK. When I installed a vtk from source code, both libvtkCommon.a and libvtkIO.a did not exist even using ccmake with a option “BUILD_SHARED_LIBS OFF”. There are lots of static lib files with name libvtkCommon*.a except libvtkCommon.a.

I met these problems with version 6.3, 7.1, 9.0.1 on a xubuntu 20.04. Any suggestion?

Thanks very much.

Weicai

PS: The whole procedure of vtk installation I used is listing as follows:

  1. download a tar ball of VTK-9.0.1.tar.gz;
  2. extract files and make a subfolder “build”;
  3. sudo apt-get install cmake-curses-gui
    sudo apt-get install freeglut3-dev
  4. cd build
    ccmake …
    with options
    BUILD_SHARED_LIBS = OFF
    BUILD_TESTING = OFF
    CMAKE_BUILD_TYPE = Release
    CMAKE_INSTALL_PREFIX = /home/kk/local
  5. cmake .
    
    make
    make install
  6. all lib. files are in folder “/home/kk/local/lib”
  7. gcc version 9.3.0