Setting Up the CITRIC Development Environment

The arm-linux-gcc compiler

The arm-linux-gcc compiler is located in the tools directory as a tarball. First we need to untar:

tar xvzf arm-linux.tgz

Adding environment variables

Next we need to add the arm-linux-gcc compiler to the PATH and also create a CITRICROOT environment variable. This can be done by modifying the .bashrc file in your home directory (assuming you are using bash). Add the following lines to .bashrc:

export CITRICROOT=<path to your CITRIC directory>
export PATH=$PATH:$CITRICROOT/tools/arm-linux/bin