Created Getting Started STM (markdown)

master
Dave Hylands 2014-09-01 17:45:22 -07:00
rodzic deca2bd21c
commit 5560f6171f
1 zmienionych plików z 24 dodań i 0 usunięć

@ -0,0 +1,24 @@
This page covers installing the ARM toolchain needed to build firmware for the pyboard (or other ARM processors).
# Linux (general)
One source of the ARM toolchain (for all platforms) is from: https://launchpad.net/gcc-arm-embedded
For all of the linux variants, you should download the "Linux installation tarball". There is a link over on the right side of the page. The actual URL changes periodically (about once every 3 months).
```bash
mkdir ~/stm
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:
```bash
export PATH="${PATH}:${HOME}/stm/gcc-arm-none-eabi-4_8-2013q4/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.
Note: This is a 32-bit toolchain, so if you're using a 64-bit version of linux, you may need to also install the 32-bit version of libc.
For Ubuntu 14.04, I did:
```bash
sudo apt-get install libc6:i386
```