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
Brew is not friendly to older Mac OS systems or newbie users. LibUSB can be statically linked inside the binary.
Here is how I did it.
ifneq (,$(findstring darwin,$(OS_NAME))) LIBS=/usr/local/Cellar/libusb/1.0.23/lib/libusb-1.0.a /usr/local/Cellar/libusb-compat/0.1.5_1/lib/libusb.a -ldl -Wl,-framework,IOKit -Wl,-framework,CoreFoundation else ifneq (,$(findstring cygwin,$(OS_NAME))) LIBS=-lusb-1.0 -Wl,--enable-stdcall-fixup CH375DLL.dll else LIBS=-lusb-1.0 endif endif
Here is a Github Action build example https://github.com/DeqingSun/vnproch551/blob/master/.github/workflows/build_for_multiple_os.yml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Brew is not friendly to older Mac OS systems or newbie users. LibUSB can be statically linked inside the binary.
Here is how I did it.
Here is a Github Action build example
https://github.com/DeqingSun/vnproch551/blob/master/.github/workflows/build_for_multiple_os.yml
The text was updated successfully, but these errors were encountered: