Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e61999b3f24d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4bd7e2503446
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 26, 2021

  1. rr: Build with gcc9

    To work around linking errors with gcc10
    
        src/AddressSpace.cc:1632: undefined reference to `rr_syscall_addr'
    
    Fixes #110756
    aij committed Jan 26, 2021
    Copy the full SHA
    b60b402 View commit details
  2. Merge pull request #110846 from aij/rr-gcc9

    rr: Build with gcc9
    Ma27 authored Jan 26, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4bd7e25 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/analysis/rr/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/analysis/rr/default.nix
Original file line number Diff line number Diff line change
@@ -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";