-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
undefined reference to `TIFF****@LIBTIFF_4.0' #23
Comments
check if you choose the right path of opencv when compiling pangolin? |
I built DSP-SLAM using build_cuda113.sh and the suggestion in this issue description helped me building it successfully whereas when I ran the dsp_slam with argument to save the map I got the error I would like to share the solution here in case someone else faces same problem. To resolve this I created symbolic link for libtiff.so.5 from |
I tried all the methods mentioned above, but none of them worked. Obtained the absolute path of libtiff.so.5 by running the command
|
When you meet the following problem,
"
../Thirdparty/Pangolin/build/libpango_image.so: undefined reference to
TIFFOpen@LIBTIFF_4.0' ../Thirdparty/Pangolin/build/libpango_image.so: undefined reference to
TIFFGetField@LIBTIFF_4.0'../Thirdparty/Pangolin/build/libpango_image.so: undefined reference to
TIFFScanlineSize@LIBTIFF_4.0' ../Thirdparty/Pangolin/build/libpango_image.so: undefined reference to
TIFFReadScanline@LIBTIFF_4.0'../Thirdparty/Pangolin/build/libpango_image.so: undefined reference to `TIFFClose@LIBTIFF_4.0'
"
add "-ltiff" to "targtet_link_libraries" in "DSP-SLAM/CMakeLists.txt". It may be helpful.
The text was updated successfully, but these errors were encountered: