svn commit: r557411 - head/audio/webrtc-audio-processing

Jan Beich jbeich at FreeBSD.org
Thu Dec 10 04:35:51 UTC 2020


Author: jbeich
Date: Thu Dec 10 04:35:50 2020
New Revision: 557411
URL: https://svnweb.freebsd.org/changeset/ports/557411

Log:
  audio/webrtc-audio-processing: unbreak on armv6 after r557409
  
  In file included from webrtc/third_party/pffft/src/pffft.c:155:
  /usr/lib/clang/11.0.0/include/arm_neon.h:32:2: error: "NEON support not enabled"
   #error "NEON support not enabled"
    ^
  webrtc/third_party/pffft/src/pffft.c:156:9: error: unknown type name 'float32x4_t'
  typedef float32x4_t v4sf;
          ^

Modified:
  head/audio/webrtc-audio-processing/Makefile   (contents, props changed)

Modified: head/audio/webrtc-audio-processing/Makefile
==============================================================================
--- head/audio/webrtc-audio-processing/Makefile	Thu Dec 10 02:48:15 2020	(r557410)
+++ head/audio/webrtc-audio-processing/Makefile	Thu Dec 10 04:35:50 2020	(r557411)
@@ -18,6 +18,7 @@ LIB_DEPENDS=	libabsl_strings.so:devel/abseil
 
 USES=		compiler:c++14-lang localbase:ldflags meson
 USE_LDCONFIG=	yes
+CFLAGS_armv6=	-DPFFFT_SIMD_DISABLE # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/6
 CFLAGS_i386=	-msse # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/5
 
 post-patch:


More information about the svn-ports-all mailing list