Instructions Circuit Diagram
- 22 -
Manual Installation
If you prefer to install the compiler manually or the installation via th script
failed, you can follow the instructions below.
The description is based on following article:
http://www.nongnu.org/avr-libc/user-manual/install_tools.html
that is also included on the CD in PDF format in the AVR Libc documentation:
<CD-ROM drive>:\Software\Documentation\avr-libc-user-manual-1.4.5.pdf
Our description here is much shorter but includes a few important patches.
Without these, some tings will not work properly.
First of all we have to create a directory in which we wil install all tools. That
should be /usr/local/avr.
Also enter in a console AS A ROOT:
> mkdir /usr/local/avr
> mkdir /usr/local/avr/bin
It must not necessarily be this directory. We just create the variable $PREFIX
for this directory:
> PREFIX=/usr/local/avr
> export PREFIX
This must be added into the PATH variable:
> PATH=$PATH:$PREFIX/bin
> export PATH