We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tried building the binary on an x86_64 Ubuntu laptop with: Make 4.3, GCC 11.4.0
Found that libusb was not getting linked correctly. Added the following line to the Makefile to get it to work:
libusb
diff --git a/Makefile b/Makefile index 139e5c0..9bac300 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ CFLAGS += $(shell $(PKG_CONFIG) --cflags libusb-1.0) LDFLAGS ?= LDFLAGS += -lpthread +LDFLAGS += -lusb-1.0 LDFLAGS += $(shell $(PKG_CONFIG) --libs libusb-1.0) DEPDIR := .deps
The text was updated successfully, but these errors were encountered:
Willing and ready to push the fix if permissions could be added, fine with someone else handling as well.
Sorry, something went wrong.
No branches or pull requests
Tried building the binary on an x86_64 Ubuntu laptop with:
Make 4.3, GCC 11.4.0
Found that
libusb
was not getting linked correctly. Added the following line to the Makefile to get it to work:The text was updated successfully, but these errors were encountered: