I have recently installed Ubuntu-19.04
. I saved the the most important data from Ubuntu-18.04
as an enormous .tar
file as I had some broken files on my 18.04 and transferred everything to the new 19.04 so that I had the same exact layout/folders/data I had before. In this process of course some libraries/dependencies were lost and had to reinstall them.
On my computer I have CMake 3.13.4
from official documentation,Qt5
installed from official documentation,OpenCV 3.4.4
installed from here.
Almost all libraries and dependencies are restored, however I get the last three errors after launching CMake
and Qt5
:
/usr/bin/ld: ../../lib/liblibCam.so: undefined reference to TIFFOpen
/usr/bin/ld: ../../lib/liblibCam.so: undefined reference to TIFFClose
/usr/bin/ld: ../../lib/liblibCam.so: undefined reference to TIFFGetField
collect2: error: ld returned 1 exit status
I am not sure if this compilation error is due to OpenCV
. I installed fresh the following libraries: libtiff5
and libtiff5-dev
but still the problem remains.
Any idea why is not compiling successfully?
0 Answers