Skip to content

Commit

Permalink
strace: disable mpers (multiple personality) support on aarch64 to fix
Browse files Browse the repository at this point in the history
https://hydra.nixos.org/build/69542376

[dezgeg: changed to --enable-mpers=check instead of --enable-mpers=no,
which makes it probe at build-time whether a certain personality is
supported and enable it only if the probe succeeded, instead of
unconditionally disabling it. Should be more future-proof.]
  • Loading branch information
dtzWill authored and dezgeg committed Feb 21, 2018
1 parent a65221e commit 8989a6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/tools/misc/strace/default.nix
Expand Up @@ -13,6 +13,8 @@ stdenv.mkDerivation rec {

buildInputs = [ libunwind ]; # support -k

configureFlags = stdenv.lib.optional stdenv.hostPlatform.isAarch64 "--enable-mpers=check";

meta = with stdenv.lib; {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
Expand Down

0 comments on commit 8989a6b

Please sign in to comment.