README.md

April 20, 2025 ยท View on GitHub

YABS Pre-Compiled Binaries

This directory contains all of the binaries required to run the benchmarking tests. Naturally, there is a security risk to your machine and its contents by running this script since, after all, this is just a script on the internet. You'll simply have to have confidence that I don't have malicious intent and am semi-competent at writing a bash script. The script is made public so you can look at the code yourself. The binaries were compiled using a Holy Build Box compilation environment in order to ensure the most portability. The compiled binary version numbers and compilations steps are noted below. Please open an issue if the compiled version is out of date and lacking any security-related and/or performance updates.

Binaries

Binary NameVersionCompile DateArchitectureOSSHA-256 Hash
(VirusTotal Scan)
fio_x643.3920-APR-2025x86_6464-bitb511bda
fio_x863.3920-APR-2025i68632-bit42e2e0b
fio_aarch643.3920-APR-2025ARM (aarch64)64-bite2942a2
fio_arm3.3920-APR-2025ARM32-bit3a96b1c
iperf3_x643.1814-DEC-2024x86_6464-bitef787ab
iperf3_x863.1814-DEC-2024i68632-bit655eb51
iperf3_aarch643.1814-DEC-2024ARM (aarch64)64-bit92e5821
iperf3_arm3.15*20-OCT-2023ARM32-bit310e80f

Note: ARM compatibility is considered experimental. Static binaries for 32-bit and ARM-based machines are cross-compiled within a Holy Build Box container using the musl toolchain.

Compile Notes

Pre-reqs:

Compiling 64-bit binaries:

docker run -t -i --rm -v `pwd`:/io phusion/holy-build-box-64:latest bash /io/compile.sh

64-bit binaries will be placed in the current directory.

Cross-compiling Notes

Compilation of ARM-compatible binaries requires additional environment variables to identify the proper musl toolchain and architecture to target for cross-compilation.

Compiling 32-bit binaries:

docker run -t -i --rm -v `pwd`:/io --env ARCH=x86 --env CROSS=i686-linux-musl --env HOST=i686-linux-musl phusion/holy-build-box-64:latest bash /io/cross-compile.sh

Compiling ARM 64-bit binaries:

docker run -t -i --rm -v `pwd`:/io --env ARCH=aarch64 --env CROSS=aarch64-linux-musl --env HOST=aarch64-linux-gnu phusion/holy-build-box-64:latest bash /io/cross-compile.sh

Compiling ARM 32-bit binaries*:

docker run -t -i --rm -v `pwd`:/io --env ARCH=arm --env CROSS=arm-linux-musleabihf --env HOST=arm-linux-gnueabihf phusion/holy-build-box-64:latest bash /io/cross-compile.sh

64-bit (aarch64) and 32-bit (x86, arm) binaries will be placed in the current directory.

* ARM 32-bit: Last sucessful compiliation of ARM 32-bit binary for iperf3 is v3.15. All later versions fail to compile.