Replies: 1 comment
-
I have updated the Wiki page here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As of now, avrdude project provides three types of Windows binaries from github action.
MSVC build (using VS2022, x86, x64 and arm64 build), without libserialport, using avrdude's own libusb/libftdi, using avrdude's own readline wrapper, using hidapi 0.13.0 release
https://github.com/avrdudes/avrdude/blob/main/.github/workflows/build.yml
https://github.com/avrdudes/avrdude/wiki/Getting-Nightly-Builds-for-AVRDUDE#windows-static-linking-to-dependancies (latest run for git main)
Known Issues for this version:
This is the second choice for Windows users (mainly mingw64 version)
MSYS2 mingw32/64 (x86 and x64 build), with libserialport, with GNU Readline, with libusb-1.0.26 and libusb-compat-0.1, with libftdi1, with hidapi 0.14.0.
https://github.com/avrdudes/avrdude/blob/main/.github/workflows/build.yml
https://github.com/avrdudes/avrdude/wiki/Getting-Nightly-Builds-for-AVRDUDE#windows-static-linking-to-dependancies (latest run for git main)
Known limitation of this build
-c urclock
in terminal mode)This is likely to be used by Arduino distributions under Windows, Linux and macOS.
using Arduino avrdude-packing script (32bit x86 build only), using a Linux container with cross compiler, without libserialport, with libusb-1.0.26 and libusb-compat-0.1.7, libftdi1-1.4, hidapi 0.12.0, GNU Readline 8.0.
https://github.com/avrdudes/avrdude/blob/main/.github/workflows/arduino_packing.yml
https://github.com/avrdudes/avrdude/wiki/Getting-Nightly-Builds-for-AVRDUDE#linux-macos-and-windows-static-linking-to-dependancies (latets run for git main)
Known limitation of this build
-c urclock
in terminal mode)Beta Was this translation helpful? Give feedback.
All reactions