Update dep listing

This commit is contained in:
Tony Garnock-Jones 2024-03-01 17:24:14 +01:00
parent a3c3700b26
commit 0971e14c8c
1 changed files with 12 additions and 11 deletions

View File

@ -66,33 +66,34 @@ Here's a small shell snippet to quickly check for the dependencies you will need
rustc +nightly --version rustc +nightly --version
cross +nightly --version cross +nightly --version
docker --version docker --version
python --version python3 --version
git --version git --version
ssh -V ssh -V 2>&1
rsync --version | head -1 rsync --version | head -1
make --version | head -1 make --version | head -1
cc --version | head -1 cc --version | head -1
preserves-tool --version preserves-tool --version
qemu-system-aarch64 --version | head -1 qemu-system-aarch64 --version | head -1
ls -la /proc/sys/fs/binfmt_misc/qemu-aarch64 ls -la /proc/sys/fs/binfmt_misc/qemu-aarch64 2>&1
) 2>/dev/null ) 2>/dev/null
``` ```
On my machine, it outputs: On my machine, it outputs:
``` ```
rustc 1.73.0-nightly (6ef7d16be 2023-08-19) rustc 1.78.0-nightly (878c8a2a6 2024-02-29)
cross 0.2.5 cross 0.2.5
cargo 1.73.0-nightly (80eca0e58 2023-08-19) cargo 1.78.0-nightly (8964c8ccf 2024-02-27)
Docker version 20.10.25+dfsg1, build b82b9f3 Docker version 20.10.25+dfsg1, build b82b9f3
Python 3.11.4 Python 3.11.8
git version 2.40.1 git version 2.43.0
OpenSSH_9.6p1 Debian-4, OpenSSL 3.1.5 30 Jan 2024
rsync version 3.2.7 protocol version 31 rsync version 3.2.7 protocol version 31
GNU Make 4.3 GNU Make 4.3
cc (Debian 13.2.0-2) 13.2.0 cc (Debian 13.2.0-13) 13.2.0
preserves-tools 3.0.2 preserves-tool 4.994.0
QEMU emulator version 8.0.4 (Debian 1:8.0.4+dfsg-1) QEMU emulator version 8.2.1 (Debian 1:8.2.1+ds-2)
-rw-r--r-- 1 root root 0 Aug 19 12:47 /proc/sys/fs/binfmt_misc/qemu-aarch64 -rw-r--r-- 1 root root 0 Mar 1 15:37 /proc/sys/fs/binfmt_misc/qemu-aarch64
``` ```
## Get the code ## Get the code