Support » Developing for the ATmega328P under Linux »
4. Compiling avr-libc
Downloading the archive
Get the latest version from the avr-libc website. You should get version 1.6.6 or higher.
Configuring and compiling avr-libc
Run the following command:
tar xjf ~/Desktop/avr-libc-1.6.6.tar.bz2 cd avr-libc-1.6.6
Compiling avr-libc
Make sure that the latest avr-gcc is on your path as the default avr-gcc
before you run these commands, or you will not get support for the mega328. When running configure
, you should see a line of output that says (make sure “checking if avr-gcc has support for atmega328p… yes”. If you don’t see this, double-check your avr-gcc installation.
./configure --host=avr --prefix=/usr/local make sudo make install
Next steps
You should now have an avr-libc installed that includes support for the mega328, so you will be able to compile programs for this microcontroller. To program a chip, you will probably want AVRDUDE. Section 5 contains instructions for compiling installing and installing the latest version.