Cross compile hello world on SBC4
Posted: Fri Nov 27, 2020 8:02 am
Hi everyone,
I'm trying to cross
I already succeed to cross compile a simple .C file () and execute it on the SBC using .
Now I'm struggling to cross compile the phidget's hello world example. I'm trying to as seen here, but i get an error :
I already installed . Should I use a toolchain generator ? and how ?
thanks a lot
I'm trying to cross
some C code in order to execute it on a Phidget SBS4 - 3003compile
I already succeed to cross compile a simple .C file (
Code: Select all
printf("hello world");
Code: Select all
arm-linux-gnueabihf-gcc toolchain
Now I'm struggling to cross compile the phidget's hello world example. I'm trying to
Code: Select all
./configure --prefix=/usr/arm-linux-gnueabihf --build=i686-pc-linux-gnu --host=arm-linux-gnueabihf
Code: Select all
configure: error: Missing libusb!
Code: Select all
libusb-1.0-0-dev
thanks a lot