We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58e91ae commit 9444d31Copy full SHA for 9444d31
docs/build.md
@@ -14,11 +14,18 @@ The easiest way to get all necessary tools is to run `nix-shell` from the root o
14
15
To compile the firmware for the board you will need `arm-none-eabi-gcc` compiler.
16
17
-**Linux**:
+**Debian/Ubuntu**:
18
```sh
19
sudo apt-get install build-essential gcc-arm-none-eabi binutils-arm-none-eabi gdb-multiarch openocd
20
```
21
22
+**Archlinux**:
23
+```sh
24
+sudo pacman -S arm-none-eabi-gcc arm-none-eabi-binutils openocd base-devel python-case
25
+```
26
+You might need change default gcc flag settings with `CFLAGS_EXTRA="-w"`. Export it or set the variable before of `make`
27
+to avoid warnings being raised as errors.
28
+
29
**MacOS**:
30
31
brew tap ArmMbed/homebrew-formulae
0 commit comments