Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Nov 2021 17:53:15 GMT
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: f3f7446a0053 - main - archivers/c-blosc2: fix build on powerpc64le
Message-ID:  <202111021753.1A2HrFj9011608@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f3f7446a00538cc58e3342c0def011efd48593d8

commit f3f7446a00538cc58e3342c0def011efd48593d8
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-11-02 17:51:24 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-11-02 17:51:24 +0000

    archivers/c-blosc2: fix build on powerpc64le
    
    In file included from /wrkdirs/usr/ports/archivers/c-blosc2/work/c-blosc2-2.0.4/plugins/codecs/ndlz/xxhash.h:2937:
    /usr/lib/clang/11.0.1/include/altivec.h:55:19: error: unknown type name 'vector'
    static __inline__ vector bool char __ATTRS_o_ai
---
 archivers/c-blosc2/files/patch-CMakeLists.txt               | 11 +++++++++++
 archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h | 10 ++++++++++
 2 files changed, 21 insertions(+)

diff --git a/archivers/c-blosc2/files/patch-CMakeLists.txt b/archivers/c-blosc2/files/patch-CMakeLists.txt
new file mode 100644
index 000000000000..7807ca6dfb7e
--- /dev/null
+++ b/archivers/c-blosc2/files/patch-CMakeLists.txt
@@ -0,0 +1,11 @@
+--- CMakeLists.txt.orig	2021-11-02 17:39:13 UTC
++++ CMakeLists.txt
+@@ -303,7 +303,7 @@ elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL armv7l OR
+         # Unrecognized compiler. Emit a warning message to let the user know hardware-acceleration won't be available.
+         message(WARNING "Unable to determine which ${CMAKE_SYSTEM_PROCESSOR} hardware features are supported by the C compiler (${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}).")
+     endif()
+-elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL ppc64le)
++elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "^(ppc64le|powerpc64le)")
+     if(CMAKE_C_COMPILER_ID STREQUAL GNU AND CMAKE_C_COMPILER_VERSION VERSION_GREATER 8)
+         set(COMPILER_SUPPORT_ALTIVEC TRUE)
+     else()
diff --git a/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h b/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h
new file mode 100644
index 000000000000..1e375ef9da1e
--- /dev/null
+++ b/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h
@@ -0,0 +1,10 @@
+--- plugins/codecs/ndlz/xxhash.h.orig	2021-10-02 12:17:56 UTC
++++ plugins/codecs/ndlz/xxhash.h
+@@ -2934,6 +2934,7 @@ enum XXH_VECTOR_TYPE /* fake enum */ {
+ #    if defined(__GNUC__) && !defined(__APPLE_ALTIVEC__)
+ #      define __APPLE_ALTIVEC__
+ #    endif
++#    define vector __vector
+ #    include <altivec.h>
+ #  endif
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111021753.1A2HrFj9011608>