Select Git revision
-
* fix: Docker config + documentation * Revert "review: test code, not dead code" This reverts commit 922df964. * review: test code, not dead code * review: iodiomatic usage of stream * review: add --public-endpoints option * review: spawn_handle + BoundedVec * fix: metadata.scale * fix: warnings * fix: node was no more starting * clippy (again) * clippy * feat(#97): add RPC endpoint + gossip protocol for peerings
* fix: Docker config + documentation * Revert "review: test code, not dead code" This reverts commit 922df964. * review: test code, not dead code * review: iodiomatic usage of stream * review: add --public-endpoints option * review: spawn_handle + BoundedVec * fix: metadata.scale * fix: warnings * fix: node was no more starting * clippy (again) * clippy * feat(#97): add RPC endpoint + gossip protocol for peerings
build-for-arm.md 1.19 KiB
How to build duniter-v2s for arm
Cross-compile Duniter to arm (e.g. Raspberry Pi).
With Docker
- Create a docker image that contains the build environment
docker build -t duniter-v2s-arm-builder -f docker/cross-arm.Dockerfile .
- Use this docker image to cross-compile duniter-v2s for armv7
./scripts/cross-build-arm.sh
then, get the final binary at target/armv7-unknown-linux-gnueabihf/release/duniter
.
Without Docker
Warning: armv7 (default for Raspberry Pi) is not supported. Linux on RPi can be easily switched to aarch64, please search how to do so on the Internet.