Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 03 Aug 2026 15:21:41 +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: 6dfb907ddd23 - main - devel/xsimd: fix powerpc64le runtime
Message-ID:  <6a70b205.3a2d9.73a07216@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=6dfb907ddd236b03111af28ab68a04ab7b4f2aa0

commit 6dfb907ddd236b03111af28ab68a04ab7b4f2aa0
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2026-08-02 06:35:35 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2026-08-03 15:21:14 +0000

    devel/xsimd: fix powerpc64le runtime
    
    vector variables with long type are deprecated,
    switch to long long as upstream did.
---
 devel/xsimd/Makefile                                     |  1 +
 .../patch-include_xsimd_types_xsimd__vsx__register.hpp   | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/devel/xsimd/Makefile b/devel/xsimd/Makefile
index dd8a2139c116..46f6c26f9a62 100644
--- a/devel/xsimd/Makefile
+++ b/devel/xsimd/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	xsimd
 DISTVERSION=	14.0.0
+PORTREVISION=	1
 CATEGORIES=	devel
 
 MAINTAINER=	yuri@FreeBSD.org
diff --git a/devel/xsimd/files/patch-include_xsimd_types_xsimd__vsx__register.hpp b/devel/xsimd/files/patch-include_xsimd_types_xsimd__vsx__register.hpp
new file mode 100644
index 000000000000..e12a160ddc08
--- /dev/null
+++ b/devel/xsimd/files/patch-include_xsimd_types_xsimd__vsx__register.hpp
@@ -0,0 +1,16 @@
+--- include/xsimd/types/xsimd_vsx_register.hpp.orig	2026-08-01 20:31:20 UTC
++++ include/xsimd/types/xsimd_vsx_register.hpp
+@@ -64,10 +64,10 @@ namespace xsimd
+         XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(short, short);
+         XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(unsigned int, int);
+         XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(int, int);
+-        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(unsigned long, long);
+-        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(long, long);
++        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(unsigned long, long long);
++        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(long, long long);
+         XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(float, int);
+-        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(double, long);
++        XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER(double, long long);
+ 
+ #undef XSIMD_DECLARE_SIMD_BOOL_VSX_REGISTER
+     }


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a70b205.3a2d9.73a07216>