-
Notifications
You must be signed in to change notification settings - Fork 173
Building AVRDUDE for FreeBSD
mcuee edited this page May 3, 2025
·
12 revisions
On FreeBSD, you can normally install AVRDUDE through the ports subsystem, as devel/avrdude.
To build AVRDUDE yourself for FreeBSD, you need to install the following packages:
pkg install cmake pkgconf libftdi1 hidapi readline libserialportMinimum required version for CMake is 3.14.
To build AVRDUDE for FreeBSD, run the following commands:
git clone https://github.com/avrdudes/avrdude.git
cd avrdude
./build.shTo install a local build on your system, run the following commands:
sudo cmake --build build_freebsd --target install