Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jun 2018 22:30:08 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472827 - head/audio/caps-lv2
Message-ID:  <201806192230.w5JMU8hP067001@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Jun 19 22:30:07 2018
New Revision: 472827
URL: https://svnweb.freebsd.org/changeset/ports/472827

Log:
  audio/caps-lv2: Switch to clang-5 to avoid the regression in clang-6.
  
  Remove BROKEN statements which have this regression as a reason.
  
  Reported by:	fallout

Modified:
  head/audio/caps-lv2/Makefile

Modified: head/audio/caps-lv2/Makefile
==============================================================================
--- head/audio/caps-lv2/Makefile	Tue Jun 19 21:48:16 2018	(r472826)
+++ head/audio/caps-lv2/Makefile	Tue Jun 19 22:30:07 2018	(r472827)
@@ -3,6 +3,7 @@
 
 PORTNAME=	caps-lv2
 PORTVERSION=	g20170626
+PORTREVISION=	1
 CATEGORIES=	audio
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -11,8 +12,6 @@ COMMENT=	LV2 version of the C* Audio Plugin Suite
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_armv6=		fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map
-BROKEN_armv7=		fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map
 BROKEN_powerpc64=	fails to build: cc1plus: unrecognized command line option -std=c++11
 
 BUILD_DEPENDS=	lv2>0:audio/lv2
@@ -21,6 +20,13 @@ USES=		gmake localbase
 USE_GITHUB=	yes
 GH_ACCOUNT=	moddevices
 GH_TAGNAME=	072e2fe
+
+# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36916
+LLVM_VER=	50
+BUILD_DEPENDS+=	clang${LLVM_VER}:devel/llvm${LLVM_VER}
+CPP=		clang-cpp${LLVM_VER}
+CC=		clang${LLVM_VER}
+CXX=		clang++${LLVM_VER}
 
 post-patch:
 	@${REINPLACE_CMD} -e "s|__APPLE__|__FreeBSD__|" \



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