git: a8aa3465d570 - main - net-p2p/monero-cli: fix build on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Jun 2024 05:19:01 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=a8aa3465d570fdf904e64e73b5d027b14074a36b commit a8aa3465d570fdf904e64e73b5d027b14074a36b Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2024-06-19 21:20:06 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2024-06-20 05:18:35 +0000 net-p2p/monero-cli: fix build on powerpc64le c++: error: unsupported option '-maes' for target 'powerpc64le-unknown-freebsd14.1' --- net-p2p/monero-cli/files/patch-CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/net-p2p/monero-cli/files/patch-CMakeLists.txt b/net-p2p/monero-cli/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..a082267a06e4 --- /dev/null +++ b/net-p2p/monero-cli/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2024-06-19 20:56:45 UTC ++++ CMakeLists.txt +@@ -303,7 +303,7 @@ endif() + set(ARCH "armv8-a") + endif() + +-if(ARCH_ID STREQUAL "ppc64le") ++if(ARCH_ID STREQUAL "powerpc64le" OR ARCH_ID STREQUAL "ppc64le") + set(PPC64LE 1) + set(PPC64 0) + set(PPC 0)