I like to do usb programming with libusb. I installed it using
$ apt-get install libusb-1.0
and then
$ apt-get install libusb-1.0-0-dev
but after I tried to use it in c code, there are compiler errors.
#include <stdio.h>
#include <libusb-1.0/libusb.h>
int main(){
usb_init(NULL);
return 0;
}
The compiler errors are:
**/tmp/ccgCZXTu.o: In function `main': test.c:(.text+0xf): undefined reference to `usb_init' collect2: error: ld returned 1 exit status**
Why does this happen?