Revert "libaom,libvmaf: pin to GCC 13 on aarch64"

This reverts commit adb8dffe97.

The default GCC has been reverted to 13.  We won't be upgrading to 14
until after the next minor release comes out, which will include the
fix for the issue being worked around here.
This commit is contained in:
Alyssa Ross 2024-09-24 18:05:12 +02:00
parent bcd5388d39
commit e480154f61
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -20752,10 +20752,7 @@ with pkgs;
libantlr3c = callPackage ../development/libraries/libantlr3c { };
libaom = callPackage ../development/libraries/libaom {
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116737
stdenv = if stdenv.hostPlatform.isAarch64 && stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "14" then gcc13Stdenv else stdenv;
};
libaom = callPackage ../development/libraries/libaom { };
libappindicator-gtk2 = libappindicator.override { gtkVersion = "2"; };
libappindicator-gtk3 = libappindicator.override { gtkVersion = "3"; };
@ -21948,10 +21945,7 @@ with pkgs;
libvisual = callPackage ../development/libraries/libvisual { };
libvmaf = callPackage ../development/libraries/libvmaf {
# See libaom
stdenv = if stdenv.hostPlatform.isAarch64 && stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "14" then gcc13Stdenv else stdenv;
};
libvmaf = callPackage ../development/libraries/libvmaf { };
libvncserver = callPackage ../development/libraries/libvncserver {
inherit (darwin.apple_sdk.frameworks) Carbon;