yet-another-bench-script/bin
2023-11-08 19:50:36 -05:00
..
fio Update binaries (fio v3.36; iperf v3.15) 2023-10-20 10:53:42 -04:00
iperf Update binaries (fio v3.36; iperf v3.15) 2023-10-20 10:53:42 -04:00
compile.sh Update binaries (fio v3.36; iperf v3.15) 2023-10-20 10:53:42 -04:00
cross-compile.sh Update binaries (fio v3.36; iperf v3.15) 2023-10-20 10:53:42 -04:00
example.json update json output; geekbench v6.0.2; update readme 2023-04-23 14:23:19 -04:00
README.md Add SHA256 sums and links to VirusTotal scans for all binaries 2023-11-08 19:50:36 -05:00

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 Name Version Compile Date Architecture OS SHA-256 Hash
(VirusTotal Scan)
fio_x64 3.36 20-OCT-2023 x86_64 64-bit 5d345d0
fio_x86 3.36 20-OCT-2023 i686 32-bit 82aa945
fio_aarch64 3.36 20-OCT-2023 ARM (aarch64) 64-bit 52d02cb
fio_arm 3.36 20-OCT-2023 ARM 32-bit b84c3de
iperf_x64 3.15 20-OCT-2023 x86_64 64-bit d713ce4
iperf_x86 3.15 20-OCT-2023 i686 32-bit dd3d22b
iperf_aarch64 3.15 20-OCT-2023 ARM (aarch64) 64-bit d223f5f
iperf_arm 3.15 20-OCT-2023 ARM 32-bit 310e80f

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.