From 7d4be2d6fd1e3db4109d266d25a4411fedc05235 Mon Sep 17 00:00:00 2001 From: "Jason W. Bacon" Date: Sun, 16 Jul 2023 08:40:30 -0500 Subject: [PATCH] biology/bifrost: Portability fixes Tag as only for 64-bit platforms Fix build on aarch64 (patch out -march=native) Reported by: pkg-fallout --- biology/bifrost/Makefile | 3 +++ biology/bifrost/files/patch-CMakeLists.txt | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 biology/bifrost/files/patch-CMakeLists.txt diff --git a/biology/bifrost/Makefile b/biology/bifrost/Makefile index 1ca58622a09a1..d5afacfb41810 100644 --- a/biology/bifrost/Makefile +++ b/biology/bifrost/Makefile @@ -10,6 +10,9 @@ WWW= https://github.com/pmelsted/bifrost LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +# Requires a 64-bit processor +ONLY_FOR_ARCHS= aarch64 amd64 powerpc64 powerpc64le riscv64 + USES= cmake USE_GITHUB= yes diff --git a/biology/bifrost/files/patch-CMakeLists.txt b/biology/bifrost/files/patch-CMakeLists.txt new file mode 100644 index 0000000000000..1cf55ff9575fa --- /dev/null +++ b/biology/bifrost/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2023-07-16 13:25:06 UTC ++++ CMakeLists.txt +@@ -20,8 +20,6 @@ if(COMPILATION_ARCH MATCHES "OFF") + message("Disabling native architecture compilation (including AVX2)") + else(COMPILATION_ARCH MATCHES "OFF") + message("Compilation architecture: ${COMPILATION_ARCH}") +- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=${COMPILATION_ARCH}") +- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=${COMPILATION_ARCH}") + endif(COMPILATION_ARCH MATCHES "OFF") + + if(ENABLE_AVX2 MATCHES "OFF")