1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

biology/bifrost: Portability fixes

Tag as only for 64-bit platforms
Fix build on aarch64 (patch out -march=native)

Reported by:    pkg-fallout
This commit is contained in:
Jason W. Bacon 2023-07-16 08:40:30 -05:00
parent 63e5ba4396
commit 7d4be2d6fd
2 changed files with 14 additions and 0 deletions

View File

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

View File

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