3
0
Fork 0
forked from mirrors/nixpkgs

qemu: disable debug info on aarch64-linux

This is basically a partial revert of a0262a0802.
This commit is contained in:
Vladimír Čunát 2021-12-26 12:45:05 +01:00
parent 8de62ec192
commit c3131d5c32
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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