3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/bandwidth/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, nasm }:
2015-04-23 22:45:34 +01:00
let
inherit (stdenv.hostPlatform.parsed.cpu) bits;
arch = "bandwidth${toString bits}";
2015-04-23 22:45:34 +01:00
in
stdenv.mkDerivation rec {
pname = "bandwidth";
2021-10-18 10:00:05 +01:00
version = "1.10.4";
2015-04-23 22:45:34 +01:00
src = fetchurl {
url = "https://zsmith.co/archives/${pname}-${version}.tar.gz";
2021-10-18 10:00:05 +01:00
sha256 = "sha256-e/eP2rA7ElFrh2Z4qTzRGR/cxY1UI6s+LQ9Og1x46/I=";
2015-04-23 22:45:34 +01:00
};
postPatch = ''
sed -i 's,ar ,$(AR) ,g' OOC/Makefile
# Remove unnecessary -m32 for 32-bit targets
sed -i 's,-m32,,g' OOC/Makefile
# Fix wrong comment character
sed -i 's,# 32,; 32,g' routines-x86-32bit.asm
# Fix missing symbol exports for macOS clang
echo global _VectorToVector128 >> routines-x86-64bit.asm
echo global _VectorToVector256 >> routines-x86-64bit.asm
'';
nativeBuildInputs = [ nasm ];
2015-04-23 22:45:34 +01:00
buildFlags = [
"AR=${stdenv.cc.targetPrefix}ar"
"CC=${stdenv.cc.targetPrefix}cc"
"ARM_AS=${stdenv.cc.targetPrefix}as"
"ARM_CC=$(CC)"
"UNAMEPROC=${stdenv.hostPlatform.parsed.cpu.name}"
"UNAMEMACHINE=${stdenv.hostPlatform.parsed.cpu.name}"
arch
];
2015-04-23 22:45:34 +01:00
installPhase = ''
mkdir -p $out/bin
cp ${arch} $out/bin/bandwidth
2015-04-23 22:45:34 +01:00
'';
meta = with lib; {
homepage = "https://zsmith.co/bandwidth.html";
2016-04-02 01:16:31 +01:00
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
license = licenses.gpl2Plus;
platforms = platforms.x86 ++ platforms.arm ++ platforms.aarch64;
maintainers = with maintainers; [ r-burns ];
2015-04-23 22:45:34 +01:00
};
}