Change export path to comply with the package downloaded

master
Tony Abboud 2015-07-21 12:18:39 -04:00
rodzic 099699c21d
commit 06c5a6ae1a
1 zmienionych plików z 2 dodań i 2 usunięć

@ -10,9 +10,9 @@ cd ~/stm
wget https://launchpad.net/gcc-arm-embedded/4.8/4.8-2014-q2-update/+download/gcc-arm-none-eabi-4_8-2014q2-20140609-linux.tar.bz2
tar xf gcc-arm-none-eabi-4_8-2014q2-20140609-linux.tar.bz2
```
and then add ```${HOME}/stm/gcc-arm-none-eabi-4_8-2013q4/bin``` to your PATH. You might do this by adding the following line to your ```~/.bashrc``` file:
and then add ```${HOME}/stm/gcc-arm-none-eabi-4_8-2014q2/bin``` to your PATH. You might do this by adding the following line to your ```~/.bashrc``` file:
```bash
export PATH="${PATH}:${HOME}/stm/gcc-arm-none-eabi-4_8-2013q4/bin"
export PATH="${PATH}:${HOME}/stm/gcc-arm-none-eabi-4_8-2014q2/bin"
```
and then it will be added automatically each time you login. You can also just execute the command directly from your bash shell and it will work until you exit your shell.