You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
shine@shine:~/android/build/awutils$ make
cc -Wall -o awflash awflash.c -lusb
awflash.c:23:17: fatal error: usb.h: No such file or directory
compilation terminated.
make: *** [awflash] Error 1
Can you add the library requirement on documentation ?
The build require libusb-dev to avoid that:
shine@shine:~/android/build/awutils$ make
cc -Wall -o awflash awflash.c -lusb
awflash.c:23:17: fatal error: usb.h: No such file or directory
compilation terminated.
make: *** [awflash] Error 1
Can you add the library requirement on documentation ?
sudo apt-get install libusb-dev
Best regards