yet-another-bench-script/bin
2022-11-23 00:47:58 -05:00
..
fio update binaries - fio v3.33; iperf3 v3.12 2022-11-23 00:47:58 -05:00
iperf update binaries - fio v3.33; iperf3 v3.12 2022-11-23 00:47:58 -05:00
compile-arm.sh update binaries - fio v3.33; iperf3 v3.12 2022-11-23 00:47:58 -05:00
compile.sh update binaries - fio v3.33; iperf3 v3.12 2022-11-23 00:47:58 -05:00
example.json change json schema and add additional json flags 2022-08-17 00:24:54 -04:00
README.md update binaries - fio v3.33; iperf3 v3.12 2022-11-23 00:47:58 -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
fio_x64 3.33 23-NOV-2022 x86_64 64-bit
fio_x86 3.30* 19-AUG-2022 x86 32-bit
fio_aarch64 3.33 23-NOV-2022 ARM 64-bit
fio_arm 3.30* 19-AUG-2022 ARM 32-bit
iperf_x64 3.12 23-NOV-2022 x86_64 64-bit
iperf_x86 3.12 23-NOV-2022 x86 32-bit
iperf_aarch64 3.12 23-NOV-2022 ARM 64-bit
iperf_arm 3.12 23-NOV-2022 ARM 32-bit

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

* fio v3.31+ is failing to build in a 32-bit environment

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

Compiling 32-bit binaries:

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

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

ARM Compile Notes

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

Compiling 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/compile-arm.sh

Compiling 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/compile-arm.sh

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