From 3ec947088bd0f1e1ee80c8ac77421c4dbee2ced4 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Mon, 2 Dec 2019 18:00:07 +0000 Subject: [PATCH] math/sleef: fix build on powerpc64 elfv2 clang doesn't find vec_nand: In file included from /wrkdirs/usr/ports/math/sleef/work/sleef-3.4.0/src/libm/sleefsimdsp.c:145: /wrkdirs/usr/ports/math/sleef/work/sleef-3.4.0/src/arch/helperpower_128.h:266:54: warning: implicit declaration of function 'vec_nand' is invalid in C99 [-Wimplicit-function-declaration] static INLINE vopmask vnot_vo_vo(vopmask o) { return vec_nand(o, o); } ^ /wrkdirs/usr/ports/math/sleef/work/sleef-3.4.0/src/arch/helperpower_128.h:266:54: error: returning 'int' from a function with incompatible result type 'vopmask' (vector of 4 'unsigned int' values) static INLINE vopmask vnot_vo_vo(vopmask o) { return vec_nand(o, o); } ^~~~~~~~~~~~~~ -mpower8-vector is needed because vec_nand is behind #ifdef __POWER8_VECTOR__ in clang's altivec.h. PR: 242143 Approved by: linimon (mentor), jmd (maintainer) --- math/sleef/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/math/sleef/Makefile b/math/sleef/Makefile index 62527329b5b6..ed6201fd76bb 100644 --- a/math/sleef/Makefile +++ b/math/sleef/Makefile @@ -18,6 +18,8 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= shibatch +CFLAGS_powerpc64= -mpower8-vector + .include .if ${ARCH} == powerpc64