summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-06-15 23:16:02 -0400
committerPete Johanson <peter@peterjohanson.com>2020-06-15 23:16:02 -0400
commit766eedebe53c1146ce4ea9db73d659d12e49b53a (patch)
tree4a7931e288eff230775da39b494afef9b7e6c147
parentc2e0c4fd6c28b308d61e94e76326fb76b5caa5e0 (diff)
Move the gcc-multilib install to POSIX board doc.
-rw-r--r--docs/docs/dev-posix-board.md13
-rw-r--r--docs/docs/dev-setup.md1
2 files changed, 13 insertions, 1 deletions
diff --git a/docs/docs/dev-posix-board.md b/docs/docs/dev-posix-board.md
index e804ca8..dc33ea0 100644
--- a/docs/docs/dev-posix-board.md
+++ b/docs/docs/dev-posix-board.md
@@ -8,6 +8,19 @@ be helpful to build and run the firmware on your local
workstation, with generated virtual press/release events
flowing into the handler functions.
+## Prerequisites
+
+In order to build targetting the `native_posix` board, you need to setup your system
+with a compiler that can target 32-bit POSIX.
+
+On Debian, you can do this with:
+
+```
+apt install -y gcc-multilib
+```
+
+## Building
+
To do this, you can build ZMK targetting the
`native_posix` board.
diff --git a/docs/docs/dev-setup.md b/docs/docs/dev-setup.md
index 709cbac..5741766 100644
--- a/docs/docs/dev-setup.md
+++ b/docs/docs/dev-setup.md
@@ -46,7 +46,6 @@ sudo apt install -y \
dfu-util \
g++ \
gcc \
- gcc-multilib \
libtool \
make \
ninja-build \