forked from mirrors/nixpkgs
qemu: disable debug info on aarch64-linux
This is basically a partial revert of a0262a0802
.
This commit is contained in:
parent
8de62ec192
commit
c3131d5c32
|
@ -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…
Reference in a new issue