Merge pull request #218684 from wegank/orc-gcc12

orc: fix build with gcc12 on aarch64-linux
This commit is contained in:
Weijia Wang 2023-02-28 00:37:35 +02:00 committed by GitHub
commit 647a7f0eea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,8 @@ in stdenv.mkDerivation rec {
++ optionals buildDevDoc [ gtk-doc file docbook_xsl ]
;
doCheck = true;
# https://gitlab.freedesktop.org/gstreamer/orc/-/issues/41
doCheck = !(stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12");
passthru.tests = {
inherit (gst_all_1) gst-plugins-good gst-plugins-bad gst-plugins-ugly;