qemu: disable debug info on aarch64-linux

This is basically a partial revert of a0262a0802.
main
Vladimír Čunát 2 years ago
parent 8de62ec192
commit c3131d5c32
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 3
      pkgs/applications/virtualization/qemu/default.nix

@ -84,7 +84,8 @@ stdenv.mkDerivation rec {
dontUseMesonConfigure = true; # meson's configurePhase isn't compatible with qemu build
outputs = [ "out" "ga" ];
separateDebugInfo = true;
# On aarch64-linux we would shoot over the Hydra's 2G output limit.
separateDebugInfo = !(stdenv.isAarch64 && stdenv.isLinux);
patches = [
./fix-qemu-ga.patch

Loading…
Cancel
Save