From 8989a6b0f750931641e7fb0f0bc47cc7af1d3a4a Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 20 Feb 2018 13:33:56 -0600 Subject: [PATCH] strace: disable mpers (multiple personality) support on aarch64 to fix 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.] --- pkgs/development/tools/misc/strace/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index 6c19c51c8c8..e5f298a1cab 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -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";