mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
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:
parent
bcd5388d39
commit
e480154f61
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user