mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-06-27 16:35:59 +00:00
Move some documentation to docs/ and start overhaul
This commit is contained in:
parent
734c4637f0
commit
10ee0a53f9
14 changed files with 191 additions and 15 deletions
13
docs/development/cross-compilation.md
Normal file
13
docs/development/cross-compilation.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Cross compilation
|
||||
|
||||
Install docker:
|
||||
|
||||
```bash
|
||||
sudo apt install docker
|
||||
sudo usermod -aG docker $USER
|
||||
exec sudo su -l $USER
|
||||
sudo systemctl start docker
|
||||
cargo install cross
|
||||
cross build --release --target armv7-unknown-linux-musleabihf
|
||||
```
|
||||
The cross-compiled binary is at target/armv7-unknown-linux-musleabihf/release/conduit
|
Loading…
Add table
Add a link
Reference in a new issue