1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00

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
This commit is contained in:
Piotr Kubaj 2021-11-02 17:51:24 +00:00
parent e7118c767e
commit f3f7446a00
2 changed files with 21 additions and 0 deletions

View File

@ -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()

View File

@ -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