2022-10-30 15:09:59 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch
|
|
|
|
, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-08-21 13:32:41 +00:00
|
|
|
version = "5.6.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "rr";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "rr";
|
|
|
|
rev = version;
|
2022-08-21 13:32:41 +00:00
|
|
|
sha256 = "H39HPkAQGubXVQV3jCpH4Pz+7Q9n03PrS70utk7Tt2k=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-flexible-array-member.patch";
|
|
|
|
url = "https://github.com/rr-debugger/rr/commit/2979c60ef8bbf7c940afd90172ddc5d8863f766e.diff";
|
|
|
|
sha256 = "cmdCJetQr3ELPOyWl37h1fGfG/xvaiJpywxIAnqb5YY=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
|
|
|
|
sed '7i#include <math.h>' -i src/Scheduler.cc
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
# With LTO enabled, linking fails with the following message:
|
|
|
|
#
|
|
|
|
# src/AddressSpace.cc:1666: undefined reference to `rr_syscall_addr'
|
|
|
|
# ld.bfd: bin/rr: hidden symbol `rr_syscall_addr' isn't defined
|
|
|
|
# ld.bfd: final link failed: bad value
|
|
|
|
# collect2: error: ld returned 1 exit status
|
|
|
|
#
|
|
|
|
# See also https://github.com/NixOS/nixpkgs/pull/110846
|
|
|
|
preConfigure = ''substituteInPlace CMakeLists.txt --replace "-flto" ""'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config which ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
2021-01-15 22:18:51 +00:00
|
|
|
libpfm zlib python3Packages.python python3Packages.pexpect procps gdb capnproto
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ gdb ]; # needs GDB to replay programs at runtime
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_C_FLAGS_RELEASE:STRING="
|
|
|
|
"-DCMAKE_CXX_FLAGS_RELEASE:STRING="
|
|
|
|
"-Ddisable32bit=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
# we turn on additional warnings due to hardening
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
|
|
|
# FIXME
|
|
|
|
#doCheck = true;
|
|
|
|
|
|
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://rr-project.org/";
|
|
|
|
description = "Records nondeterministic executions and debugs them deterministically";
|
|
|
|
longDescription = ''
|
|
|
|
rr aspires to be your primary debugging tool, replacing -- well,
|
|
|
|
enhancing -- gdb. You record a failure once, then debug the
|
|
|
|
recording, deterministically, as many times as you want. Every
|
|
|
|
time the same execution is replayed.
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
license = with lib.licenses; [ mit bsd2 ];
|
|
|
|
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
|
2022-09-30 11:47:45 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|