Merge #152218: qemu: disable debug info on aarch64-linux

This commit is contained in:
Vladimír Čunát 2021-12-26 18:43:05 +01:00
commit ac169ec637
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