diff --git a/pod-operation/README.md b/pod-operation/README.md index 42db5132..d6c37188 100644 --- a/pod-operation/README.md +++ b/pod-operation/README.md @@ -15,7 +15,7 @@ cargo install cargo-watch Add the build target for the Raspberry Pi ```shell -rustup target add armv7-unknown-linux-gnueabihf +rustup target add aarch64-unknown-linux-gnu ``` ### Cross-Compilation @@ -29,15 +29,19 @@ A Homebrew formula for macOS cross-compiler toolchains is available ```shell brew tap messense/macos-cross-toolchains -brew install armv7-unknown-linux-gnueabihf +brew install aarch64-unknown-linux-gnu ``` #### Windows/Linux To cross-compile on Windows and Linux, a different compiler toolchain is needed. From the [Arm GNU Toolchain Downloads](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads), -download and install the **AArch32 GNU/Linux target with hard float (arm-none-linux-gnueabihf)** -for your operating system. +download and install the **AArch64 GNU/Linux target (aarch64-none-linux-gnu)** for your operating +system. + +For Linux operating systems, your distribution may also provide the target via +its package manager (`apt`, `pacman`, etc.). Please refer to the appropriate +package repository to verify and install it this way if you wish. #### Alternative Building Process With `cross`