Docker image built on top of rust:latest with installed AVR toolchain and few additional tools:
- AVR8 toolchain (2019, AVR_8_bit_GNU_Toolchain_3.6.2_1759)
- Python 3 w/ intelhex library
- Rust (from rust:latest base)
- Meson & Ninja build tools
DockerHub: https://hub.docker.com/r/sytedev/avr-toolchain
git clone [email protected]:/avr-toolchain-docker.git
cd avr-toolchain
docker build --rm -t sytedev/avr-toolchain:latest .
docker run --rm --privileged -v $(pwd):/build lpodkalicki/avr-toolchain avr-gcc -version
Bellow you can find recommended simple one-line installer that pulls the newest docker-image and installs avr-toolchain script into "/usr/bin/" directory.
curl https://raw.githubusercontent.com/lpodkalicki/avr-toolchain-docker/master/install.sh | bash -s --
- Install toolchain using recommended simple one-line installer.
- Use super command avr-toolchain for all toolchain binaries.
- Execute toolchain binaries inside your working/project directory.
$ cd your-project/
$ avr-toolchain avr-gcc --version
$ avr-toolchain make -version
$ avr-toolchain avrdude --help
$ avr-toolchain cmake -version
$ avr-toolchain make && make flash