From 813dd9111e38e35a316a01de2b529acdb550ca16 Mon Sep 17 00:00:00 2001 From: Fergus Dall Date: Fri, 20 Jan 2023 18:17:59 +1100 Subject: [PATCH] x11-libs/pixman: fix build with ARM64 + Clang Closes: https://bugs.gentoo.org/ Signed-off-by: Fergus Dall --- x11-libs/pixman/pixman-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/pixman/pixman-9999.ebuild b/x11-libs/pixman/pixman-9999.ebuild index 1cd3dd3a43a..13b0ffaef8f 100644 --- a/x11-libs/pixman/pixman-9999.ebuild +++ b/x11-libs/pixman/pixman-9999.ebuild @@ -34,7 +34,7 @@ pkg_setup() { } multilib_src_configure() { - if use arm && tc-is-clang ; then + if ( use arm || use arm64 ) && tc-is-clang ; then # See bug #768138 and https://gitlab.freedesktop.org/pixman/pixman/-/issues/46 append-cflags $(test-flags-CC -fno-integrated-as) fi -- 2.39.0.246.g2a6d74b583-goog