git: c38248ba1429 - main - devel/dill: fix build on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Apr 2024 21:21:49 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=c38248ba1429b9dc6cc882ecabde0e805f2b1d6e commit c38248ba1429b9dc6cc882ecabde0e805f2b1d6e Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2024-04-20 20:34:43 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2024-04-24 21:21:17 +0000 devel/dill: fix build on powerpc64le --- devel/dill/files/patch-CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/devel/dill/files/patch-CMakeLists.txt b/devel/dill/files/patch-CMakeLists.txt index 6c83373016f4..86ab3a392630 100644 --- a/devel/dill/files/patch-CMakeLists.txt +++ b/devel/dill/files/patch-CMakeLists.txt @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2024-04-04 17:50:01 UTC +--- CMakeLists.txt.orig 2024-04-04 16:29:33 UTC +++ CMakeLists.txt @@ -102,7 +102,7 @@ unset(NATIVE_ARCH) check_type_size("long" SIZEOF_LONG) @@ -9,3 +9,12 @@ if(CMAKE_SIZEOF_VOID_P EQUAL 8) set(NATIVE_ARCH x86_64) set(HOST_X86_64 1) +@@ -139,7 +139,7 @@ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") + set(NATIVE_ARCH arm8) + set(HOST_ARM8 1) + set(ARCH_FILE arm8) +-elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le") ++elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le|powerpc64le") + set(NATIVE_ARCH ppc64le) + set(HOST_PPC64LE 1) + set(ARCH_FILE ppc64le)