1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00

biology/hhsuite: fix build on armv7

PR:		266736
This commit is contained in:
Robert Clausecker 2022-10-01 08:06:43 -07:00 committed by Yuri Victorovich
parent 7545575ac1
commit 75d8147165
2 changed files with 11 additions and 2 deletions

View File

@ -11,8 +11,6 @@ WWW= https://github.com/soedinglab/hh-suite
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_armv7= compilation fails: no member named 'neon_f64' in 'simde__m128d_private', see https://github.com/soedinglab/hh-suite/issues/322
LIB_DEPENDS= libmpi.so:net/openmpi
USES= compiler:c++11-lang cmake perl5 python shebangfix

View File

@ -0,0 +1,11 @@
--- lib/simde/simde/x86/sse2.h.orig 2022-10-01 09:24:35 UTC
+++ lib/simde/simde/x86/sse2.h
@@ -6591,7 +6591,7 @@ simde_x_mm_negate_pd(simde__m128d a) {
#if defined(SIMDE_POWER_ALTIVEC_P9_NATIVE)
r_.altivec_f64 = vec_neg(a_.altivec_f64);
- #elif defined(SIMDE_ARM_NEON_A32V7_NATIVE)
+ #elif defined(SIMDE_ARM_NEON_A64V8_NATIVE)
r_.neon_f64 = vnegq_f64(a_.neon_f64);
#elif defined(SIMDE_WASM_SIMD128d_NATIVE)
r_.wasm_v128d = wasm_f64x2_neg(a_.wasm_v128d);