Linking error to PointTransform.h
I am updating Ascent to the new release of VTK-m v1.8.
I'm getting the following linking error:
[ 77%] Linking CXX executable lulesh_ser
cd /home/users/marsagli/TestBed/ascent/build/examples/proxies/lulesh2.0.3 && /home/users/marsagli/Camera/cmake-3.16.6/bin/cmake -E cmake_link_script CMakeFiles/lulesh_ser.dir/link.txt --verbose=1
/usr/bin/g++ -O3 -DNDEBUG -lm -ldl -L/usr/lib -pthread CMakeFiles/lulesh_ser.dir/lulesh.cc.o CMakeFiles/lulesh_ser.dir/lulesh-comm.cc.o CMakeFiles/lulesh_ser.dir/lulesh-viz.cc.o CMakeFiles/lulesh_ser.dir/lulesh-util.cc.o CMakeFiles/lulesh_ser.dir/lulesh-init.cc.o -o lulesh_ser -Wl,-rpath,/home/users/marsagli/TestBed/ascent/build/lib:/usr/lib/python2.7/config-x86_64-linux-gnu:/home/users/marsagli/TestBed/conduit/install/lib:/home/users/marsagli/TestBed/hdf5-1.8.16/install/lib:/home/users/marsagli/TestBed/vtk-h/install/lib:/home/users/marsagli/TestBed/vtkm/install/lib:/usr/lib/x86_64-linux-gnu/openmpi/lib:: ../../../lib/libascent.so ../../../lib/libascent_flow.so /usr/lib/python2.7/config-x86_64-linux-gnu/libpython2.7.so ../../../lib/libascent_lodepng.so ../../../lib/librover.so /home/users/marsagli/TestBed/conduit/install/lib/libconduit_relay.so -ldl -lrt /home/users/marsagli/TestBed/hdf5-1.8.16/install/lib/libhdf5.so -lm -ldl -lrt /home/users/marsagli/TestBed/hdf5-1.8.16/install/lib/libhdf5.so -lm /home/users/marsagli/TestBed/conduit/install/lib/libconduit_blueprint.so /home/users/marsagli/TestBed/conduit/install/lib/libconduit.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_rendering.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_filters.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_compositing.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_core.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_utils.so /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_extra-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_connected_components-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_contour-1.8.so.1 /usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_cxx.so /usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi.so /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_density_estimate-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_field_conversion-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_field_transform-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_geometry_refinement-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_mesh_info-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_vector_analysis-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_zfp-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_rendering-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_entity_extraction-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_clean_grid-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_image_processing-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_filter_core-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_worklet-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_io-1.8.so.1 /home/users/marsagli/TestBed/vtkm/install/lib/libvtkm_cont-1.8.so.1 -lpthread /home/users/marsagli/TestBed/vtkm/install/lib/libvtkmdiympi.so /home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_lodepng.so
/home/users/marsagli/TestBed/vtk-h/install/lib/libvtkh_filters.so: undefined reference to `undefined reference to `vtkm::filter::field_transform::PointTransform::SetChangeCoordinateSystem(bool)'
Looking at the release docs, I have included vtkm_filter_field_transform to the target for vtkh_filters in the CMakeLists.txt, I also tried vtkm_filter.
I then tried to search for the function in my install/lib directory for VTK-m, but I get zero results with the following commands:
nm libvtkm_filter_field_transform-1.8.so.1 | grep SetChangeCoordinateSystem
nm *.so | grep SetChangeCoordinateSystem