Skip to content

Commit

Permalink
Merge #152218: qemu: disable debug info on aarch64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Dec 26, 2021
2 parents fcb1254 + c3131d5 commit ac169ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/applications/virtualization/qemu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac169ec

Please sign in to comment.