Added ARMhf build info to README
This commit is contained in:
parent
96002c7986
commit
8fc88ff03a
|
@ -9,6 +9,11 @@ alias rust-musl-builder='docker run --rm -it -v "$(pwd)":/home/rust/src ekidd/ru
|
||||||
rust-musl-builder cargo build --release
|
rust-musl-builder cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To target ARM hard float (Raspberry Pi):
|
||||||
|
```sh
|
||||||
|
rust-musl-builder cargo build --target=armv7-unknown-linux-gnueabihf --release
|
||||||
|
```
|
||||||
|
|
||||||
This command assumes that `$(pwd)` is readable and writable by uid 1000, gid 1000. It will output binaries in `target/x86_64-unknown-linux-musl/release`. At the moment, it doesn't attempt to cache libraries between builds, so this is best reserved for making final release builds.
|
This command assumes that `$(pwd)` is readable and writable by uid 1000, gid 1000. It will output binaries in `target/x86_64-unknown-linux-musl/release`. At the moment, it doesn't attempt to cache libraries between builds, so this is best reserved for making final release builds.
|
||||||
|
|
||||||
## Deploying your Rust application
|
## Deploying your Rust application
|
||||||
|
|
Loading…
Reference in a new issue