I'm trying to cross compile some C code in order to execute it on a Phidget SBS4 - 3003.
I already succeed to cross compile a simple .C file (printf("hello world");
) and execute it on the SBC using arm-linux-gnueabihf-gcc
toolchain for the cross compilation.
Now I'm struggling to cross compile a code using the phidget library. I'm trying to ./configure --prefix=/usr/arm-linux-gnueabihf --build=i686-pc-linux-gnu --host=arm-linux-gnueabihf
as seen here, but i get an error :
configure: error: Missing libusb!
I already installed libusb-1.0-0-dev.
What should I do ? Thanks a lot !