Question

I'm trying to build Teigha SDK in Ubuntu 12.04. I got the following linking error:

/usr/bin/ld: cannot find -lJpeg
/usr/bin/ld: cannot find -lJpeg

libjpeg has alredy been installed on my machine. What else is missing?

Was it helpful?

Solution

libjpeg has alredy been installed on my machine. What else is missing?

/usr/bin/ld: cannot find -lJpeg
                           ^

Note the uppercase letter! The linker is missing a libJpeg.a (or other archive format) file, or an appropriate -L<path> option to resolve it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top