Skip to content

Commit

Permalink
[Docs] update download link cross-compilation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed May 20, 2024
1 parent 144f98b commit fdb4d06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Cross-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ You can find ready-to-use toolchains with good compatibility at https://github.c
```sh
# Create a directory to save the cross-compilation toolchains into
mkdir -p toolchains
# Download and extract the toolchain for AArch64
# Download and extract the toolchain for AArch64 (~120 MiB)
url="https://github.com/tttapa/toolchains/releases/download/0.1.0"
wget "$url/x-tools-aarch64-rpi3-linux-gnu-gcc14.tar.xz" -O- | tar xJ -C toolchains
# Verify that the toolchain works
Expand All @@ -137,9 +137,9 @@ You can download these from https://github.com/tttapa/python-dev.
```sh
# The toolchain is read-only by default, make it writable to add Python to it
chmod u+w "toolchains/x-tools/aarch64-rpi3-linux-gnu"
# Download and extract the Python binaries for AArch64
url="https://github.com/tttapa/python-dev/releases/download"
wget "$url/0.2.0/python-dev-aarch64-rpi3-linux-gnu.tar.xz" -O- | tar xJ -C toolchains
# Download and extract the Python binaries for AArch64 (~150 MiB)
url="https://github.com/tttapa/python-dev/releases/download/0.0.2"
wget "$url/python-dev-aarch64-rpi3-linux-gnu.tar.xz" -O- | tar xJ -C toolchains
```

### Inspect and customize the toolchain files and py-build-cmake configuration
Expand Down

0 comments on commit fdb4d06

Please sign in to comment.