diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-07-22 19:29:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-22 19:29:53 -0700 |
| commit | 7cb2aa2d62d37c3faeec4c52b2e4d3ecdc29b60e (patch) | |
| tree | 0942886776745cac0e3569de506b26927e9bdd9d | |
| parent | 3e04744f751d35c0991cf76c6f0411039d161036 (diff) | |
| parent | 55f15e3c056f3653415e0d8f3752a33e50abd3c4 (diff) | |
Merge pull request #1986 from AnthonyDiGirolamo/patch-1
Update Arch Linux ARM compiler installation instructions
| -rw-r--r-- | ports/atmel-samd/README.rst | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/ports/atmel-samd/README.rst b/ports/atmel-samd/README.rst index 167373b26..9afa19b83 100644 --- a/ports/atmel-samd/README.rst +++ b/ports/atmel-samd/README.rst @@ -124,15 +124,20 @@ Setup ----- An ARM compiler is required for the build, along with the associated binary -utilities. On Ubuntu, these can be installed as follows: +utilities. They can be installed as follows: -.. code-block:: shell +- Ubuntu + + .. code-block:: shell + + sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa + sudo apt-get install gcc-arm-embedded + +- Arch Linux - sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa - sudo apt-get install gcc-arm-embedded + .. code-block:: shell -On Arch Linux the compiler is available for via the package -``arm-none-eabi-gcc``. + sudo pacman -S arm-none-eabi-gcc arm-none-eabi-newlib For other systems, the `GNU Arm Embedded Toolchain <https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads>`_ may be available in binary form. |
