GNU ARM Embedded Toolchain - thingsee/thingsee-sdk GitHub Wiki
Install GNU ARM Embedded toolchain
$ wget https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q3-update/+download/gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
$ sudo tar xvfj gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2 -C /opt
Install dependencies
$ sudo apt install lib32ncurses5 lib32z1
Add to path
$ echo 'PATH="/opt/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH"' >> $HOME/.profile
$ source $HOME/.profile
Test
$ arm-none-eabi-gcc --version
arm-none-eabi-gcc (GNU Tools for ARM Embedded Processors) 4.9.3 20150529 (release) [ARM/embedded-4_9-branch revision 227977]
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.