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?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top