Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jan 2021 13:16:16 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r563073 - head/science/cgribex/files
Message-ID:  <202101271316.10RDGGQ7085098@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Jan 27 13:16:16 2021
New Revision: 563073
URL: https://svnweb.freebsd.org/changeset/ports/563073

Log:
  science/cgribex: fix build on powerpc64le, powerpc64 with CPUTYPE=power6 and newer with Clang
  
  Clang doesn't have __fsel function.
  Taken from https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/config/rs6000/ppu_intrinsics.h;h=e17faae05932e33c22697a3178b26314b88c9a31;hb=HEAD#l530

Added:
  head/science/cgribex/files/
  head/science/cgribex/files/patch-src_minmax__val.c   (contents, props changed)

Added: head/science/cgribex/files/patch-src_minmax__val.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/cgribex/files/patch-src_minmax__val.c	Wed Jan 27 13:16:16 2021	(r563073)
@@ -0,0 +1,22 @@
+--- src/minmax_val.c.orig	2021-01-26 13:07:53 UTC
++++ src/minmax_val.c
+@@ -292,6 +291,19 @@ void sse2_minmax_val_double(const double *restrict buf
+ #endif // SIMD
+ 
+ #if defined(_ARCH_PWR6)
++
++#ifndef __fsel
++static __inline__ double __fsel(double x, double y, double z)
++  __attribute__((always_inline));
++static __inline__ double
++__fsel(double x, double y, double z)
++{
++  double r;
++  __asm__("fsel %0,%1,%2,%3" : "=d"(r) : "d"(x),"d"(y),"d"(z));
++  return r;
++}
++#endif
++
+ static
+ void pwr6_minmax_val_double_unrolled6(const double *restrict data, size_t datasize, double *fmin, double *fmax)
+ {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101271316.10RDGGQ7085098>