From 06c5a6ae1a8d1892fd75b5040ebf2e90271e9677 Mon Sep 17 00:00:00 2001 From: Tony Abboud Date: Tue, 21 Jul 2015 12:18:39 -0400 Subject: [PATCH] Change export path to comply with the package downloaded --- Getting-Started-STM.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Getting-Started-STM.md b/Getting-Started-STM.md index de6d66b..ad210bd 100644 --- a/Getting-Started-STM.md +++ b/Getting-Started-STM.md @@ -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.