rr: Build with gcc9

To work around linking errors with gcc10

    src/AddressSpace.cc:1632: undefined reference to `rr_syscall_addr'

Fixes #110756
This commit is contained in:
Ivan Jager 2021-01-26 06:06:46 -06:00
parent 891f607d53
commit b60b4023d7

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto }:
{ lib, gcc9Stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto }:
stdenv.mkDerivation rec {
gcc9Stdenv.mkDerivation rec {
version = "5.4.0";
pname = "rr";