Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Dec 2020 21:01:06 +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: r558860 - head/devel/ispc
Message-ID:  <202012212101.0BLL16ww038142@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Dec 21 21:01:05 2020
New Revision: 558860
URL: https://svnweb.freebsd.org/changeset/ports/558860

Log:
  devel/ispc: Change to use llvm-devel because ISPC needs a bleeding edge LLVM revision

Modified:
  head/devel/ispc/Makefile

Modified: head/devel/ispc/Makefile
==============================================================================
--- head/devel/ispc/Makefile	Mon Dec 21 20:34:46 2020	(r558859)
+++ head/devel/ispc/Makefile	Mon Dec 21 21:01:05 2020	(r558860)
@@ -4,6 +4,7 @@
 PORTNAME=	ispc
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.15.0
+PORTREVISION=	1
 CATEGORIES=	devel
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -23,11 +24,11 @@ USES=		bison cmake compiler:c++14-lang python:build,te
 USE_GITHUB=	yes
 SHEBANG_FILES=	*.py
 
-LLVM_VERSION=	10 # Release notes https://github.com/ispc/ispc/blob/master/docs/ReleaseNotes.txt list compatible LLVM versions, but they assume that extra patches are applied to LLVM
+LLVM_VERSION=	-devel # Release notes https://github.com/ispc/ispc/blob/master/docs/ReleaseNotes.txt list compatible LLVM versions, but they assume that extra patches are applied to LLVM
 		# LLVM build script: https://github.com/ispc/ispc/blob/master/scripts/build.sh
 
 CONFIGURE_ENV=	PATH=${LOCALBASE}/llvm${LLVM_VERSION}/bin:${PATH}
-CMAKE_OFF=	ISPC_INCLUDE_EXAMPLES
+CMAKE_OFF=	ISPC_NO_DUMPS ISPC_INCLUDE_EXAMPLES
 
 BINARY_ALIAS=	flex=${LOCALBASE}/bin/flex python=${PYTHON_CMD} m4=${LOCALBASE}/bin/gm4
 
@@ -37,7 +38,7 @@ PLIST_FILES=	bin/ispc \
 do-test: # some tests fail: https://github.com/ispc/ispc/issues/1868
 	@cd ${WRKSRC} && ISPC_HOME=${BUILD_WRKSRC}/bin ./run_tests.py
 
-test-check-all:
+test-check-all: # the upstream claims that some of these checks are broken without using their patched llvm version, hence using llvm-devel
 	@cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check-all
 
 run-examples: build



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