You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/lihatoo/sim_ws/devel/lib/esim_ros/esim_node: symbol lookup error: /lib/libgdal.so.26: undefined symbol: TIFFReadRGBATileExt, version LIBTIFF_4.0
Why did the program still throw an error even though it compiled successfully? The issue was resolved during the compilation process by adding the following lines to the CMakeLists.txt:
find_package(GDAL REQUIRED) # Added search for GDAL
find_package(TIFF REQUIRED) # Added search for TIFF
What could be the reason for this?
The text was updated successfully, but these errors were encountered:
error:
Why did the program still throw an error even though it compiled successfully? The issue was resolved during the compilation process by adding the following lines to the CMakeLists.txt:
What could be the reason for this?
The text was updated successfully, but these errors were encountered: