From b1424181f020255e93dc28aa7f1e7afe7630cec0 Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Mon, 20 May 2024 22:40:13 +0200 Subject: [PATCH] Upgrade toolchains, python-dev --- docs/Cross-compilation.md | 4 ++-- scripts/download-cross-toolchains-linux.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Cross-compilation.md b/docs/Cross-compilation.md index 9205e85..5e91a99 100644 --- a/docs/Cross-compilation.md +++ b/docs/Cross-compilation.md @@ -121,7 +121,7 @@ You can find ready-to-use toolchains with good compatibility at https://github.c # Create a directory to save the cross-compilation toolchains into mkdir -p toolchains # Download and extract the toolchain for AArch64 (~120 MiB) -url="https://github.com/tttapa/toolchains/releases/download/0.1.0" +url="https://github.com/tttapa/toolchains/releases/download/0.1.1" wget "$url/x-tools-aarch64-rpi3-linux-gnu-gcc14.tar.xz" -O- | tar xJ -C toolchains # Verify that the toolchain works ./toolchains/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-gcc --version @@ -138,7 +138,7 @@ You can download these from https://github.com/tttapa/python-dev. # 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 (~150 MiB) -url="https://github.com/tttapa/python-dev/releases/download/0.0.2" +url="https://github.com/tttapa/python-dev/releases/download/0.0.3" wget "$url/python-dev-aarch64-rpi3-linux-gnu.tar.xz" -O- | tar xJ -C toolchains ``` diff --git a/scripts/download-cross-toolchains-linux.sh b/scripts/download-cross-toolchains-linux.sh index 248aacc..27a99ad 100755 --- a/scripts/download-cross-toolchains-linux.sh +++ b/scripts/download-cross-toolchains-linux.sh @@ -9,8 +9,8 @@ cd "$( dirname "${BASH_SOURCE[0]}" )"/.. triples=(x86_64-bionic-linux-gnu armv6-rpi-linux-gnueabihf armv7-neon-linux-gnueabihf aarch64-rpi3-linux-gnu) gcc_version="14" -toolchain_version="0.1.0" -python_dev_version="0.0.2" +toolchain_version="0.1.1" +python_dev_version="0.0.3" toolchain_folder="$PWD/toolchains" set -ex