Skip to content
Advertisement

eclipse CDT /usr/bin/ld: cannot find -l

this is my code :

JavaScript

i installed libimobiledevice library and this is

JavaScript

but why in configure CDT to use shared library like picture CDT error ?

/usr/bin/ld: cannot find -llibimobiledevice

enter image description here enter image description here enter image description here

Advertisement

Answer

Under libraries add imobiledevice instead of libimobiledevice. When you use -lx, linker searches for libx.so. In your case linker searched for liblibimobiledevice.so which it could not find.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement