Date: Tue, 18 Nov 2025 21:08:15 +0000 From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: fbd745f71124 - main - graphics/libskiasharp: fix build on powerpc64le Message-ID: <691ce03f.3435f.2816fafd@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=fbd745f7112469dfd6f8fab95e73a8c2bc5d418d commit fbd745f7112469dfd6f8fab95e73a8c2bc5d418d Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2025-11-18 18:01:00 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2025-11-18 21:08:07 +0000 graphics/libskiasharp: fix build on powerpc64le ../src/opts/SkRasterPipeline_opts.h:3304:1: error: 'musttail' attribute for this call is impossible because indirect calls can not be tail called on PPC --- graphics/libskiasharp/files/patch-src_core_SkRasterPipeline.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/graphics/libskiasharp/files/patch-src_core_SkRasterPipeline.h b/graphics/libskiasharp/files/patch-src_core_SkRasterPipeline.h new file mode 100644 index 000000000000..e7b489010508 --- /dev/null +++ b/graphics/libskiasharp/files/patch-src_core_SkRasterPipeline.h @@ -0,0 +1,11 @@ +--- src/core/SkRasterPipeline.h.orig 2025-11-18 06:35:10 UTC ++++ src/core/SkRasterPipeline.h +@@ -24,7 +24,7 @@ struct skcms_TransferFunction; + struct SkImageInfo; + struct skcms_TransferFunction; + +-#if __has_cpp_attribute(clang::musttail) && !defined(__EMSCRIPTEN__) && !defined(SK_CPU_ARM32) ++#if __has_cpp_attribute(clang::musttail) && !defined(__EMSCRIPTEN__) && !defined(SK_CPU_ARM32) && !defined(__powerpc__) + #define SK_HAS_MUSTTAIL 1 + #else + #define SK_HAS_MUSTTAIL 0home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?691ce03f.3435f.2816fafd>
