dolphin-emu: use gcc12Stdenv on aarch64-linux

This commit is contained in:
Weijia Wang 2023-02-28 10:40:54 +02:00
parent b73601f559
commit 9fd1c27815

View File

@ -2300,7 +2300,7 @@ with pkgs;
stdenv =
if stdenv.isDarwin && stdenv.isAarch64 then llvmPackages_14.stdenv
# https://github.com/NixOS/nixpkgs/issues/201254
else if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU then gcc11Stdenv
else if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU then gcc12Stdenv
else stdenv;
};